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

  :root {
    --lime:       #BDFF19;
    --dark-green: #2F4006;
    --white:      #ffffff;
    --black:      #111111;
    --muted:      #666666;
    --light-grey: #f5f5f5;
    --border:     #e0e0e0;
    --max-width:  1200px;
  }

  html {
    scroll-behavior: smooth;
    background: #EDEDED;
    margin: 0; padding: 0; width: 100%;
    overflow-x: hidden;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }
  img:not(.hero-phone--left img):not(.hero-phone--right img) {
    max-width: 130%;
  }

  /* Absolute background image — scrolls with page, always covers hero */
  .page-bg {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 100%;
    max-width: none;
    z-index: -1;
    pointer-events: none;
    display: block;
    object-fit: cover;
    object-position: top;
  }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    background: transparent;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0; padding: 0; width: 100%;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; }
  textarea, input, select { font-family: inherit; }

  .container {
    max-width: var(--max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #515151;
    margin-bottom: 4px;
    font-weight: 400;
  }

  /* ================================================================
     NAVIGATION
  ================================================================ */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 200;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }

  .site-nav.scrolled {
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.nav-open {
    background: var(--white);
  }
  .site-nav.nav-open .nav-logo-light { display: none; }
  .site-nav.nav-open .nav-logo-dark { display: block; }
  .site-nav.nav-open .nav-hamburger span { background: var(--black); }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
  }

  .nav-logo { justify-self: start; display: flex; align-items: center; }
  .nav-logo-img { width: 100px; height: auto; display: block; }
  .nav-logo-dark { display: none; }
  .site-nav.scrolled .nav-logo-light { display: none; }
  .site-nav.scrolled .nav-logo-dark { display: block; }

  .nav-links { display: flex; gap: 48px; justify-self: center; }
  .nav-links a {
    font-size: 16px; font-weight: 500; letter-spacing: -0.16px;
    color: rgba(255,255,255,0.85); transition: color 0.2s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .site-nav.scrolled .nav-links a { color: var(--muted); }
  .site-nav.scrolled .nav-links a:hover { color: var(--black); }

  .nav-cta-wrap { justify-self: end; }

  .btn-glass {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500; font-size: 14px; letter-spacing: -0.14px;
    padding: 15px 24px; border-radius: 79px; border: none; cursor: pointer;
    white-space: nowrap; background: rgba(255,255,255,0.32); color: var(--white);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .btn-glass:hover { background: rgba(255,255,255,0.5); }
  .site-nav.scrolled .btn-glass { background: var(--lime); color: var(--dark-green); }

  .nav-hamburger {
    display: none; background: none; border: none; padding: 4px;
    flex-direction: column; gap: 5px; justify-self: end;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1.5px; background: var(--white);
    border-radius: 1px; transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .site-nav.scrolled .nav-hamburger span { background: var(--black); }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-mobile-menu {
    display: flex; flex-direction: column; align-items: center; gap: 28px;
    padding: 36px 32px 40px; background: var(--white);
    position: absolute; top: 100%; left: 0; right: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                visibility 0s linear 0.35s;
  }
  .nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                visibility 0s linear 0s;
  }
  .nav-mobile-menu a { font-size: 17px; color: var(--black); }

  .btn-lime-nav {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px; padding: 13px 26px;
    border-radius: 100px; border: none; cursor: pointer;
    background: var(--lime); color: var(--dark-green); text-decoration: none;
  }

  /* ================================================================
     HERO
  ================================================================ */
  .hero {
    position: relative;
    background: transparent;
    overflow: visible;
    display: flex;
    align-items: stretch;
  }


  .hero-inner {
    position: relative; z-index: 2; overflow: visible;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 120px 60px 80px; gap: 40px;
  }

  .hero-copy { display: flex; flex-direction: column; gap: 40px; }
  .hero-text-group { display: flex; flex-direction: column; gap: 12px; }

  .hero-pill {
    display: inline-flex; align-items: center; padding: 10px 16px;
    border-radius: 100px; background: rgba(255,255,255,0.1);
    font-weight: 500; font-size: 12px; letter-spacing: -0.01em;
    color: var(--white); align-self: flex-start; margin-bottom: 4px;
  }

  .hero h1 {
    font-size: clamp(52px, 5vw, 80px);
    line-height: 0.96; color: var(--white);
    letter-spacing: -1.6px; max-width: 560px;
  }

  .hero-sub {
    font-size: 20px; line-height: 1.5;
    color: rgba(255,255,255,0.94); letter-spacing: -0.4px; max-width: 520px;
  }
  .hero-sub strong { font-weight: 700; }

  .hero-badges { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-badges-row { display: flex; flex-direction: row; gap: 10px; align-items: flex-end; }
  .hero-badges .producthunt-embed { margin-top: 8px; display: block; }

  /* Store badges — SVG images, used in hero and download */
  .store-badge { display: inline-block; text-decoration: none; transition: opacity 0.18s ease; }
  .store-badge:hover { opacity: 0.8; }
  .store-badge img { height: 44px; width: auto; display: block; }

  .hero-phone img {
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    box-shadow: none;
    max-width: none;
  }

  @media (min-width: 961px) {
    .hero-inner {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
    }
    .hero-copy {
      flex: 0 0 55%;
      width: 55%;
      max-width: none;
    }
    .hero-phones {
      flex: 0 0 45%;
      width: 45%;
      position: relative;
      height: 680px;
      overflow: visible;
      align-self: center;
      flex-shrink: 0;
      pointer-events: none;
    }
    .hero-phone--left {
      position: absolute;
      width: 150%;
      max-width: none;
      height: auto;
      left: 74%;
      top: 50%;
      transform: translate(-75%, -55%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-phone--right {
      position: absolute;
      width: 150%;
      max-width: none;
      height: auto;
      left: 50%;
      top: 50%;
      transform: translate(-35%, -42%);
      z-index: 2;
      pointer-events: none;
    }
  }

  /* ================================================================
     HOW IT WORKS
  ================================================================ */
  .how-it-works { background: transparent; padding: 60px 0 120px; text-align: center; }

  .section-heading-group { margin-bottom: 70px; }
  .section-heading-group h2 { font-size: clamp(28px, 3vw, 40px); color: var(--black); }

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

  .step { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .step-number { font-size: 12px; letter-spacing: 0.5em; color: #7c7c7c; font-weight: 400; display: block; }
  .step-icon-title { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .step-icon { width: 32px; height: 32px; object-fit: contain; }
  .step-heading {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 400;
    font-size: clamp(22px, 2.2vw, 32px); color: var(--black); line-height: 1.2;
  }
  .step-body { font-size: 18px; color: rgba(40,40,40,0.8); line-height: 1.4; }

  /* ================================================================
     FEATURES
  ================================================================ */
  .features { background: transparent; padding: 120px 0; }

  .features-header { text-align: center; margin-bottom: 60px; }
  .features-header h2 { font-size: clamp(28px, 3vw, 40px); color: var(--black); }

  .feature-rows { display: flex; flex-direction: column; gap: 40px; }

  .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .feature-row.reverse .feature-text { order: 2; }
  .feature-row.reverse .feature-image { order: 1; }

  .feature-label {
    font-size: 12px; letter-spacing: 6px; text-transform: uppercase;
    color: #515151; margin-bottom: 8px; font-weight: 400; display: block;
  }
  .feature-text h2 {
    font-size: clamp(22px, 2.2vw, 32px); color: var(--black);
    margin-bottom: 20px; line-height: 1.2;
  }
  .feature-text p { font-size: 16px; color: rgba(40,40,40,0.8); line-height: 1.6; }
  .feature-text p + p { margin-top: 14px; }

  .feature-image {
    border-radius: 10px; overflow: hidden;
    aspect-ratio: 500/377; background: var(--light-grey);
  }
  .feature-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* ================================================================
     TESTIMONIALS
  ================================================================ */
  .testimonials { background: transparent; padding: 120px 0; }

  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header h2 { font-size: clamp(28px, 3vw, 40px); color: var(--black); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: 345px 1fr;
    gap: 12px;
    height: 482px;
  }

  .t-right-col { display: flex; flex-direction: column; gap: 12px; }

  .t-right-top {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    height: 251px; flex: none;
  }

  .t-right-bottom { height: 219px; flex: none; }

  .t-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 18px;
    padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100%;
  }

  .t-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400; font-size: 24px; color: var(--black); line-height: 1.3;
  }

  .t-attribution {
    font-size: 12px; font-weight: 400; text-align: right; color: #515151;
    margin-top: 16px; flex-shrink: 0;
  }

  /* ================================================================
     DOWNLOAD
  ================================================================ */
  .download { background: transparent; padding: 120px 0; text-align: center; }

  .download-header { margin-bottom: 16px; }
  .download-header h2 { font-size: clamp(28px, 3vw, 40px); color: var(--black); margin-top: 4px; }

  .download-sub {
    font-size: 16px; color: rgba(40,40,40,0.8); line-height: 1.5;
    margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto;
  }

  .download-badges {
    display: flex; gap: 12px; align-items: center; justify-content: center;
  }

  .download-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 10px;
    background: var(--black); color: var(--white);
    transition: opacity 0.18s ease; text-decoration: none; /* legacy, kept for fallback */
  }
  .download-badge:hover { opacity: 0.75; }
  .download-badge-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
  .download-badge-text { display: flex; flex-direction: column; text-align: left; }
  .download-badge-sub {
    font-size: 9px; opacity: 0.6; text-transform: uppercase;
    letter-spacing: 0.05em; line-height: 1; font-weight: 500;
  }
  .download-badge-name { font-size: 15px; font-weight: 600; line-height: 1.3; }

  /* ================================================================
     PRICING
  ================================================================ */
  .pricing { background: transparent; padding: 120px 0; text-align: center; }

  .pricing-header { margin-bottom: 16px; }
  .pricing-header h2 { font-size: clamp(28px, 3vw, 40px); color: var(--black); margin-top: 4px; }

  .pricing-sub {
    font-size: 16px; color: rgba(40,40,40,0.8); line-height: 1.5;
    margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
  }
  .pricing-sub p + p { margin-top: 6px; }

  .pricing-cards {
    display: flex; gap: 12px; max-width: 836px; margin: 0 auto;
    align-items: stretch;
  }

  .pricing-card {
    flex: 1; border-radius: 18px; padding: 24px;
    display: flex; flex-direction: column; justify-content: space-between;
    gap: 32px; text-align: left;
  }
  .pricing-card--free        { background: var(--white); border: 1px solid rgba(0,0,0,0.14); }
  .pricing-card--credits      { background: #e0edbe; border: 1px solid rgba(0,0,0,0.1); }
  .pricing-card--subscription { background: #cbd7d2; border: 1px solid rgba(0,0,0,0.1); }

  .pricing-card-top {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
    row-gap: 16px;
  }

  .pricing-card-icon { grid-column: 1; grid-row: 1; align-self: center; width: 24px; height: 24px; display: block; }
  .pricing-card-icon svg { width: 24px; height: 24px; display: block; stroke: var(--black); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .pricing-card-title {
    grid-column: 2; grid-row: 1; align-self: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400; font-size: 24px; color: var(--black);
  }

  .pricing-card-list { grid-column: 1 / -1; grid-row: 2; list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .pricing-card-list li {
    font-size: 15px; color: var(--black); line-height: 1.4;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .pricing-card-list li::before {
    content: '•'; font-size: 12px; color: rgba(0,0,0,0.4);
    flex-shrink: 0; margin-top: 2px;
  }

  .pricing-card-cta {
    display: block; width: 100%; text-align: center;
    font-family: 'Inter', system-ui, sans-serif; font-weight: 700; font-size: 14px;
    color: var(--black); padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.12); text-decoration: none;
  }

  /* ================================================================
     FAQ
  ================================================================ */
  .faq { background: transparent; padding: 120px 0; }
  .faq-inner { max-width: 720px; margin: 0 auto; }

  .faq-header { margin-bottom: 56px; text-align: center; }
  .faq-header h2 { font-size: clamp(28px, 3.5vw, 40px); color: var(--black); }

  .faq-item { border-top: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }

  .faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 22px 0; background: none; border: none;
    text-align: left; font-weight: 600; font-size: 16px;
    color: var(--black); gap: 20px; transition: color 0.2s ease;
  }
  .faq-question:hover { color: var(--dark-green); }

  .faq-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease; position: relative;
  }
  .faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background: var(--black); border-radius: 1px;
  }
  .faq-icon::before { width: 12px; height: 1.5px; }
  .faq-icon::after { width: 1.5px; height: 12px; transition: opacity 0.3s ease; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-answer-wrap { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
  .faq-answer { padding-bottom: 24px; font-size: 16px; color: #444; line-height: 1.75; max-width: 640px; }

  /* ================================================================
     CONTACT
  ================================================================ */
  .contact { background: transparent; padding: 120px 0; }
  .contact-inner { max-width: 720px; margin: 0 auto; }

  .contact-header { margin-bottom: 48px; text-align: center; }
  .contact-header h2 {
    font-size: clamp(28px, 3.5vw, 40px); color: var(--black); margin-bottom: 12px;
  }
  .contact-sub { font-size: 16px; color: rgba(40,40,40,0.8); line-height: 1.5; }

  .form-group { margin-bottom: 16px; }

  .form-label {
    display: block; font-weight: 600; font-size: 12px;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 8px;
  }

  .form-input, .form-textarea, .form-select {
    width: 100%; padding: 12px 16px;
    border: 1px solid #e0e0e0; border-radius: 8px;
    background: var(--white); font-size: 16px; color: var(--black);
    outline: none; transition: border-color 0.2s ease;
    -webkit-appearance: none; appearance: none; box-shadow: none; resize: none;
  }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--lime);
  }

  .form-select {
    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='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
  }

  .form-textarea { min-height: 140px; line-height: 1.6; }

  .form-input.invalid, .form-textarea.invalid, .form-select.invalid {
    border-color: #e05252;
  }
  .form-field-error {
    display: none; font-size: 12px; color: #e05252; margin-top: 4px;
  }
  .form-field-error.visible { display: block; }

  .form-submit {
    padding: 16px 32px; background: var(--lime); color: var(--dark-green);
    border: none; border-radius: 100px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: opacity 0.18s ease; margin-top: 8px;
  }
  .form-submit:hover { opacity: 0.82; }

  .form-success {
    display: none; padding: 20px; background: var(--white);
    border: 1px solid var(--border); border-radius: 8px;
    text-align: center; font-size: 15px; color: var(--dark-green);
  }
  .form-success.visible { display: block; }

  /* ================================================================
     FOOTER
  ================================================================ */
  .site-footer {
    background: transparent; padding: 60px 0 40px;
    position: relative; overflow: visible;
  }

  .footer-inner {
    position: relative; z-index: 1;
    max-width: 1200px; width: 100%;
    margin-left: auto; margin-right: auto;
    padding-left: 24px; padding-right: 24px;
    box-sizing: border-box;
  }

  .footer-row1 {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; margin-bottom: 24px;
  }

  .footer-logo img { height: 46px; width: 120px; object-fit: contain; object-position: left; display: block; }

  .footer-nav { display: flex; gap: 61px; align-items: center; }
  .footer-nav a {
    font-size: 16px; font-weight: 500; color: var(--black);
    transition: opacity 0.2s ease;
  }
  .footer-nav a:hover { opacity: 0.5; }

  .footer-socials { display: flex; gap: 24px; align-items: center; }
  .footer-social-icon {
    width: 24px; height: 24px;
    transition: opacity 0.2s ease; display: block; flex-shrink: 0;
  }
  .footer-social-icon:hover { opacity: 0.5; }
  .footer-social-icon img { width: 24px; height: 24px; display: block; }

  .footer-row2 {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; padding-top: 24px;
  }

  .footer-copy, .footer-legal-links {
    font-size: 14px; font-weight: 500; color: var(--black);
  }

  .footer-legal-links { display: flex; gap: 8px; align-items: center; }
  .footer-legal-links a { transition: opacity 0.2s ease; color: var(--black); }
  .footer-legal-links a:hover { opacity: 0.5; }
  .footer-legal-links span { color: var(--muted); }

  /* ================================================================
     TOOLTIPS
  ================================================================ */
  .tooltip-wrap { position: relative; display: inline-flex; align-items: flex-end; }
  .tooltip-tip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 12px;
    border-radius: 100px;
    padding: 6px 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 300;
  }
  .tooltip-wrap:hover .tooltip-tip { opacity: 1; }
  .tooltip-tip.visible { opacity: 1; }

  /* ================================================================
     REVEAL
  ================================================================ */
  .reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ================================================================
     RESPONSIVE
  ================================================================ */
  @media (max-width: 1200px) {
    .hero-inner { padding: 120px 40px 80px; }
    .testimonials-grid { grid-template-columns: 280px 1fr; }
    .page-bg {
      min-width: 1400px;
      width: 1400px;
      max-width: none;
      left: 50%;
      transform: translateX(-50%);
    }
    .pricing-cards {
      flex-direction: column;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
    .pricing-card { width: 100%; }
  }

  @media (max-width: 960px) {
    .nav-inner { grid-template-columns: 1fr auto; }
    .nav-links, .nav-cta-wrap { display: none; }
    .nav-hamburger { display: flex; }

    .hero-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 120px 32px 80px;
      text-align: center;
      gap: 32px;
    }
    .hero-copy {
      width: 100%;
      max-width: none;
      align-items: center;
      text-align: center;
    }
    .hero-pill { align-self: center; }
    .hero h1, .hero-sub { max-width: 100%; text-align: center; }
    .hero-badges { align-items: center; }
    .hero-badges-row { justify-content: center; }
    .hero-badges .producthunt-embed { margin-top: 8px; }

    /* Telefoner centrerade, staplas under knappar */
    .hero-phones {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: visible;
      flex-shrink: 0;
      pointer-events: none;
      margin-top: 0;
    }
    .hero-phone--left {
      position: absolute;
      width: 55vw;
      max-width: none;
      height: auto;
      left: 68%;
      top: 0;
      transform: translateX(-90%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-phone--right {
      position: absolute;
      width: 55vw;
      max-width: none;
      height: auto;
      left: 40%;
      top: 30px;
      transform: translateX(-20%);
      z-index: 2;
      pointer-events: none;
    }

    .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 48px; }

    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse .feature-text { order: unset; }
    .feature-row.reverse .feature-image { order: unset; }

    .testimonials-grid { grid-template-columns: 1fr; height: auto; }
    .t-right-top { grid-template-columns: 1fr; height: auto; }
    .t-right-bottom { height: auto; }
    .t-card { min-height: 200px; }

    .footer-inner { padding: 0 32px; }
    .footer-row1 { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
    .footer-row2 { flex-direction: row; justify-content: space-between; flex-wrap: nowrap; align-items: center; }
    .footer-nav { gap: 32px; flex-wrap: wrap; justify-content: center; }
  }

  @media (max-width: 550px) {
    .hero-phones { height: 240px; }
    .hero-phone--left {
      width: 100vw;
      left: 81%;
      top: -20px;
      transform: translateX(-90%);
    }
    .hero-phone--right {
      width: 100vw;
      left: 28%;
      top: 42px;
      transform: translateX(-20%);
    }
  }

  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
    .hero-inner { padding: 100px 20px 60px; }
    .hero h1 { font-size: 46px; }
    .footer-inner { padding: 0 20px; }
    .footer-nav { gap: 20px; }
    .download-badges { flex-direction: column; align-items: center; }
  }

  @media (max-width: 480px) {
    .footer-row2 {
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
    }
    .footer-legal-links { justify-content: center; }
  }

  .form-privacy {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .form-privacy a { color: #888; text-decoration: underline; }
  .grecaptcha-badge { visibility: hidden !important; }
