/* ==============================================
   KL QUARTZ — Modern Landing Page
   Color Palette (preserved):
     Primary:   #414393  (deep indigo)
     Dark:      #1C2079  (navy)
     Green CTA: #1CAF13
     Red:       #EF1638
     Gold:      #FFD500
     Gray Text: #77788D
     Light BG:  #F4F5F9
   ============================================== */

/* ── RESET & FOUNDATIONS ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #2D2D3A;
  background: #F4F5F9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

::placeholder {
  color: #9B9CAF;
  font-weight: 400
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #F4F5F9
}

::-webkit-scrollbar-thumb {
  background: #414393;
  border-radius: 3px
}

/* ── UTILITY: Scroll-Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .12s
}

.reveal-delay-2 {
  transition-delay: .24s
}

.reveal-delay-3 {
  transition-delay: .36s
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(65, 67, 147, .08);
  padding: 0 clamp(16px, 4vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .3s;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(65, 67, 147, .1)
}

.header .logo img {
  height: 42px;
  width: auto;
  transition: transform .3s
}

.header .logo:hover img {
  transform: scale(1.04)
}

.header .nav-actions {
  display: flex;
  align-items: center;
  gap: 24px
}

.header .phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1C2079;
  transition: color .25s;
}

.header .phone-link svg {
  width: 16px;
  height: 16px;
  fill: #1C2079;
  transition: fill .25s
}

.header .phone-link:hover {
  color: #414393
}

.header .phone-link:hover svg {
  fill: #414393
}

.header .cta-header {
  background: linear-gradient(135deg, #1CAF13 0%, #149e0e 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(28, 175, 19, .3);
  transition: transform .25s, box-shadow .25s;
}

.header .cta-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(28, 175, 19, .4)
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #414393 0%, #2D2F6E 60%, #1C2079 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 175, 19, .08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px clamp(16px, 4vw, 80px) 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
  color: #fff
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .9);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1CAF13;
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 40px;
  letter-spacing: -.5px;
}

.hero-content h1 .gold-text {
  color: #FFD500;
}

.hero-content .highlight-line {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.hero-content .highlight-line .gold {
  color: #FFD500;
}

.hero-content .sub-light {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
}

/* Mobile CTA area — hidden on desktop */
.hero-mobile-cta-area {
  display: none
}

/* Product image — desktop (right column, replaces form) */
.hero-product-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 380px;
  min-height: 380px;
}

.hero-product-desktop .hero-product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 0, .15) 0%, rgba(65, 67, 147, .08) 50%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1
  }
}

.hero-product-desktop img {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .35));
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  transform: scale(1.2);
}

.hero-product-desktop:hover img {
  transform: translateY(-10px) scale(1.22)
}

/* Hero CTA button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #1CAF13 0%, #149e0e 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(28, 175, 19, .35), 0 0 0 0 rgba(28, 175, 19, 0);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}

.hero-cta-btn:hover::before {
  opacity: 1
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(28, 175, 19, .45), 0 0 0 4px rgba(28, 175, 19, .15);
}

.hero-cta-btn:active {
  transform: translateY(-1px)
}

.hero-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.hero-cta-icon svg {
  width: 20px;
  height: 20px
}

.hero-cta-arrow {
  font-size: 18px;
  transition: transform .3s;
}

.hero-cta-btn:hover .hero-cta-arrow {
  transform: translateX(4px)
}

/* Mobile CTA button — hidden on desktop */
.hero-cta-mobile {
  display: none
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.hero-stat {
  text-align: center;
  padding: 12px 0;
}

.hero-stat .number {
  font-size: 28px;
  font-weight: 800;
  color: #FFD500;
  line-height: 1
}

.hero-stat .label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* ── FORM MODAL ── */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(28, 32, 121, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 40px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s cubic-bezier(.22, 1, .36, 1), visibility .35s;
}

.form-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-modal {
  margin: auto;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  width: 420px;
  max-width: 100%;
  overflow: visible;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25), 0 0 0 1px rgba(65, 67, 147, .08);
  position: relative;
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.form-modal-overlay.active .form-modal {
  transform: translateY(0) scale(1);
}

.form-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  background: #3E4195;
  border-radius: 0 0 4px 4px;
}

.form-modal h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #2D2D3A;
  margin-bottom: 4px;
}

.form-modal h2 .accent {
  color: #414393
}

.form-modal .form-subtitle {
  font-size: 13px;
  color: #77788D;
  margin-bottom: 20px;
  font-weight: 400
}

