@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/dm-sans-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-display-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/playfair-display-800-normal.woff2') format('woff2');
}

:root {
      --bg: #f5f0e8;
      --bg2: #ede7d9;
      --surface: rgba(255,255,255,0.78);
      --surface-strong: #fffcf7;
      --text: #241b11;
      --muted: #7a6a58;
      --muted2: #a8957f;
      --line: #ddd0bb;
      --primary: #6b4c32;
      --primary-dark: #4e3420;
      --primary-light: #8b6444;
      --accent: #c9a87a;
      --accent-light: rgba(201,168,122,0.18);
      --green: #3a6b45;
      --green-light: rgba(58,107,69,0.12);
      --red: #c85032;
      --shadow: 0 20px 60px rgba(60,40,20,0.13);
      --shadow-sm: 0 4px 20px rgba(60,40,20,0.08);
      --radius-xl: 28px;
      --radius-lg: 18px;
      --radius-md: 12px;
      --max: 1200px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.1;
      color: var(--text);
    }

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

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(245,240,232,0.88);
      border-bottom: 1px solid rgba(221,208,187,0.7);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 68px;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }

    .brand-mark {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--primary-dark);
      letter-spacing: -0.01em;
    }

    .brand-tag {
      font-size: 0.82rem;
      color: var(--muted2);
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 0.92rem;
      color: var(--muted);
      font-weight: 500;
    }

    .nav a:hover { color: var(--text); }
    .nav .demo-link { color: var(--text); font-weight: 700; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1.5px solid transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(150deg, var(--primary-light), var(--primary-dark));
      color: #fff;
      box-shadow: 0 8px 24px rgba(78,52,32,0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(78,52,32,0.34);
    }

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

    .btn-ghost:hover {
      background: rgba(255,255,255,0.7);
      border-color: var(--accent);
    }

    .btn-lg {
      min-height: 54px;
      padding: 0 30px;
      font-size: 1rem;
    }

    .hero {
      padding: 72px 0 56px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,122,0.14), transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(107,76,50,0.10), transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--accent-light);
      border: 1px solid rgba(201,168,122,0.4);
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-block;
    }

    h1 {
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      color: var(--primary-dark);
    }

    .hero-h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .hero-lead {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 55ch;
      margin-bottom: 28px;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--muted2);
      font-size: 0.88rem;
    }

    .hero-trust-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .hero-trust span { color: var(--green); font-weight: 700; }

    .app-mock-wrap {
      background: var(--surface);
      border: 1px solid rgba(221,208,187,0.9);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      overflow: hidden;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .app-mock-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 44px;
      padding: 0 16px;
      background: rgba(255,255,255,0.9);
      border-bottom: 1px solid rgba(221,208,187,0.9);
    }

    .app-dots { display: flex; gap: 6px; }
    .app-dots span { width: 11px; height: 11px; border-radius: 50%; }
    .app-dots span:nth-child(1) { background: #f4b64a; }
    .app-dots span:nth-child(2) { background: #6ebd6e; }
    .app-dots span:nth-child(3) { background: #5b9de8; }

    .app-mock-title {
      font-size: 0.82rem;
      color: var(--muted2);
      font-weight: 500;
    }

    .app-body {
      display: grid;
      grid-template-columns: 64px 1fr;
      min-height: 440px;
    }

    .app-sidebar {
      background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
      padding: 16px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .app-sidebar-logo {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255,255,255,0.14);
      display: grid;
      place-items: center;
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .app-nav-item {
      width: 100%;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .app-nav-item.active { background: rgba(255,255,255,0.20); }
    .app-nav-item svg { width: 18px; height: 18px; color: rgba(255,255,255,0.76); }
    .app-nav-item.active svg { color: #fff; }

    .app-content {
      padding: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(245,240,232,0.3));
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .app-top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .app-fascicolo-label {
      font-size: 0.8rem;
      color: var(--muted2);
      margin-bottom: 2px;
    }

    .app-fascicolo-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
    }

    .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .badge-active {
      background: var(--green-light);
      color: var(--green);
      border: 1px solid rgba(58,107,69,0.2);
    }

    .badge-urgent {
      background: rgba(200,80,50,0.10);
      color: var(--red);
      border: 1px solid rgba(200,80,50,0.18);
    }

    .badge-expiring {
      background: rgba(201,168,122,0.18);
      color: var(--primary);
      border: 1px solid rgba(201,168,122,0.35);
    }

    .app-kpi {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .kpi-card {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(221,208,187,0.9);
      border-radius: var(--radius-md);
      padding: 12px 14px;
    }

    .kpi-label {
      font-size: 0.76rem;
      color: var(--muted2);
      margin-bottom: 6px;
    }

    .kpi-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-dark);
    }

    .app-cards {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 10px;
    }

    .app-card {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(221,208,187,0.9);
      border-radius: var(--radius-md);
      padding: 14px;
    }

    .app-card-label {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 10px;
    }

    .mock-bar {
      height: 9px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(107,76,50,0.18), rgba(201,168,122,0.3));
      margin-bottom: 8px;
    }

    .scadenza-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(221,208,187,0.6);
      font-size: 0.8rem;
    }

    .scadenza-item:last-child { border-bottom: none; }
    .scadenza-name { color: var(--text); font-weight: 600; }
    .scadenza-date { color: var(--muted2); font-size: 0.75rem; }

    .proof-strip {
      padding: 28px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.45);
    }

    .proof-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 38px;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .proof-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary-dark);
      line-height: 1;
      text-align: center;
    }

    .proof-label {
      font-size: 0.85rem;
      color: var(--muted);
      text-align: center;
    }

    .proof-divider {
      width: 1px;
      height: 44px;
      background: var(--line);
    }

    .section { padding: 64px 0; }
    .section.compact-top { padding-top: 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 1.06rem;
      color: var(--muted);
      max-width: 64ch;
      line-height: 1.65;
    }

    .section-head { margin-bottom: 40px; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .feat-card,
    .audience-card,
    .panel,
    .notice-card {
      background: var(--surface);
      border: 1px solid rgba(221,208,187,0.88);
      box-shadow: var(--shadow-sm);
    }

    .feat-card {
      border-radius: var(--radius-lg);
      padding: 26px 22px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .feat-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--accent-light);
      border: 1px solid rgba(201,168,122,0.3);
      display: grid;
      place-items: center;
      margin-bottom: 16px;
    }

    .feat-icon svg { width: 20px; height: 20px; }
    .feat-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .feat-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .audience-card {
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: transform 0.2s;
    }

    .audience-card:hover { transform: translateY(-2px); }

    .audience-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--accent-light);
      border: 1px solid rgba(201,168,122,0.3);
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      font-size: 1.1rem;
    }

    .audience-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .audience-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .panel {
      border-radius: var(--radius-xl);
      padding: 32px;
    }

    .panel h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 12px; }
    .panel p { color: var(--muted); line-height: 1.65; }

    .panel-list {
      list-style: none;
      margin-top: 20px;
      display: grid;
      gap: 11px;
    }

    .panel-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.96rem;
      color: var(--muted);
    }

    .panel-list li::before {
      content: '';
      display: block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green-light);
      border: 1.5px solid rgba(58,107,69,0.3);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 10l2 2 4-4' stroke='%233a6b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 18px;
      background-repeat: no-repeat;
      background-position: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .panel-list.negatives li::before {
      background: rgba(200,80,50,0.10);
      border-color: rgba(200,80,50,0.2);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='%23c85032' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    .quote-panel {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: var(--radius-xl);
      padding: 36px;
      box-shadow: var(--shadow);
      color: rgba(255,255,255,0.92);
    }

    .quote-panel .eyebrow {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.16);
      color: rgba(255,255,255,0.75);
    }

    .quote-big {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      line-height: 1.25;
      color: #fff;
      margin: 16px 0 20px;
      font-style: italic;
    }

    .quote-panel ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .quote-panel li {
      display: flex;
      gap: 10px;
      font-size: 0.94rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.5;
    }

    .quote-panel li::before {
      content: '—';
      color: var(--accent);
      flex-shrink: 0;
    }

    .notice-section {
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    }

    .notice-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .notice-card {
      border-radius: var(--radius-xl);
      padding: 32px;
    }

    .notice-card.featured {
      background: linear-gradient(160deg, var(--primary-light), var(--primary-dark));
      color: #fff;
      border-color: transparent;
      box-shadow: var(--shadow);
    }

    .notice-card.featured h3,
    .notice-card.featured p { color: rgba(255,255,255,0.9); }

    .notice-badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 16px;
      background: var(--accent-light);
      color: var(--primary);
      border: 1px solid rgba(201,168,122,0.35);
    }

    .notice-card.featured .notice-badge {
      background: rgba(255,255,255,0.16);
      color: #fff;
      border-color: rgba(255,255,255,0.2);
    }

    .notice-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
    .notice-card p { color: var(--muted); }

    .cta-section { padding: 80px 0; }

    .cta-box {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #3a2615 100%);
      border-radius: 36px;
      padding: 60px;
      box-shadow: 0 32px 80px rgba(60,40,20,0.25);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,122,0.14), transparent 70%);
      pointer-events: none;
    }

    .cta-left,
    .cta-right { position: relative; z-index: 1; }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(201,168,122,0.18);
      border: 1px solid rgba(201,168,122,0.3);
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 18px;
    }

    .early-pulse {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .cta-box h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: #fff;
      margin-bottom: 14px;
    }

    .cta-box p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      line-height: 1.65;
    }

    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .form-input {
      width: 100%;
      min-height: 50px;
      padding: 0 18px;
      border-radius: 12px;
      border: 1.5px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.96rem;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }

    .form-input::placeholder { color: rgba(255,255,255,0.45); }
    .form-input:focus { border-color: rgba(201,168,122,0.6); background: rgba(255,255,255,0.15); }
    .cta-form select.form-input option { color: var(--text); background: #fff; }

    .btn-cta {
      min-height: 54px;
      border-radius: 12px;
      background: linear-gradient(90deg, var(--accent), #b8916a);
      color: var(--primary-dark);
      font-weight: 800;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,122,0.5);
    }

    .cta-microcopy {
      text-align: center;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.45);
      margin-top: 6px;
    }

    .cta-checks {
      display: flex;
      gap: 24px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .cta-checks div {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.75);
      font-size: 0.88rem;
    }

    .cta-checks span {
      color: #6ebd6e;
      font-size: 1.1rem;
    }

    footer {
      background: rgba(255,255,255,0.38);
      border-top: 1px solid var(--line);
      padding: 40px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 36px;
    }

    .footer-brand-mark {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 8px;
    }

    .footer-brand-sub {
      font-size: 0.88rem;
      color: var(--muted2);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .footer-legal {
      font-size: 0.82rem;
      color: var(--muted2);
    }

    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .footer-col a {
      font-size: 0.9rem;
      color: var(--muted);
      transition: color 0.15s;
    }

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

    .footer-bottom {
      border-top: 1px solid var(--line);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.83rem;
      color: var(--muted2);
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

   .hero-trust-fix {
  max-width: 720px;
  margin-top: 14px;
}

.trust-badge {
  position: relative;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(58,107,69,0.25);
  border-radius: 16px;
  padding: 20px 22px 18px;
  max-width: 720px;
  margin-top: 14px;
  backdrop-filter: blur(6px);
}

.trust-badge-label {
  position: absolute;
  top: -10px;
  left: 18px;
  background: #3a6b45;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.trust-badge-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-badge-icon {
  font-size: 1.4rem;
  color: #3a6b45;
  margin-top: 2px;
}

.trust-badge-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2f5c3a;
  margin-bottom: 4px;
}

.trust-badge-sub {
  font-size: 0.9rem;
  color: #6f6152;
}

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-left > * { animation: fadeUp 0.6s ease both; }
    .hero-left > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.12s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.19s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.26s; }
    .hero-left > *:nth-child(5) { animation-delay: 0.33s; }
    .hero-left > *:nth-child(6) { animation-delay: 0.40s; }

    @media (max-width: 1080px) {
      .features-grid { grid-template-columns: repeat(3, 1fr); }
      .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 860px) {
      .hero-grid,
      .two-col,
      .notice-grid,
      .cta-box { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .topbar-inner {
        flex-direction: row;
        align-items: center;
        padding: 0;
        min-height: 60px;
        position: relative;
      }

      .nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245,240,232,0.98);
        border-bottom: 1px solid var(--line);
        padding: 16px 20px;
        backdrop-filter: blur(16px);
        z-index: 200;
        box-shadow: 0 12px 32px rgba(60,40,20,0.12);
      }

      .nav.open { display: flex; }
      .nav a { padding: 10px 0; font-size: 1rem; border-bottom: 1px solid rgba(221,208,187,0.5); width: 100%; }
      .nav a:last-child { border-bottom: none; margin-top: 8px; }
      .nav .btn { width: 100%; justify-content: center; }

      .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        border: none;
        background: none;
        margin-left: auto;
      }

      .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all 0.2s;
      }

      .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .hamburger.open span:nth-child(2) { opacity: 0; }
      .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      .proof-inner { gap: 24px; }
      .proof-divider { display: none; }
      .features-grid,
      .audience-grid { grid-template-columns: 1fr; }
      .app-cards,
      .app-kpi { grid-template-columns: 1fr; }
      .cta-box { padding: 32px 24px; border-radius: 28px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    .hamburger { display: none; }

/* Form anti-spam honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.form-message.error {
  color: #ffd2c7;
}

.form-message.success {
  color: #dff5df;
}


.cta-privacy {
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.48);
  margin-top: 2px;
}

.form-input.invalid {
  border-color: rgba(255, 180, 160, 0.85);
  background: rgba(200,80,50,0.12);
}

.btn-cta:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.product-preview {
  padding-top: 48px;
}

.preview-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(221,208,187,0.88);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-tab {
  border: 1px solid rgba(201,168,122,0.42);
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.preview-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.preview-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.preview-copy {
  padding: 8px 4px;
}

.preview-copy span {
  display: inline-flex;
  min-height: 26px;
  padding: 0 11px;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--primary);
  border: 1px solid rgba(201,168,122,0.35);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.preview-copy h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 10px;
}

.preview-copy p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.96rem;
}

.preview-image {
  width: 100%;
  max-height: 520px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(221,208,187,0.95);
  background: #fff;
  box-shadow: 0 16px 42px rgba(60,40,20,0.14);
}

.preview-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-image {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .preview-card {
    padding: 16px;
  }

  .preview-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .preview-tab {
    flex: 0 0 auto;
  }
}
.trust-badge-link {
  display: inline-flex;
  margin-top: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #3a6b45;
  text-decoration: none;
}

.trust-badge-link:hover {
  text-decoration: underline;
}

/* =========================================================
   LOCAL-FIRST PAGE
========================================================= */

.local-page {
  padding: 3.8rem 0 2.8rem;
}

.local-hero {
  max-width: 680px;
}

.local-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.local-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.local-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.35rem, 4.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.local-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 64ch;
}

