/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
  color: rgba(255, 255, 255, .92);
  text-align: center;
  font-size: .76rem;
  font-weight: 600;
  padding: 9px 16px;
  letter-spacing: .3px;
}

.topbar strong {
  color: #6EE7B7;
}

/* ===== NAV ===== */
nav {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, .8);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.nav-logo {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(5, 150, 105, .28);
}

.logo-em {
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(5, 150, 105, .28);
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
}

.nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, .38);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(155deg, #F0FDF4 0%, #ECFDF5 45%, var(--surface) 100%);
  padding: 52px 20px 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, .06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, .05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 740px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Hero left pane */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #FEF2F2, #FFF5F5);
  border: 1.5px solid #FECACA;
  color: var(--red);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 800;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(220, 38, 38, .1);
  animation: pulse-badge 2.4s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 2px 8px rgba(220, 38, 38, .1), 0 0 0 0 rgba(220, 38, 38, .18);
  }

  50% {
    box-shadow: 0 2px 8px rgba(220, 38, 38, .1), 0 0 0 8px rgba(220, 38, 38, 0);
  }
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.18;
  letter-spacing: -.4px;
}

.hero-title .hi {
  color: var(--primary);
}

.hero-subtitle {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.9;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--sh-sm);
  width: fit-content;
}

.price-main {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: .95rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-badge {
  background: linear-gradient(135deg, var(--red), #EF4444);
  color: #fff;
  font-size: .71rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, .22);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--gray-800);
}

.hf-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-l), #A7F3D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 1px 4px rgba(5, 150, 105, .15);
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.hero-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--sh-lg);
  border: 3px solid rgba(255, 255, 255, .85);
}

/* Hero right pane: form card */
.hero-form-wrap {
  position: relative;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-xl);
  padding: 30px 26px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #10B981, #6EE7B7);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-card-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-card-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gray-900);
}

.form-card-sub {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 5px;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 400px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: .81rem;
  font-weight: 700;
  color: var(--gray-900);
}

.req {
  color: var(--red);
}

.form-control {
  font-family: 'Cairo', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  direction: rtl;
  width: 100%;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, .1);
  background: var(--white);
}

.form-control::placeholder {
  color: var(--gray-300);
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  padding: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(5, 150, 105, .35);
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  letter-spacing: .3px;
}

.btn-submit:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, .45);
}

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

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: .73rem;
  color: var(--gray-400);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 10px;
}

.success-icon {
  font-size: 3.6rem;
  display: block;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success p {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1E293B 100%);
  padding: 16px 20px;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 52px);
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
}

/* ===== COMMON SECTION STYLES ===== */
section {
  padding: 72px 20px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.sec-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: .92rem;
  margin-bottom: 40px;
}

.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #6EE7B7);
  border-radius: 99px;
  margin: 10px auto 40px;
}

/* ===== SCARCITY ===== */
.scarcity {
  background: linear-gradient(135deg, #FFFBEB, #FFFDE7);
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: .85rem;
  font-weight: 700;
  color: #92400E;
  box-shadow: 0 2px 10px rgba(217, 119, 6, .1);
}

.sc-cnt {
  color: var(--red);
  font-weight: 900;
}

.sc-bar {
  flex: 1;
  height: 8px;
  background: #FDE68A;
  border-radius: 99px;
  overflow: hidden;
}

.sc-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #F59E0B, var(--red));
  border-radius: 99px;
  transition: width 1.5s ease-out;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  background: var(--surface);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

@media (max-width: 660px) {
  .product-card {
    grid-template-columns: 1fr;
  }
}

/* Real product photos collage */
.gallery-wrap {
  margin-top: 48px;
  text-align: center;
}

.gallery-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.gallery-sub {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.gallery-frame {
  display: inline-block;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--gray-200);
  max-width: 940px;
  width: 100%;
}

.gallery-collage {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-xl) - 6px);
  object-fit: contain;
}

.gallery-color-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  max-width: 940px;
  margin: 12px auto 0;
}

.gallery-color-labels span {
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
}

.gallery-color-labels span.cl-white {
  border-color: #d1d5db;
}

.gallery-color-labels span.cl-light {
  border-color: #c8a96e;
  color: #92621a;
}