.form-modal form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-modal input,
.form-modal select,
.form-modal textarea {
  width: 100%;
  height: 46px;
  border: 1.5px solid #E4E5ED;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: #FAFBFE;
  color: #2D2D3A;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.form-modal input:focus,
.form-modal select:focus,
.form-modal textarea:focus {
  border-color: #414393;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(65, 67, 147, .1);
}

.form-modal select {
  padding: 0 12px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='%2377788D'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

/* ── CUSTOM SELECT DROPDOWN ── */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  height: 46px;
  border: 1.5px solid #E4E5ED;
  border-radius: 10px;
  padding: 0 40px 0 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: #FAFBFE;
  color: #2D2D3A;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color .2s, box-shadow .2s, background .2s;
  position: relative;
}

.custom-select-trigger:hover {
  border-color: #C5C6D6;
}

.custom-select-trigger:focus,
.custom-select.open .custom-select-trigger {
  border-color: #414393;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(65, 67, 147, .1);
}

.custom-select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.custom-select-value[data-placeholder]:not(.selected) {
  color: #9B9CAF;
  font-weight: 400;
}

.custom-select-value.selected {
  color: #2D2D3A;
  font-weight: 500;
}

.custom-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 12px;
  height: 12px;
  color: #9B9CAF;
  transition: transform .25s cubic-bezier(.22,1,.36,1), color .2s;
  pointer-events: none;
}

.custom-select.open .custom-select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: #414393;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #E4E5ED;
  border-radius: 12px;
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 100;
  box-shadow: 0 12px 36px rgba(28, 32, 121, .12), 0 2px 8px rgba(0,0,0,.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transition: opacity .18s cubic-bezier(.22,1,.36,1),
              transform .18s cubic-bezier(.22,1,.36,1),
              visibility .18s;
  max-height: 240px;
  overflow-y: auto;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-select-options li {
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #2D2D3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  font-weight: 500;
}

.custom-select-options li:hover {
  background: rgba(65, 67, 147, .07);
  color: #414393;
}

.custom-select-options li.active {
  background: #414393;
  color: #fff;
}

.custom-select-options li + li {
  margin-top: 2px;
}

/* Scrollbar inside custom-select */
.custom-select-options::-webkit-scrollbar {
  width: 4px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: #C5C6D6;
  border-radius: 2px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}

.form-modal textarea {
  height: 72px;
  padding: 12px 14px;
  resize: none;
  line-height: 1.4
}

.form-modal .btn-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #1CAF13 0%, #149e0e 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(28, 175, 19, .3);
  transition: transform .25s, box-shadow .25s;
  margin-top: 4px;
}

.form-modal .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(28, 175, 19, .4)
}

.form-modal .btn-submit:active {
  transform: translateY(0)
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(65, 67, 147, .06);
  color: #77788D;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s, transform .25s;
}

.form-modal-close:hover {
  background: rgba(239, 22, 56, .08);
  color: #EF1638;
  transform: rotate(90deg);
}

/* ── FORM BOX ── */
.form-box {
  background: #fff;
  border-radius: 16px;
  width: 360px;
  flex-shrink: 0;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15), 0 1px 3px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 10;
}

.form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  background: #3E4195;
  border-radius: 0 0 4px 4px;
}

.form-box h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #2D2D3A;
  margin-bottom: 4px;
}

.form-box h2 .accent {
  color: #414393
}

.form-box .form-subtitle {
  font-size: 13px;
  color: #77788D;
  margin-bottom: 20px;
  font-weight: 400
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-field {
  position: relative
}

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #77788D;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  height: 44px;
  border: 1.5px solid #E4E5ED;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: #FAFBFE;
  color: #2D2D3A;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: #414393;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(65, 67, 147, .1);
}

.form-box select {
  padding: 0 12px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='%2377788D'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}

.form-box textarea {
  height: 72px;
  padding: 12px 14px;
  resize: none;
  line-height: 1.4
}

.btn-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #1CAF13 0%, #149e0e 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(28, 175, 19, .3);
  transition: transform .25s, box-shadow .25s;
  margin-top: 4px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(28, 175, 19, .4)
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(28, 175, 19, .3)
}

/* ── SECTION COMMONS ── */
.section-pad {
  padding: 80px clamp(16px, 4vw, 80px)
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px
}

.section-header .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #414393;
  margin-bottom: 12px;
  background: rgba(65, 67, 147, .08);
  padding: 5px 14px;
  border-radius: 100px;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: #2D2D3A;
  margin-bottom: 12px;
  letter-spacing: -.3px;
}

.section-header h2 .red {
  color: #EF1638
}

.section-header h2 .primary {
  color: #414393
}

.section-header p {
  font-size: 16px;
  color: #77788D;
  line-height: 1.6
}

/* ── BENEFITS ── */
.benefits {
  background: #fff
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.benefit-card {
  background: #FAFBFE;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #EDEEF5;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(65, 67, 147, .1);
}

.benefit-card .card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.benefit-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.benefit-card:hover .card-img img {
  transform: scale(1.05)
}

.benefit-card .card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #414393, #6865A8);
}

.benefit-card .card-body {
  padding: 24px
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #414393;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: #77788D;
  line-height: 1.65
}

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, #F4F5F9 0%, #EDEEF5 100%);
  text-align: center;
}


