
    :root {
      --cream: #f8f0e8;
      /* --cream-soft: #fdfaf6; */
      --cream-soft: #fafafad4;
      --ink: #201512;
      --ink-soft: #4a3c38;
      --magenta: #a71752;
      --magenta-deep: #7e1140;
      --pink: #d65688;
      --blush: #f6dde6;
      --blush-deep: #efc7d7;
      --amber: #f2b077;
      --line: rgba(32, 21, 18, 0.1);
      --shadow: 0 20px 50px -25px rgba(167, 23, 82, 0.35);
      --radius-lg: 32px;
      --radius-md: 20px;
      --radius-sm: 12px;
      --font-display: 'Quicksand', sans-serif;
      --font-body: 'Karla', sans-serif;
      --wrap: 1180px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.05;
      margin: 0;
      color: var(--ink);
    }

    p {
      margin: 0;
    }

    .wrap {
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 28px;
    }

    .lowercase {
      text-transform: lowercase;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: lowercase;
      color: var(--magenta);
      background: var(--blush);
      padding: 7px 16px 7px 12px;
      border-radius: 999px;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--magenta);
      flex-shrink: 0;
    }

    .section-head {
      max-width: 620px;
      margin-bottom: 46px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin-bottom: 16px;
    }

    .section-head p {
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    section {
      padding: 50px 0 50px;
      position: relative;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      padding: 15px 28px;
      border-radius: 999px;
      border: 2px solid transparent;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--magenta);
      color: var(--cream-soft);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: var(--magenta-deep);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      border-color: var(--magenta);
      color: var(--magenta);
      transform: translateY(-2px);
    }

    .btn-block {
      width: 100%;
      justify-content: center;
    }

    .btn svg {
      width: 16px;
      height: 16px;
      transition: transform .25s ease;
    }

    .btn:hover svg {
      transform: translateX(3px);
    }

    :focus-visible {
      outline: 3px solid var(--magenta);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* ---------- NAV ---------- */
    header.nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248, 240, 232, 0.78);
      backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      max-width: var(--wrap);
      margin: 0 auto;
    }

    .logo {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 22px;
      display: flex;
      align-items: baseline;
      gap: 3px;
    }

    .logo span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--magenta);
      display: inline-block;
      margin-left: 2px;
      transform: translateY(-9px);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
      font-weight: 500;
      font-size: 15px;
    }

    .nav-links a {
      position: relative;
      padding: 4px 0;
      color: var(--ink-soft);
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--magenta);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
      content: '';
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      position: relative;
      transition: all .25s ease;
    }

    .nav-toggle span::before {
      position: absolute;
      top: -7px;
    }

    .nav-toggle span::after {
      position: absolute;
      top: 7px;
    }

    .nav-toggle.open span {
      background: transparent;
    }

    .nav-toggle.open span::before {
      transform: rotate(45deg);
      top: 0;
    }

    .nav-toggle.open span::after {
      transform: rotate(-45deg);
      top: 0;
    }

    /* ---------- HERO ---------- */
    .hero {
      padding: 50px 0 50px;
      overflow: hidden;
    }

    .glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: .55;
      z-index: 0;
      pointer-events: none;
    }

    .glow-1 {
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, var(--amber), transparent 70%);
      top: -220px;
      right: -120px;
      animation: drift1 26s ease-in-out infinite;
    }

    .glow-2 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, var(--pink), transparent 70%);
      top: 120px;
      left: -160px;
      opacity: .4;
      animation: drift2 32s ease-in-out infinite;
    }

    @keyframes drift1 {

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

      50% {
        transform: translate(-60px, 60px) scale(1.12);
      }
    }

    @keyframes drift2 {

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

      50% {
        transform: translate(50px, -40px) scale(1.08);
      }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: row-reverse;
      gap: 40px;
      align-items: center;
    }

    .hero-inner div{flex:1;}

    .hero h1 {
      font-size: clamp(30px, 5vw, 68px);
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--magenta);
      position: relative;
      white-space: nowrap;
    }

    .hero-sub {
      font-size: 18px; font-weight: normal;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 480px;
      margin-bottom: 34px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .trust-strip {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13.5px;
      color: var(--ink-soft);
    }

    .trust-strip li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .trust-strip svg {
      width: 16px;
      height: 16px;
      color: var(--magenta);
      flex-shrink: 0;
    }

    .hero-art {
      position: relative;
    }

    .hero-card {
      background: var(--cream-soft);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 0 40px 80px -40px rgba(32, 21, 18, 0.35);
      border: 1px solid var(--line);
      transform: rotate(-2deg);
      position: relative;
    }

    .hero-card .browser-dots {
      display: flex;
      gap: 6px;
      margin-bottom: 18px;
    }

    .hero-card .browser-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--blush-deep);
    }

    .hero-card .browser-dots span:nth-child(1) {
      background: var(--pink);
    }

    .hero-card .fake-hero {
      height: 130px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--magenta), var(--pink));
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }

    .fake-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), transparent 60%);
    }

    .fake-line {
      height: 9px;
      border-radius: 6px;
      background: var(--blush-deep);
      margin-bottom: 10px;
    }

    .fake-line.w60 {
      width: 60%;
    }

    .fake-line.w40 {
      width: 40%;
    }

    .fake-line.w80 {
      width: 80%;
      background: var(--blush);
    }

    .hero-badge {
      position: absolute;
      bottom: -22px;
      left: -26px;
      background: var(--ink);
      color: var(--cream-soft);
      padding: 14px 18px;
      border-radius: var(--radius-md);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13.5px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
      transform: rotate(3deg);
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber);
    }

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

    .service-card {
      background: var(--cream-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 30px 26px;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: transparent;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--blush);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--magenta);
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
    }

    .service-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 14.5px;
      line-height: 1.6;
      color: var(--ink-soft);
    }

    /* ---------- HOW IT WORKS ---------- */
    .how {
      background: var(--ink);
      color: var(--cream);
      border-radius: 44px;
      margin: 0 20px;
      padding: 50px 50px 70px;
    }

    .how .wrap {
      padding: 0 8px;
    }

    .how .section-head h2,
    .how .section-head p {
      color: var(--cream-soft);
    }

    .how .eyebrow {
      background: rgba(214, 86, 136, 0.18);
      color: var(--pink);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-top: 10px;
    }

    .step-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--pink);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .step-num::before {
      content: attr(data-n);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1.5px solid rgba(214, 86, 136, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream-soft);
    }

    .step h3 {
      color: var(--cream-soft);
      font-size: 20px;
      margin-bottom: 10px;
    }

    .step p {
      color: rgba(248, 240, 232, 0.65);
      font-size: 14.5px;
      line-height: 1.65;
    }

    .step-line {
      position: absolute;
      top: 17px;
      left: 100%;
      width: 30px;
      height: 1px;
      background: rgba(214, 86, 136, 0.4);
    }

    @media (max-width:900px) {
      .step-line {
        display: none;
      }
    }

    /* ---------- PRICING ---------- */
    .pricing-note {
      background: var(--blush);
      border-radius: var(--radius-md);
      padding: 22px 26px;
      font-size: 15px;
      line-height: 1.65;
      color: var(--ink-soft);
      margin-bottom: 44px;
      border: 1px dashed var(--blush-deep);
    }

    .pricing-note strong {
      color: var(--magenta);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .price-card {
      background: var(--cream-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .price-card.featured {
      background: var(--ink);
      color: var(--cream-soft);
      box-shadow: 0 30px 60px -30px rgba(167, 23, 82, 0.55);
    }

    .price-card.featured h3,
    .price-card.featured .price-amount {
      color: var(--cream-soft);
    }

    .price-card.featured .price-desc {
      color: rgba(248, 240, 232, 0.65);
    }

    .price-tag {
      position: absolute;
      top: -13px;
      right: 30px;
      background: var(--magenta);
      color: var(--cream-soft);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: 999px;
      letter-spacing: .03em;
    }

    .price-card h3 {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .price-desc {
      font-size: 14px;
      color: var(--ink-soft);
      margin-bottom: 22px;
    }

    .price-amount {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 34px;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .price-amount span {
      font-size: 15px;
      font-weight: 600;
      opacity: .6;
    }

    .price-fine {
      font-size: 12.5px;
      color: var(--ink-soft);
      margin-bottom: 24px;
    }

    .price-card.featured .price-fine {
      color: rgba(248, 240, 232, 0.55);
    }

    .price-list {
      margin-bottom: 28px;
      flex-grow: 1;
    }

    .price-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14.5px;
      line-height: 1.5;
      padding: 8px 0;
      border-top: 1px solid var(--line);
    }

    .price-card.featured .price-list li {
      border-top: 1px solid rgba(248, 240, 232, 0.12);
    }

    .price-list li:first-child {
      border-top: none;
    }

    .price-list svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--magenta);
    }

    .price-card.featured .price-list svg {
      color: var(--pink);
    }

    /* ---------- REDESIGN / SLIDER ---------- */
    .compare-wrap {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      aspect-ratio: 16/10;
      background: var(--ink);
      cursor: ew-resize;
      user-select: none;
      border: 1px solid var(--line);
    }

    .compare-panel {
      position: absolute;
      inset: 0;
    }

    .compare-panel .browser-dots {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }

    .compare-panel .browser-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .panel-before {
      background: #e7e0da;
    }

    .panel-before .browser-dots span {
      background: #b9afa6;
    }

    .panel-before .b-block {
      background: #cfc6bd;
    }

    .panel-before .b-line {
      background: #bdb2a7;
      height: 8px;
      margin-bottom: 9px;
      border-radius: 2px;
    }

    .panel-before .b-nav {
      display: flex;
      gap: 14px;
      margin-bottom: 20px;
    }

    .panel-before .b-nav span {
      width: 44px;
      height: 7px;
      background: #bdb2a7;
      border-radius: 2px;
    }

    .panel-before .b-hero {
      height: 80px;
      margin-bottom: 16px;
    }

    .panel-before .b-btn {
      width: 90px;
      height: 26px;
      background: #a89d92;
      border-radius: 3px;
      margin-top: 6px;
    }

    .panel-after {
      background: var(--cream-soft);
      clip-path: inset(0 50% 0 0);
    }

    .panel-after .browser-dots span:nth-child(1) {
      background: var(--pink);
    }

    .panel-after .browser-dots span:nth-child(2) {
      background: var(--amber);
    }

    .panel-after .browser-dots span:nth-child(3) {
      background: var(--blush-deep);
    }

    .panel-after .a-nav {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: center;
    }

    .panel-after .a-nav span {
      height: 8px;
      background: var(--blush-deep);
      border-radius: 6px;
    }

    .panel-after .a-nav span:first-child {
      width: 50px;
      background: var(--magenta);
    }

    .panel-after .a-nav span:not(:first-child) {
      width: 36px;
    }

    .panel-after .a-hero {
      height: 90px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--magenta), var(--pink));
      margin-bottom: 18px;
    }

    .panel-after .a-line {
      height: 8px;
      border-radius: 6px;
      background: var(--blush);
      margin-bottom: 10px;
    }

    .panel-after .a-btn {
      width: 110px;
      height: 30px;
      background: var(--magenta);
      border-radius: 999px;
      margin-top: 8px;
    }

    .compare-label {
      position: absolute;
      top: 16px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(32, 21, 18, 0.55);
      color: #fff;
      backdrop-filter: blur(4px);
    }

    .label-before {
      left: 16px;
    }

    .label-after {
      right: 16px;
    }

    .compare-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 0;
      z-index: 5;
    }

    .compare-handle::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: -1px;
      width: 2px;
      background: var(--cream-soft);
    }

    .handle-grip {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--cream-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      color: var(--magenta);
      pointer-events: none;
    }

    .handle-grip svg {
      width: 18px;
      height: 18px;
    }

    input.compare-range {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: ew-resize;
      margin: 0;
    }

    .compare-hint {
      text-align: center;
      font-size: 13.5px;
      color: var(--ink-soft);
      margin-top: 18px;
      font-family: var(--font-display);
      font-weight: 600;
    }

    .view-more {
      text-align: center;
      margin-top: 34px;
    }

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

    .testi-card {
      background: var(--cream-soft);
      border-radius: var(--radius-md);
      padding: 30px 26px;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .testi-quote {
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--ink);
    }

    .testi-quote::before {
      content: '"';
      color: var(--pink);
      font-family: var(--font-display);
      font-size: 26px;
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pink), var(--amber));
      flex-shrink: 0;
    }

    .testi-person .name {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
    }

    .testi-person .role {
      font-size: 12.5px;
      color: var(--ink-soft);
    }

    /* ---------- FAQ ---------- */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--cream-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 26px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-plus {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--blush);
      color: var(--magenta);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .25s ease;
    }

    .faq-item[open] .faq-plus {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 26px 22px;
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    /* ---------- CONTACT ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: clamp(30px, 4vw, 42px);
      margin-bottom: 18px;
    }

    .contact-info p {
      font-size: 16px;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: 30px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      font-size: 15px;
    }

    .contact-detail .ico {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background: var(--blush);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--magenta);
      flex-shrink: 0;
    }

    .contact-detail .ico svg {
      width: 17px;
      height: 17px;
    }

    .form-card {
      background: var(--cream-soft);
      border-radius: var(--radius-lg);
      padding: 38px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      margin-bottom: 18px;
    }

    .field label {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .field input,
    .field textarea {
      width: 100%;
      font-family: var(--font-body);
      font-size: 14.5px;
      padding: 13px 16px;
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--line);
      background: var(--cream);
      color: var(--ink);
      resize: vertical;
      transition: border-color .2s ease;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--magenta);
      outline: none;
    }

    .form-note {
      font-size: 12.5px;
      color: var(--ink-soft);
      margin-top: 14px;
      text-align: center;
    }

    #formStatus {
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      color: var(--magenta);
      margin-top: 14px;
      display: none;
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 60px 0 34px;
      border-top: 1px solid var(--line);
      margin-top: 60px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    .footer-tag {
      max-width: 300px;
      font-size: 14px;
      color: var(--ink-soft);
      margin-top: 14px;
      line-height: 1.6;
    }

    .footer-cols {
      display: flex;
      gap: 64px;
      flex-wrap: wrap;
    }

    .footer-col h4 {
      font-size: 13px;
      margin-bottom: 14px;
      color: var(--ink-soft);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      font-size: 14.5px;
      color: var(--ink);
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--magenta);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      font-size: 13px;
      color: var(--ink-soft);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ---------- REVEAL ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .glow-1,
      .glow-2 {
        animation: none;
      }

      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 980px) {
      .hero-inner {
        flex-direction: column;
      }

      .hero-art {
        order: -1;
        max-width: 420px;
        margin: 0 auto 20px;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      section {
        padding: 50px 0;
      }

      .nav-links {
        position: fixed;
        top: 71px;
        left: 0;
        right: 0;
        background: #fafafa;
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 28px 30px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%);
        transition: transform .3s ease;
        z-index: 99;
      }

      .nav-links.open {
        transform: translateY(0);
      }

      .nav-links a {
        font-size: 17px;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-cta .btn-ghost {
        display: none;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .how {
        border-radius: 28px;
        margin: 0 12px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .footer-top {
        flex-direction: column;
      }
    }

.back-link{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
}

.d-flex{display: flex;}
.flex-row{flex-direction: row;}
@media (max-width: 720px) {
  .flex-row{flex-direction: column;}
}
.contact-page section{flex:1; padding: 80px clamp(30px, 7vw, 112px) 100px;}
.contact-page h1{
  margin-bottom: 15px;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-size: clamp(35px, 2vw, 55px);
  font-weight: 600;
  line-height: 0.84;
}
.contact-page .contact-form-col{flex:1; margin-top: 40px;}

.contact-page .buttons-grid{
  flex:1;
  justify-content: center;
  align-items: center;
  color: white; padding: 6rem 0;
  background-color: var(--magenta);
}

.contact-page .contact-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 40px #053c0f33;
}
.contact-page .contact-button {
  color: black;
  text-align: left;
  background-color: var(--cream-soft);
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 15px;

  padding: 18px;

  transition: transform 0.22s,box-shadow 0.22s;

  display: grid;
}