.gallery-color-labels span.cl-dark {
  border-color: #6b4d2f;
  color: #4a3120;
}

.product-img-wrap {
  background: linear-gradient(135deg, var(--gray-100), #F0FDF4);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-photo {
  object-fit: contain !important;
  padding: 28px;
  background: linear-gradient(135deg, #FAFAFA, #F0FDF4);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--red), #EF4444);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(220, 38, 38, .38);
  animation: pb 2.5s infinite;
}

@keyframes pb {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

.product-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 660px) {
  .product-info {
    padding: 26px 22px;
  }
}

.product-info h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.28;
  letter-spacing: -.3px;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stars {
  color: #F59E0B;
  font-size: .95rem;
  letter-spacing: 1.5px;
}

.reviews {
  font-size: .77rem;
  color: var(--gray-500);
}

.verified {
  font-size: .68rem;
  font-weight: 700;
  background: var(--primary-l);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
}

.product-desc {
  font-size: .89rem;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 18px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.feat-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-l), #A7F3D0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 1px 4px rgba(5, 150, 105, .15);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-old {
  font-size: .97rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-save {
  background: linear-gradient(135deg, var(--red), #EF4444);
  color: #fff;
  font-size: .71rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, .22);
}

.price-note {
  font-size: .76rem;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: .97rem;
  font-weight: 900;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(5, 150, 105, .32);
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
  align-self: flex-start;
  letter-spacing: .2px;
}

.btn-order:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(5, 150, 105, .44);
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6EE7B7);
  transform: scaleX(0);
  transition: transform var(--tr);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--primary-l);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-l), #A7F3D0);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(5, 150, 105, .14);
}

.benefit-card h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--surface);
}

.sp-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-md);
}

.sp-s {
  text-align: center;
}

.sp-n {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.sp-l {
  font-size: .73rem;
  color: var(--gray-500);
  font-weight: 600;
}

.sp-sep {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-l);
  font-family: Georgia, serif;
  font-weight: 900;
}

.t-stars {
  color: #F59E0B;
  font-size: .86rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: .87rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.9;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #10B981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(5, 150, 105, .22);
}

.author-info strong {
  display: block;
  font-size: .84rem;
  color: var(--gray-900);
}

.author-info span {
  font-size: .73rem;
  color: var(--gray-500);
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: linear-gradient(180deg, var(--surface) 0%, #E8FDF4 100%);
}

.steps-row {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  justify-content: center;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 16.5%;
  left: 16.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-l), var(--primary), var(--primary-l));
  z-index: 0;
}

@media (max-width: 600px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .steps-row::before {
    display: none;
  }
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  font-size: 1.6rem;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
}

.how-step-num .step-n {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(5, 150, 105, .3);
}

.how-step:hover .how-step-num {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.how-step h4 {
  font-size: .96rem;
  font-weight: 800;
  color: var(--gray-900);
}

.how-step p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 170px;
}

/* ===== STICKY CTA mobile ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  padding: 14px 24px;
  z-index: 190;
  box-shadow: 0 -4px 20px rgba(5, 150, 105, .3);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: .96rem;
  letter-spacing: .2px;
}

@media (max-width: 600px) {
  .sticky-cta {
    display: block;
  }
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 84px;
  left: 20px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .42);
  z-index: 180;
  transition: transform var(--tr);
  font-size: 1.5rem;
  animation: pulseWA 2.8s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .58);
}

@keyframes pulseWA {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, .42);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .68), 0 0 0 12px rgba(37, 211, 102, .08);
  }
}

/* ===== Scroll top ===== */
#scrollTop {
  position: fixed;
  bottom: 150px;
  left: 20px;
  background: var(--gray-900);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 180;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: var(--sh-sm);
}

#scrollTop:hover {
  background: var(--gray-600);
  transform: scale(1.1);
  box-shadow: var(--sh-md);
}

#scrollTop.visible {
  display: flex;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #020617 100%);
  color: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 36px 20px 96px;
  font-size: .79rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #6EE7B7, var(--primary));
}

.footer-logo {
  font-size: 1.06rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-logo em {
  color: #6EE7B7;
  font-style: normal;
}