:root {
    --warm-white: #fdf9f6;
    --blush: #f4d9d0;
    --blush-mid: #e8b8ac;
    --beige: #f0e8df;
    --beige-deep: #e5d5c4;
    --lavender: #e8e0f0;
    --lavender-mid: #c9b8e0;
    --powder-blue: #d6e8f0;
    --sage: #d4e0d8;
    --text-dark: #2c2420;
    --text-mid: #5a4a44;
    --text-light: #9a8880;
    --rose-gold: #c4856a;
    --rose-gold-deep: #a06850;
    --cream: #faf6f2;
    --white: #ffffff;
    --shadow-soft: 0 8px 40px rgba(180,130,110,0.12);
    --shadow-card: 0 4px 24px rgba(180,130,110,0.10);
    --radius-card: 24px;
    --radius-pill: 100px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    padding-top: 70px;
  }

  /* ——— TYPOGRAPHY ——— */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
  }

  .serif-italic { font-style: italic; }

  /* ——— UTILITIES ——— */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

  /* ——— ANIMATIONS ——— */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes floatBlob {
    0%,100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(12px, -18px) scale(1.04); }
    66%      { transform: translate(-10px, 8px) scale(0.97); }
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
  }
  @keyframes lineGrow {
    from { width: 0; }
    to   { width: 100%; }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ——— NAV ——— */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(253,249,246,0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(180,130,110,0.10);
    padding: 14px 0;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }
  .nav-logo span { color: var(--rose-gold); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose-gold); }
  .nav-cta {
    background: var(--rose-gold);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--rose-gold-deep) !important; transform: translateY(-1px); }
  .nav-links .social-link {
    background: #FF0000;
    color: white !important;
    padding: 10px 16px;
    width: fit-content;
    height: 36px;
    border-radius: var(--radius-pill);
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-links .social-link:hover { background: #cc0000 !important; transform: translateY(-1px); }
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ——— FREE GUIDANCE BANNER ——— */
  .top-banner {
    background: linear-gradient(90deg, var(--blush) 0%, var(--lavender) 100%);
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.02em;
  }
  .top-banner strong { color: var(--rose-gold-deep); }

  /* ——— HERO ——— */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 40%, var(--blush) 100%);
  }

  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(244,217,208,0.5) 0%, transparent 70%);
    top: -100px; right: -100px;
    animation: floatBlob 10s ease-in-out infinite;
  }
  .hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,224,240,0.4) 0%, transparent 70%);
    bottom: 0; left: -100px;
    animation: floatBlob 14s ease-in-out infinite reverse;
  }
  .hero-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(214,232,240,0.35) 0%, transparent 70%);
    top: 40%; right: 30%;
    animation: floatBlob 18s ease-in-out infinite;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--blush-mid);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rose-gold-deep);
    margin-bottom: 28px;
    box-shadow: var(--shadow-card);
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--rose-gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  .hero h1 {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeUp 0.7s 0.1s ease both;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--rose-gold);
  }

  .hero-sub {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 36px;
    animation: fadeUp 0.7s 0.2s ease both;
    max-width: 480px;
  }

  .hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(244,217,208,0.6);
  }
  .trust-pill .icon { font-size: 16px; }
  .trust-pill strong { color: var(--text-dark); }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.7s 0.4s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-gold);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(196,133,106,0.35);
    letter-spacing: 0.01em;
  }
  .btn-primary:hover {
    background: var(--rose-gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(196,133,106,0.45);
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  }
  .btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--rose-gold-deep);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--blush-mid);
    transition: all 0.25s;
  }
  .btn-secondary:hover {
    background: var(--blush);
    border-color: var(--rose-gold);
    transform: translateY(-2px);
  }

  /* Doctor image placeholder */
  .hero-image-wrap {
    position: relative;
    animation: fadeIn 1s 0.3s ease both;
  }
  .hero-image-frame {
    position: relative;
    border-radius: 40px 40px 120px 40px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 600px;
    background: linear-gradient(145deg, var(--blush) 0%, var(--lavender) 60%, var(--powder-blue) 100%);
    box-shadow: 0 30px 80px rgba(180,130,110,0.25), 0 0 0 1px rgba(244,217,208,0.5);
  }
  .hero-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 32px;
    background: linear-gradient(180deg, transparent 40%, rgba(244,217,208,0.3) 100%);
    position: relative;
  }
  .doctor-silhouette {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 90%;
    background: linear-gradient(170deg, #c4a09090 0%, #8a6a6440 100%);
    border-radius: 48% 48% 0 0;
    opacity: 0.35;
  }
  .hero-image-badge {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: white;
    border-radius: 20px;
    padding: 16px 22px;
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    z-index: 2;
    min-width: 50px;
  }
  .hero-image-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--rose-gold); display: block; line-height: 1; }
  .hero-image-badge .small { color: var(--text-mid); font-size: 12px; margin-top: 4px; }

  /* decrease the width in small screens */

  .hero-image-badge-2 {
    position: absolute;
    top: 32px;
    left: -40px;
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
    min-width: 50px;
  }


  .hero-image-badge-2 .big { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--rose-gold); display: block; line-height: 1; }
  .hero-image-badge-2 .label { color: var(--text-mid); font-size: 12px; margin-top: 2px; }

  /* ——— SECTION WRAPPER ——— */
  section { position: relative; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 16px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--rose-gold);
  }
  .section-heading {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .section-heading em { color: var(--rose-gold); font-style: italic; }
  .section-sub {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.8;
  }

  /* ——— CURVE DIVIDER ——— */
  .curve-top {
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 80px;
    overflow: hidden;
  }
  .curve-top svg { width: 100%; height: 100%; }
  .curve-bottom {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 80px;
    overflow: hidden;
  }
  .curve-bottom svg { width: 100%; height: 100%; }

  /* ——— EMOTIONAL CONNECT ——— */
  .emotional {
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--lavender) 100%);
    padding: 120px 0;
    position: relative;
  }
  .emotional-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }
  .emotional-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 32px;
    position: relative;
  }
  .emotional-quote::before {
    content: '\201C';
    font-size: 120px;
    color: var(--blush-mid);
    position: absolute;
    top: -20px; left: -20px;
    line-height: 1;
    font-style: normal;
  }
  .emotional-body {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 44px;
  }
  .emotional-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .emotional-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    min-width: 180px;
    flex: 1;
    max-width: 220px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .emotional-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
  }
  .emotional-card .emoji { font-size: 36px; margin-bottom: 12px; display: block; }
  .emotional-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
  .emotional-card p { font-size: 13px; color: var(--text-mid); }

  /* ——— ABOUT ——— */
  .about { padding: 120px 0; background: var(--warm-white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    position: relative;
  }
  .about-img-frame {
    border-radius: 30px 30px 30px 100px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--beige) 0%, var(--blush) 50%, var(--lavender) 100%);
    box-shadow: var(--shadow-soft);
    position: relative;
  }
  .about-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 0;
  }
  .about-doc-shape {
    width: 70%; height: 85%;
    background: linear-gradient(170deg, rgba(196,133,106,0.2) 0%, rgba(232,224,240,0.3) 100%);
    border-radius: 40% 40% 0 0;
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
  }
  .about-accent {
    position: absolute;
    bottom: -24px; right: -24px;
    background: white;
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: var(--shadow-soft);
    text-align: center;
  }
  .about-accent .num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--rose-gold); line-height: 1; }
  .about-accent .lbl { font-size: 12px; color: var(--text-mid); margin-top: 4px; }

  .about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--rose-gold);
    margin: 24px 0;
    opacity: 0.7;
  }
  .about-content p { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
  .focus-list { list-style: none; margin: 20px 0; }
  .focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-mid);
    padding: 10px 0;
    border-bottom: 1px solid var(--beige);
  }
  .focus-list li::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose-gold);
    flex-shrink: 0;
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .about-stat {
    background: var(--cream);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--beige-deep);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .about-stat .n { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--rose-gold); display: block; }
  .about-stat .l { font-size: 12px; color: var(--text-mid); margin-top: 2px; }

  /* ——— WHY TRUST ——— */
  .why-trust {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .trust-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 36px 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(244,217,208,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .trust-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blush-mid), var(--lavender-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .trust-card:hover::before { transform: scaleX(1); }
  .trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
  }
  .trust-card:nth-child(4),
  .trust-card:nth-child(5) {
    grid-column: span 1;
  }
  .trust-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .trust-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .trust-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

  .trust-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  /* ——— SERVICES ——— */
  .services { padding: 120px 0; background: var(--warm-white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid var(--beige-deep);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244,217,208,0.3) 0%, rgba(232,224,240,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-soft);
    border-color: var(--blush-mid);
  }
  .service-card:hover::after { opacity: 1; }
  .service-icon { font-size: 40px; margin-bottom: 16px; display: block; position: relative; z-index: 1; }
  .service-card h3 { font-size: 18px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; position: relative; z-index: 1; }
  .service-card p { font-size: 13px; color: var(--text-light); position: relative; z-index: 1; }

  /* ——— JOURNEY ——— */
  .journey { padding: 120px 0; background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--lavender) 100%); }
  .steps-wrapper { margin-top: 60px; position: relative; }
  .steps-line {
    position: absolute;
    top: 32px; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 32px);
    background: linear-gradient(180deg, var(--blush-mid) 0%, var(--lavender-mid) 100%);
    z-index: 0;
  }
  .step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }
  .step:nth-child(even) .step-content-left { grid-column: 3; }
  .step:nth-child(even) .step-center { grid-column: 2; }
  .step:nth-child(even) .step-content-right { grid-column: 1; grid-row: 1; text-align: right; }

  .step-node {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600;
    color: var(--rose-gold);
    margin: 0 auto;
    border: 2px solid var(--blush-mid);
  }
  .step-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(244,217,208,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
  .step-card h4 { font-size: 18px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
  .step-card p { font-size: 14px; color: var(--text-mid); }
  .step-empty { background: transparent; box-shadow: none; border: none; }

  /* ——— MOBILE STEPS ——— */
  .steps-mobile { display: none; margin-top: 48px; }
  .step-mobile {
    display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start;
  }
  .step-mobile-node {
    width: 48px; height: 48px; border-radius: 50%;
    background: white; box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600;
    color: var(--rose-gold); border: 2px solid var(--blush-mid);
    flex-shrink: 0;
  }
  .step-mobile-card { background: white; border-radius: 16px; padding: 20px; box-shadow: var(--shadow-card); flex: 1; }
  .step-mobile-card h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
  .step-mobile-card p { font-size: 13px; color: var(--text-mid); }

  /* ——— TESTIMONIALS ——— */
  .testimonials { padding: 120px 0; background: var(--warm-white); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .testi-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid var(--beige-deep);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
  .testi-stars { color: #f0a060; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush-mid) 0%, var(--lavender-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: white;
    flex-shrink: 0;
  }
  .testi-author-info .name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
  .testi-author-info .detail { font-size: 12px; color: var(--text-light); margin-top: 2px; }

  .testi-video {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border: 1px solid rgba(244,217,208,0.5);
    cursor: pointer;
    transition: box-shadow 0.3s;
  }
  .testi-video:hover { box-shadow: var(--shadow-soft); }
  .video-play {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 32px rgba(180,130,110,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    transition: transform 0.3s;
  }
  .testi-video:hover .video-play { transform: scale(1.1); }
  .video-label {
    position: absolute;
    bottom: 24px;
    left: 50%; transform: translateX(-50%);
    font-size: 13px; font-weight: 500;
    color: var(--text-mid);
    white-space: nowrap;
  }

  /* ——— SUCCESS METRICS ——— */
  .metrics { padding: 80px 0; background: linear-gradient(135deg, var(--beige) 0%, var(--blush) 100%); }
  .metrics-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
  }
  .metric-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 300;
    color: var(--rose-gold-deep);
    line-height: 1;
    display: block;
  }
  .metric-item .lbl { font-size: 14px; font-weight: 500; color: var(--text-mid); margin-top: 8px; }

  /* ——— CTA SECTION ——— */
  .cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c2420 0%, #4a3430 50%, #3a2e38 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .cta-blob-1 {
    width: 500px; height: 500px;
    background: rgba(244,217,208,0.08);
    top: -150px; left: -100px;
  }
  .cta-blob-2 {
    width: 400px; height: 400px;
    background: rgba(232,224,240,0.08);
    bottom: -100px; right: -100px;
  }
  .cta-section h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .cta-section h2 em { color: var(--blush); }
  .cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.8;
    position: relative; z-index: 1;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-cta-primary {
    background: var(--blush);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    font-size: 16px; font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(244,217,208,0.3);
  }
  .btn-cta-primary:hover { background: white; transform: translateY(-2px); }

  /* ——— FAQ ——— */
  .faq { padding: 120px 0; background: var(--warm-white); }
  .faq-list { max-width: 780px; margin: 60px auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--beige-deep);
    overflow: hidden;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--rose-gold); }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--beige);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--rose-gold);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blush); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 15px; color: var(--text-mid); line-height: 1.8;
  }
  .faq-a.open { max-height: 200px; padding-bottom: 24px; }

  /* ——— CONTACT ——— */
  .contact { padding: 120px 0; background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info h2 { font-size: 44px; margin-bottom: 32px; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 28px;
  }
  .contact-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
  }
  .contact-text .label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
  .contact-text a, .contact-text p { font-size: 15px; color: var(--text-dark); text-decoration: none; line-height: 1.6; }
  .contact-text a:hover { color: var(--rose-gold); }
  .contact-map {
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, var(--beige-deep) 0%, var(--blush) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    position: relative;
  }
  .map-placeholder {
    text-align: center;
    color: var(--text-mid);
    font-size: 14px;
  }
  .map-placeholder .pin { font-size: 48px; display: block; margin-bottom: 12px; }

  .social-links { display: flex; gap: 12px; margin-top: 32px; }
  .social-link {
    width: 44px; height: 44px; border-radius: 12px;
    background: white; box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

  /* ——— FOOTER ——— */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
  }
  footer strong { color: rgba(255,255,255,0.8); }
  footer .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: rgba(255,255,255,0.8); }
  footer .footer-links { display: flex; gap: 24px; }

  /* ——— FLOATING WHATSAPP ——— */
  .whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .whatsapp-bubble {
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    font-size: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 3s ease infinite;
  }
  .whatsapp-bubble:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
  .whatsapp-tooltip {
    background: white;
    color: var(--text-dark);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px; font-weight: 500;
    box-shadow: var(--shadow-soft);
    white-space: nowrap;
    display: none;
  }
  .whatsapp-float:hover .whatsapp-tooltip { display: block; }

  /* ——— VIDEO SECTION ——— */
  .video-intro { padding: 80px 0; background: var(--cream); }
  .video-frame {
    max-width: 380px; margin: 0 auto;
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
    border-radius: 32px;
    overflow: hidden;
    height: 680px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
  }
  .video-frame:hover { transform: scale(1.02); }
  .video-frame-inner { text-align: center; }
  .video-frame-inner .play-btn {
    width: 88px; height: 88px; border-radius: 50%;
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin: 0 auto 24px;
    box-shadow: 0 12px 48px rgba(180,130,110,0.3);
    transition: transform 0.3s;
  }
  .video-frame:hover .play-btn { transform: scale(1.1); }
  .video-frame-inner h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text-mid); }
  .video-frame-inner p { font-size: 14px; color: var(--text-light); margin-top: 8px; }

  /* ——— BEFORE/AFTER JOURNEY ——— */
  .journey-story { padding: 100px 0; background: var(--warm-white); }
  .journey-story-inner { max-width: 900px; margin: 60px auto 0; }
  .journey-stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .journey-stages::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--blush-mid), var(--lavender-mid));
    z-index: 0;
  }
  .journey-stage {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }
  .journey-stage-icon {
    width: 72px; height: 72px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 20px;
    box-shadow: var(--shadow-card);
    position: relative;
  }
  .stage-1 .journey-stage-icon { background: linear-gradient(135deg, #e8d0c8 0%, #d4b8b0 100%); }
  .stage-2 .journey-stage-icon { background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%); }
  .stage-3 .journey-stage-icon { background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-mid) 100%); }
  .stage-4 .journey-stage-icon { background: linear-gradient(135deg, var(--sage) 0%, #b0d0b8 100%); }
  .journey-stage h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; margin-bottom: 8px; }
  .journey-stage p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* ——— MOBILE RESPONSIVE ——— */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 260px;
      background: white;
      padding: 80px 32px 32px;
      box-shadow: -10px 0 40px rgba(0,0,0,0.1);
      gap: 20px;
      z-index: 999;
    }
    .nav-links.open .nav-cta { align-self: flex-start; }

    .hero { padding: 100px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { order: -1; }
    .hero-image-frame { max-height: 400px; aspect-ratio: 4/3; }
    .hero-image-badge { left: 8px; bottom: 16px; }
    .hero-image-badge-2 { left: 8px; top: 16px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .about-accent { right: -8px; bottom: -16px; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-bottom-row { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr 1fr; }

    .steps-wrapper { display: none; }
    .steps-mobile { display: block; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-video { grid-column: span 1; }

    .contact-grid { grid-template-columns: 1fr; }

    .journey-stages { grid-template-columns: 1fr 1fr; gap: 32px; }
    .journey-stages::before { display: none; }

    .metrics-row { gap: 32px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }

  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 38px; }
    .trust-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-trust-strip { gap: 8px; }
    .trust-pill { font-size: 12px; padding: 8px 14px; }
    .emotional-cards { gap: 12px; }
    .emotional-card { max-width: 100%; }
    .journey-stages { grid-template-columns: 1fr; }
    .journey-stages::before { display: none; }
    .whatsapp-float { bottom: 20px; right: 20px; }
  }

  /* want to remove badge when max-width is less than 400px */
  @media (max-width: 350px) {
    .hero-image-badge,
    .hero-image-badge-2 {
      display: none;
    }
  }