/* ── TESTIMONIALS ── */
.testimonials {
  background: #fff
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card {
  background: #FAFBFE;
  border: 1px solid #EDEEF5;
  border-radius: 16px;
  padding: 48px 24px 28px;
  text-align: center;
  position: relative;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(65, 67, 147, .08);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 48px;
  line-height: 1;
  color: rgba(65, 67, 147, .08);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-card .card-logo {
  width: 120px;
  height: 64px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #EDEEF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  padding: 10px 16px;
  transition: box-shadow .3s, transform .3s;
}

.testimonial-card:hover .card-logo {
  box-shadow: 0 6px 20px rgba(65, 67, 147, .1);
  transform: translateY(-2px);
}

.testimonial-card .card-logo img {
  max-width: 88px;
  max-height: 40px;
  object-fit: contain;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: #5A5B70;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 13px;
  color: #77788D
}

.testimonial-card .author strong {
  display: block;
  font-weight: 700;
  color: #2D2D3A;
  font-style: normal;
  margin-bottom: 2px
}

.testimonial-card .author span {
  font-size: 12px
}

/* wide card */
.testimonials-wide {
  max-width: 760px;
  margin: 32px auto 0
}

.testimonial-card.wide {
  padding: 48px 40px 32px;
  text-align: center;
}

.testimonial-card.wide blockquote {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 20px
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(135deg, #414393 0%, #2D2F6E 60%, #1C2079 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 70%);
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-logo img {
  width: 200px;
  height: auto;
  opacity: .95
}

.about-text {
  text-align: center
}

.about-text p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 12px
}

.about-text .address {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: inline-block;
}

.about-contact {
  text-align: center
}

.about-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
}

.about-contact .contact-item svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, .6);
  flex-shrink: 0
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #414393 0%, #2D2F6E 60%, #1C2079 100%);
  border-top: 1px solid rgba(255, 255, 255, .1);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer .developed-by {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 0.3px;
}

.footer a {
  opacity: .8;
  transition: opacity .25s;
  display: flex;
}

.footer a:hover {
  opacity: 1
}

.footer img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* ── WHATSAPP FLOAT ── */
.whats-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999
}

.whats-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
}

.whats-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5)
}

.whats-float a img {
  width: 28px;
  height: 28px
}

.whats-float .tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #2D2D3A;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.whats-float:hover .tooltip {
  opacity: 1
}

/* ── SHAKE ── */
.shake-field {
  animation: shake .4s cubic-bezier(.36, .07, .19, .97)
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(6px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(4px)
  }
}

@media(max-width:960px) {

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px 40px
  }

  .hero-content {
    max-width: 100%
  }

  .hero-product-desktop {
    display: none
  }

  .hero-cta-desktop {
    display: none
  }

  .hero-mobile-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 40px auto 0;
    position: relative;
  }

  .hero-mobile-product {
    position: relative;
    z-index: 2;
    margin-bottom: -18px;
    /* image overlaps top edge of button */
  }

  .hero-mobile-product img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .35));
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  }

  .hero-cta-mobile {
    display: inline-flex !important;
    width: auto;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1CAF13 0%, #149e0e 100%);
    box-shadow: 0 4px 16px rgba(28, 175, 19, .3);
  }

  .hero-stats {
    justify-content: center
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .about-logo {
    order: 0
  }

  .about-logo img {
    margin: 0 auto
  }

  .about-contact .contact-item {
    justify-content: center
  }
}

@media(max-width:600px) {
  .header {
    height: 64px;
    padding: 0 16px
  }

  .header .logo img {
    height: 34px
  }

  .header .cta-header {
    display: none
  }

  .header .phone-link span {
    display: none
  }

  .hero-inner {
    padding: 36px 16px 40px;
    gap: 20px
  }

  .hero-content h1 {
    font-size: 26px
  }

  /* Stats — horizontal row on mobile */
  .hero-stats {
    flex-direction: row !important;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 30px;
  }

  .hero-stat {
    flex: 1;
    padding: 6px 8px;
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .hero-stat:last-child {
    border-right: none
  }

  .hero-stat .number {
    font-size: 22px
  }

  .hero-stat .label {
    font-size: 10px
  }

  /* Mobile CTA area adjustments */
  .hero-mobile-product img {
    width: 170px;
    height: 170px
  }

  .hero-mobile-product {
    margin-bottom: -14px
  }

  .hero-cta-mobile {
    padding: 12px 24px;
    font-size: 13px;
    border-radius: 10px;
    white-space: nowrap;
  }

  .section-pad {
    padding: 56px 16px
  }

  .section-header h2 {
    font-size: 22px
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .testimonial-card.wide {
    padding: 48px 20px 28px
  }

  .about-inner {
    gap: 28px
  }

  .about-logo img {
    width: 160px
  }

  .footer {
    height: 56px
  }

  .footer img {
    width: 130px
  }

  .whats-float {
    bottom: 16px;
    left: 16px
  }

  .whats-float a {
    width: 48px;
    height: 48px
  }

  .whats-float a img {
    width: 24px;
    height: 24px
  }

  .whats-float .tooltip {
    display: none
  }
}