.local-trust-box {
  margin-top: 1.8rem;
  background: var(--surface);
  border: 1px solid rgba(58,107,69,0.25);
  border-radius: 18px;
  padding: 1.55rem 1.65rem;
  max-width: 620px;
  box-shadow: var(--shadow-sm);
}

.local-trust-top {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #fff;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.local-trust-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--green);
  margin-bottom: 0.55rem;
}

.local-trust-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--muted);
}

.local-trust-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.local-trust-link:hover {
  text-decoration: underline;
}

.local-section {
  padding: 3.6rem 0;
}

.local-section + .local-section {
  border-top: 1px solid rgba(221,208,187,0.55);
}

.local-section-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.local-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

.local-section-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.local-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.local-card {
  background: var(--surface);
  border: 1px solid rgba(221,208,187,0.88);
  border-radius: var(--radius-xl);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}

.local-card.featured {
  border-color: rgba(58,107,69,0.38);
}

.local-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.local-card-badge.green {
  background: var(--green-light);
  color: var(--green);
}

.local-card-badge.gray {
  background: var(--accent-light);
  color: var(--primary);
}

.local-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.18;
  color: var(--primary-dark);
  margin-bottom: 0.65rem;
}

.local-card-sub {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.local-checks {
  display: grid;
  gap: 0.78rem;
}

.local-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.local-check.ok::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.local-check.no::before {
  content: "✕";
  color: var(--red);
  font-weight: 900;
}

.local-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.local-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(221,208,187,0.88);
}

.local-table th {
  background: rgba(255,255,255,0.52);
  color: var(--primary);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  text-align: left;
}

.local-table td {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(221,208,187,0.72);
  color: var(--muted);
  line-height: 1.55;
  vertical-align: top;
  font-size: 0.94rem;
}

.local-table td.center {
  text-align: center;
  font-weight: 800;
}

.local-ok {
  color: var(--green);
}

.local-no {
  color: var(--red);
}

@media (max-width: 900px) {
  .local-compare-grid {
    grid-template-columns: 1fr;
  }

  .local-page {
    padding-top: 2.8rem;
  }

  .local-section {
    padding: 3rem 0;
  }

  .local-title {
    font-size: 2.65rem;
  }

  .local-section-title {
    font-size: 2.05rem;
  }
}
/* FIX MENU MOBILE */
@media (max-width: 640px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    margin-left: auto;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245,240,232,0.98);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    backdrop-filter: blur(16px);
    z-index: 200;
    box-shadow: 0 12px 32px rgba(60,40,20,0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(221,208,187,0.5);
  }

  .nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
  }

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

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .brand-mark {
    font-size: 1.2rem;
    line-height: 1.05;
  }

  .brand-tag {
    font-size: 0.72rem;
  }
}