  :root{
    --logo-badge-url: url("../assets/images/logo-badge.png");
    --woman-url: url("../assets/images/woman.png");
    --logo-url: url("../assets/images/logo.png");
    --leaf-sprig-url: url("../assets/images/leaf-sprig.png");
    --site-preview-desktop-url: url("../assets/images/site-preview-desktop.png");
    --site-preview-mobile-url: url("../assets/images/site-preview-mobile.png");
    --cream:#FBEDE8;
    --cream-2:#FDF7F4;
    --blush:#F3D9D3;
    --gold:#C6A15B;
    --gold-deep:#9C7A38;
    --rose:#C85C7C;
    --rose-deep:#A83E5C;
    --ink:#2E2621;
    --ink-soft:#6B5A50;
    --line:rgba(198,161,91,0.4);
    --radius:22px;
    --shadow: 0 20px 50px -20px rgba(80,45,40,0.25);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; overflow-x:hidden;}
  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Jost', sans-serif;
    font-weight:300;
    line-height:1.6;
    overflow-x:hidden;
  }
  h1,h2,h3,.serif{font-family:'Cormorant Garamond', serif;}
  .script{font-family:'Parisienne', cursive; color:var(--rose); font-weight:400;}
  a{text-decoration:none; color:inherit;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:'Jost', sans-serif; letter-spacing:.28em; text-transform:uppercase;
    font-size:.72rem; color:var(--gold-deep); font-weight:500;
  }
  .diamond{
    display:inline-block; width:6px; height:6px; background:var(--gold);
    transform:rotate(45deg); margin:0 14px;
  }
  .divider{
    display:flex; align-items:center; justify-content:center; gap:0;
    color:var(--gold);
  }
  .divider::before,.divider::after{
    content:''; flex:1; height:1px; background:var(--line); max-width:120px;
  }
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    background:var(--rose); color:#fff; font-family:'Jost',sans-serif;
    letter-spacing:.14em; text-transform:uppercase; font-size:.78rem; font-weight:500;
    padding:16px 34px; border-radius:999px; border:none; cursor:pointer;
    box-shadow:0 14px 30px -10px rgba(200,92,124,0.55);
    transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  }
  .btn:hover{transform:translateY(-3px); background:var(--rose-deep); box-shadow:0 18px 36px -10px rgba(168,62,92,0.6);}
  .btn-ghost{
    background:transparent; border:1px solid var(--gold); color:var(--ink);
    box-shadow:none;
  }
  .btn-ghost:hover{background:rgba(198,161,91,.12); box-shadow:none;}

  /* reveal on scroll */
  .reveal{opacity:0; transform:translateY(24px); transition:opacity .8s ease, transform .8s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1; transform:none; transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ---------- HEADER ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:50;
    background:rgba(251,237,232,0.85); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 32px; max-width:1180px; margin:0 auto;
  }
  .logo{display:flex; align-items:center; gap:0;}
  .logo-mark{
    width:66px; height:66px; display:inline-block; flex-shrink:0;
    background-image:var(--logo-badge-url); background-size:contain; background-repeat:no-repeat; background-position:center;
  }
  .logo-text{line-height:1.1;}
  .logo-text .name{font-family:'Cormorant Garamond',serif; font-size:1rem; letter-spacing:.14em; font-weight:600;}
  .logo-text .role{font-size:.62rem; letter-spacing:.18em; color:var(--gold-deep); text-transform:uppercase;}
  .nav-links{display:flex; gap:34px; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase;}
  .nav-links a{
    position:relative; padding-bottom:4px; font-weight:500;
    background:linear-gradient(135deg,#EFCE8E,#B8863F 55%,#8f6a2c);
    -webkit-background-clip:text; background-clip:text; color:transparent;
    transition:filter .3s ease;
  }
  .nav-links a:hover{filter:brightness(1.25);}
  .nav-cta .btn-ghost{
    border-color:var(--gold);
    background:linear-gradient(135deg,#EFCE8E,#B8863F 55%,#8f6a2c);
    -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  }
  .nav-cta .btn-ghost:hover{
    background:rgba(198,161,91,.12); -webkit-background-clip:border-box; background-clip:border-box;
    -webkit-text-fill-color:var(--gold-deep); color:var(--gold-deep);
  }
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--rose);
    transition:width .3s ease;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-cta{display:flex; align-items:center; gap:18px;}
  .burger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer;}
  .burger span{width:24px; height:2px; background:var(--ink);}

  /* ---------- HERO ---------- */
  .hero{
    padding:170px 0 100px;
    position:relative;
  }
  .hero .wrap{
    display:grid; grid-template-columns:1fr 1.05fr; gap:64px; align-items:center;
  }
  .hero-eyebrow{margin-bottom:22px;}
  .hero h1{
    font-size:clamp(2.4rem, 4.6vw, 3.6rem); font-weight:600; line-height:1.12; color:var(--ink);
  }
  .hero h1 .accent{
    color:var(--rose); display:block; font-weight:700;
  }
  .hero p.lede{
    margin-top:26px; max-width:460px; font-size:1.02rem; color:var(--ink-soft);
  }
  .hero p.lede b{color:var(--rose); font-weight:500;}
  .hero-actions{margin-top:38px; display:flex; gap:18px; flex-wrap:wrap;}

  .mock-stage{position:relative;}
  .laptop{
    background:linear-gradient(160deg,#3a2e28,#1c1512);
    border-radius:18px 18px 6px 6px; padding:14px;
    box-shadow:var(--shadow);
    transform:rotate(-1.2deg);
  }
  .laptop-screen{
    background:var(--site-preview-desktop-url) top center/cover no-repeat, linear-gradient(150deg,#FBEAE4,#F3D6CC 60%, #E9C0B4);
    border-radius:10px; aspect-ratio:16/10.4; overflow:hidden; position:relative;
  }
  .mug-logo{
    width:100%; height:100%; border-radius:50%; display:inline-block; background-image:var(--logo-badge-url);
    background-size:108% 108%; background-repeat:no-repeat; background-position:center;
  }
  .footer-logo{
    width:96px; height:96px; margin:0 auto 14px; background-image:var(--logo-badge-url);
    background-size:contain; background-repeat:no-repeat; background-position:center;
  }
  .screen-deco{
    position:absolute; right:-10%; bottom:-18%; width:60%; aspect-ratio:1;
    background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
  }
  .laptop-base{height:12px; background:linear-gradient(160deg,#2a211c,#171008); border-radius:0 0 10px 10px; margin-top:2px;}

  .phone{
    position:absolute; right:-6%; bottom:-46px; width:120px;
    background:linear-gradient(160deg,#3a2e28,#1c1512); padding:8px; border-radius:20px;
    box-shadow:var(--shadow); transform:rotate(4deg);
  }
  .phone-screen{
    background:var(--site-preview-mobile-url) top center/cover no-repeat, linear-gradient(160deg,#FBEAE4,#F0CCC1);
    border-radius:13px; aspect-ratio:9/18.5; overflow:hidden; position:relative;
  }
  .mug{
    position:absolute; left:-8%; bottom:-30px; width:86px; height:86px; border-radius:50%;
    background:radial-gradient(circle at 30% 30%, #FDF3EE, #EBCFC4);
    display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow);
  }
  .mug span{font-family:'Cormorant Garamond',serif; font-weight:700; color:var(--gold-deep); font-size:1.1rem;}
  .ring-deco{
    position:absolute; top:-40px; right:6%; width:120px; height:120px; border:1px solid var(--gold);
    border-radius:50%; opacity:.55;
  }

  /* ---------- SECTION HEADINGS ---------- */
  .section{padding:100px 0; position:relative;}
  .section-head{text-align:center; max-width:640px; margin:0 auto 56px;}
  .section-head h2{font-size:clamp(1.9rem,3.4vw,2.6rem); font-weight:600; margin-top:12px;}
  .section-head h2 .rose-txt{color:var(--rose);}
  .section-head p{margin-top:16px; color:var(--ink-soft); font-size:.98rem;}
  .section-alt{background:linear-gradient(180deg,var(--cream-2), #FCEFE9);}

  /* ---------- TRUST GRID ---------- */
  .trust-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:36px 28px;
  }
  .trust-card{text-align:center; padding:10px;}
  .icon-ring{
    width:76px; height:76px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
    background:#fff; transition:transform .35s ease, border-color .35s ease;
  }
  .trust-card:hover .icon-ring{transform:translateY(-6px); border-color:var(--gold);}
  .icon-ring svg{width:30px; height:30px; stroke:var(--gold-deep); fill:none; stroke-width:1.4;}
  .trust-card h3{font-family:'Jost',sans-serif; font-size:.9rem; letter-spacing:.1em; text-transform:uppercase; color:var(--rose-deep); font-weight:500;}
  .trust-card p{margin-top:10px; font-size:.88rem; color:var(--ink-soft);}

  .about-strip{
    margin-top:60px; display:flex; align-items:center; justify-content:center; gap:40px;
    background:#fff; border:1px solid var(--line); border-radius:28px; padding:34px 54px;
    max-width:680px; margin-left:auto; margin-right:auto; box-shadow:var(--shadow);
  }
  .about-img{
    width:150px; height:150px; border-radius:50%; flex-shrink:0;
    background-image:var(--woman-url); background-size:cover; background-position:center 22%;
    border:3px solid var(--cream-2); box-shadow:0 0 0 1px var(--line);
  }
  .about-quote{text-align:left;}
  .about-quote .quote-mark{font-family:'Cormorant Garamond',serif; font-size:2.6rem; color:var(--rose); line-height:.4; display:block; margin-bottom:10px;}
  .about-quote p{font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-style:italic; font-weight:500; color:var(--ink); max-width:320px;}
  @media (max-width:640px){
    .about-strip{flex-direction:column; text-align:center; gap:22px; padding:34px 30px;}
    .about-quote{text-align:center;}
    .about-quote p{max-width:none;}
  }

  /* ---------- AFTER LAUNCH ---------- */
  .after-panel{
    border:1px solid var(--line); border-radius:999px; padding:16px 30px;
    display:flex; align-items:center; justify-content:center; gap:14px; max-width:640px; margin:0 auto 50px;
    font-family:'Cormorant Garamond',serif; font-weight:600; font-size:1.15rem; text-transform:uppercase; letter-spacing:.04em;
  }
  .after-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:40px 36px;}
  .after-item{display:flex; gap:18px;}
  .after-item .icon-ring{margin:0; flex-shrink:0; width:58px; height:58px;}
  .after-item .icon-ring svg{width:24px; height:24px;}
  .after-item h4{font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; color:var(--rose-deep); font-weight:500; margin-bottom:6px;}
  .after-item p{font-size:.86rem; color:var(--ink-soft);}

  /* ---------- COMPARISON ---------- */
  .compare-wrap{
    display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center;
  }
  .compare-copy h2{font-size:clamp(1.9rem,3.6vw,2.7rem); font-weight:600; line-height:1.2;}
  .compare-copy h2 .rose-txt{color:var(--rose);}
  .compare-copy p.lede{margin-top:20px; color:var(--ink-soft); max-width:440px;}
  .compare-copy p.lede span{background:linear-gradient(180deg,transparent 60%, rgba(200,92,124,.25) 60%); padding:0 2px;}
  .benefit-list{margin-top:30px; display:flex; flex-direction:column; gap:16px;}
  .benefit-list li{display:flex; align-items:flex-start; gap:14px; list-style:none; font-size:.88rem;}
  .benefit-list b{display:block; color:var(--rose-deep); text-transform:uppercase; font-size:.78rem; letter-spacing:.06em; margin-bottom:2px;}
  .benefit-list .dot{width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;}
  .benefit-list svg{width:16px; height:16px; stroke:var(--gold-deep); fill:none; stroke-width:1.6;}

  table.vs{
    width:100%; border-collapse:collapse; background:#fff; border-radius:var(--radius);
    overflow:hidden; box-shadow:var(--shadow); font-size:.86rem;
  }
  table.vs thead th{
    padding:16px 14px; font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:600;
    text-align:center;
  }
  table.vs thead th:first-child{color:var(--ink-soft); background:var(--blush);}
  table.vs thead th:last-child{color:#fff; background:var(--rose);}
  table.vs td{padding:13px 14px; border-top:1px solid var(--line); text-align:center; color:var(--ink-soft);}
  table.vs td.no::before{content:'✕ '; color:var(--rose);}
  table.vs td.yes::before{content:'✓ '; color:var(--gold-deep);}
  .vs-caption{text-align:center; margin-top:26px;}
  .vs-caption .script{font-size:1.6rem; display:block; margin-bottom:4px;}

  /* ---------- WHY WEBSITE (numbered) ---------- */
  .why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:30px 44px;}
  .why-item{display:flex; gap:18px; padding:22px 0; border-bottom:1px solid var(--line);}
  .why-num{
    font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--gold);
    flex-shrink:0; width:44px;
  }
  .why-item h4{font-size:1rem; font-weight:500; }
  .why-item h4 .rose-txt{color:var(--rose); font-weight:600;}
  .why-item p{margin-top:6px; font-size:.87rem; color:var(--ink-soft);}
  .why-strip{
    margin-top:56px; border:1px solid var(--line); border-radius:999px; padding:20px 40px;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
  }
  .why-strip p{font-size:.95rem;}
  .why-strip .rose-txt{color:var(--rose); font-weight:500;}

  /* ---------- PRICING ---------- */
  .price-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px; align-items:stretch;}
  .price-card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:40px 30px 32px; text-align:center; position:relative;
    display:flex; flex-direction:column;
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .price-card:hover{transform:translateY(-8px); box-shadow:var(--shadow);}
  .price-card.featured{border:2px solid var(--rose);}
  .price-badge{
    position:absolute; top:-15px; left:50%; transform:translateX(-50%);
    background:var(--rose); color:#fff; font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
    padding:8px 20px; border-radius:999px; font-weight:500; white-space:nowrap;
    box-shadow:0 10px 22px -8px rgba(200,92,124,.55);
  }
  .price-card h3{font-family:'Jost',sans-serif; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color:var(--rose-deep); font-weight:500; line-height:1.5;}
  .price-amount{font-family:'Cormorant Garamond',serif; font-size:2.7rem; font-weight:700; color:var(--ink); margin-top:16px;}
  .price-amount span{font-size:1.4rem; font-weight:600; color:var(--gold-deep);}
  .price-from{font-family:'Jost',sans-serif; font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-deep); font-weight:500; display:block; margin-bottom:2px;}
  .price-split{
    margin-top:16px; font-size:.72rem; color:var(--ink-soft); line-height:1.8;
    background:var(--cream); border-radius:12px; padding:10px 14px;
  }
  .price-split b{color:var(--rose-deep); font-weight:600;}
  .price-features{list-style:none; margin:24px 0; text-align:left; flex:1;}
  .price-features li{display:flex; align-items:flex-start; gap:9px; font-size:.85rem; color:var(--ink-soft); padding:7px 0;}
  .price-features li::before{content:'✓'; color:var(--gold-deep); font-weight:700; flex-shrink:0;}
  .price-perks{display:flex; justify-content:space-between; gap:4px; padding-top:20px; border-top:1px solid var(--line); margin-bottom:24px;}
  .price-perk{display:flex; flex-direction:column; align-items:center; gap:6px; font-size:.52rem; letter-spacing:.01em; text-transform:uppercase; color:var(--ink-soft); text-align:center; line-height:1.3;}
  .price-perk svg{width:18px; height:18px; stroke:var(--gold-deep); fill:none; stroke-width:1.4;}
  .price-card .btn{margin-top:auto; width:100%; justify-content:center;}

  .maintenance-panel{
    margin-top:64px; background:var(--cream-2); border:1px solid var(--line); border-radius:28px; padding:44px 40px;
  }
  .maintenance-head{text-align:center; max-width:560px; margin:0 auto 36px;}
  .maintenance-head h3{font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600;}
  .maintenance-head p{margin-top:10px; font-size:.88rem; color:var(--ink-soft);}
  .maint-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .maint-card{background:#fff; border:1px solid var(--line); border-radius:18px; padding:28px 24px; text-align:center; position:relative;}
  .maint-card.featured{border:2px solid var(--rose);}
  .maint-card h4{font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:600;}
  .maint-price{font-family:'Cormorant Garamond',serif; font-size:1.7rem; font-weight:700; color:var(--gold-deep); margin:8px 0 16px;}
  .maint-price span{font-size:.78rem; font-weight:400; color:var(--ink-soft); font-family:'Jost',sans-serif;}
  .maint-card ul{list-style:none; text-align:left; font-size:.8rem; color:var(--ink-soft);}
  .maint-card ul li{padding:5px 0; display:flex; gap:7px;}
  .maint-card ul li::before{content:'✓'; color:var(--gold-deep); flex-shrink:0;}

  /* ---------- CONTACT / CTA ---------- */
  .cta-section{
    background:linear-gradient(160deg,#f6e0d8,#f0c9bb 120%);
    border-radius:36px; margin:0 32px; padding:70px 50px; text-align:center; position:relative; overflow:hidden;
  }
  .cta-section .diamond-icon{
    width:52px;height:52px;border:1px solid var(--gold); transform:rotate(45deg); margin:0 auto 26px;
    display:flex; align-items:center; justify-content:center;
  }
  .cta-section .diamond-icon svg{transform:rotate(-45deg); width:22px; height:22px; stroke:var(--rose); fill:none; stroke-width:1.4;}
  .cta-section h2{font-size:clamp(1.8rem,3.6vw,2.5rem); font-weight:600;}
  .cta-section h2 .rose-txt{color:var(--rose);}
  .cta-section p{margin-top:14px; color:var(--ink-soft); max-width:520px; margin-left:auto; margin-right:auto;}
  .cta-section .btn{margin-top:30px;}

  .contact-strip{
    max-width:1180px; margin:70px auto 0; display:grid; grid-template-columns:1fr 1fr 1fr;
    border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#fff;
  }
  .contact-strip a{
    display:flex; align-items:center; gap:14px; padding:26px 30px; border-right:1px solid var(--line);
    transition:background .3s ease;
  }
  .contact-strip a:last-child{border-right:none;}
  .contact-strip a:hover{background:var(--cream-2);}
  .contact-strip .ic{width:38px; height:38px; flex-shrink:0; border-radius:50%; background:var(--blush);
    display:flex; align-items:center; justify-content:center;}
  .contact-strip svg{width:17px; height:17px; stroke:var(--rose-deep); fill:none; stroke-width:1.5;}
  .contact-strip .label{font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-deep);}
  .contact-strip .value{font-size:.9rem; margin-top:2px; font-weight:400;}

  footer{padding:60px 32px 40px; text-align:center;}
  footer .script{font-size:1.5rem;}
  footer .fine{margin-top:18px; font-size:.72rem; letter-spacing:.08em; color:var(--ink-soft); text-transform:uppercase;}

  /* ---------- DECOR: frame, leaves, sparkles, motion ---------- */
  body::before{
    content:''; position:fixed; inset:0; z-index:-2; pointer-events:none;
    background:
      radial-gradient(circle at 6% 10%, rgba(198,161,91,0.14), transparent 30%),
      radial-gradient(circle at 94% 16%, rgba(200,92,124,0.12), transparent 28%),
      radial-gradient(circle at 12% 88%, rgba(200,92,124,0.10), transparent 26%),
      radial-gradient(circle at 90% 84%, rgba(198,161,91,0.14), transparent 30%);
  }
  .page-frame{display:none;}

  .sparkle-deco{position:absolute; width:16px; height:16px; opacity:.75; pointer-events:none; z-index:1; animation:twinkle 3.2s ease-in-out infinite;}
  .sparkle-deco svg{width:100%; height:100%;}
  @keyframes twinkle{
    0%,100%{opacity:.2; transform:scale(.75) rotate(0deg);}
    50%{opacity:1; transform:scale(1.2) rotate(12deg);}
  }

  .heart-deco{position:absolute; width:14px; height:14px; opacity:.7; pointer-events:none; z-index:1; animation:heartFloat 4.5s ease-in-out infinite;}
  .heart-deco svg{width:100%; height:100%;}
  @keyframes heartFloat{
    0%,100%{opacity:.35; transform:scale(.8) translateY(0);}
    50%{opacity:.9; transform:scale(1.1) translateY(-8px);}
  }

  .leaf-deco{
    position:absolute; width:130px; opacity:.9; pointer-events:none; z-index:0;
    background-image:var(--leaf-sprig-url); background-size:contain; background-repeat:no-repeat; background-position:center;
    aspect-ratio:245/480;
    animation:leafSway 8s ease-in-out infinite;
  }
  @keyframes leafSway{
    0%,100%{transform:rotate(var(--rot,0deg)) scaleX(var(--flip,1)) translateY(0);}
    50%{transform:rotate(calc(var(--rot,0deg) + 2deg)) scaleX(var(--flip,1)) translateY(-10px);}
  }

  .hero h1 .accent{
    background:linear-gradient(90deg,var(--rose) 0%, #E9C878 45%, var(--rose) 100%);
    background-size:220% auto; -webkit-background-clip:text; background-clip:text; color:transparent;
    animation:shimmer 7s linear infinite;
  }
  @keyframes shimmer{to{background-position:-220% center;}}

  @keyframes floatyLaptop{0%,100%{transform:rotate(-1.2deg) translateY(0);}50%{transform:rotate(-1.2deg) translateY(-9px);}}
  @keyframes floatyPhone{0%,100%{transform:rotate(4deg) translateY(0);}50%{transform:rotate(4deg) translateY(-11px);}}
  @keyframes floatyMug{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
  @keyframes spinSlow{to{transform:rotate(360deg);}}
  .laptop{animation:floatyLaptop 7.5s ease-in-out infinite;}
  .phone{animation:floatyPhone 6.5s ease-in-out infinite; animation-delay:.6s;}
  .mug{animation:floatyMug 5.5s ease-in-out infinite; animation-delay:.3s;}
  .ring-deco{animation:spinSlow 44s linear infinite;}

  .btn:not(.btn-ghost){position:relative; isolation:isolate;}
  .hero-actions .btn:not(.btn-ghost)::after,
  .cta-section .btn:not(.btn-ghost)::after{
    content:''; position:absolute; inset:-6px; border-radius:999px; border:1px solid var(--rose);
    opacity:0; z-index:-1; animation:pulseRing 2.8s ease-out infinite;
  }
  @keyframes pulseRing{
    0%{opacity:.45; transform:scale(.92);}
    75%{opacity:0; transform:scale(1.22);}
    100%{opacity:0; transform:scale(1.22);}
  }
  @media (prefers-reduced-motion: reduce){
    .sparkle-deco,.heart-deco,.leaf-deco,.hero h1 .accent,.laptop,.phone,.mug,.ring-deco,
    .hero-actions .btn:not(.btn-ghost)::after,.cta-section .btn:not(.btn-ghost)::after{animation:none;}
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:920px){
    .nav-links, .nav-cta .btn-ghost{display:none;}
    .burger{display:flex;}
    .hero .wrap{grid-template-columns:1fr; text-align:center;}
    .hero p.lede{margin-left:auto; margin-right:auto;}
    .hero-actions{justify-content:center;}
    .mock-stage{margin-top:60px; max-width:420px; margin-left:auto; margin-right:auto;}
    .trust-grid{grid-template-columns:repeat(2,1fr);}
    .after-grid{grid-template-columns:1fr; }
    .compare-wrap{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .price-grid{grid-template-columns:1fr; max-width:420px; margin:0 auto;}
    .price-card.featured{transform:none;}
    .maint-grid{grid-template-columns:1fr;}
    .maintenance-panel{padding:34px 24px;}
    .contact-strip{grid-template-columns:1fr;}
    .contact-strip a{border-right:none; border-bottom:1px solid var(--line);}
    .contact-strip a:last-child{border-bottom:none;}
    .cta-section{margin:0 16px; padding:50px 26px;}
  }
  @media (max-width:560px){
    .trust-grid{grid-template-columns:1fr;}
    .wrap{padding:0 20px;}
  }
