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

    :root {
      --green: #0b7a3e;
      --green-light: #12a355;
      --green-pale: #e8f7ee;
      --orange: #f26522;
      --orange-pale: #fff3ed;
      --cream: #fdf8f0;
      --cream2: #f5efe4;
      --dark: #111a13;
      --text: #1a2e1d;
      --muted: #5a7060;
      --border: #d4e8d8;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
    }

    /* ── NAV ── */
    nav {
      padding: 18px 5%;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid var(--border);
      background: rgba(253,248,240,0.95);
      backdrop-filter: blur(10px);
      position: sticky; top: 0; z-index: 50;
    }

    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 20px;
      color: var(--green); text-decoration: none;
      display: flex; align-items: center; gap: 6px;
    }

    .nav-logo span {
      background: var(--orange); color: white;
      padding: 2px 7px; border-radius: 5px; font-size: 18px;
    }

    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-links a {
      font-size: 14px; color: var(--muted);
      text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--green); }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      padding: 64px 5% 56px;
      text-align: center;
      position: relative; overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 15% 50%, rgba(11,122,62,0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(242,101,34,0.18) 0%, transparent 50%);
    }

    .hero-inner { position: relative; }

    .hero-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 6px 14px; border-radius: 99px;
      font-size: 12px; color: rgba(255,255,255,0.65);
      margin-bottom: 20px; letter-spacing: 0.04em;
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800; color: white;
      line-height: 1.12; margin-bottom: 14px;
    }

    .hero h1 em { font-style: normal; color: var(--orange); }

    .hero p {
      font-size: 16px; color: rgba(255,255,255,0.5);
      max-width: 480px; margin: 0 auto;
      line-height: 1.7;
    }

    /* ── MAIN LAYOUT ── */
    .main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 64px 5% 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* ── SECTION LABELS ── */
    .section-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: 26px; font-weight: 800;
      color: var(--dark); margin-bottom: 8px;
      line-height: 1.2;
    }

    .section-sub {
      font-size: 14px; color: var(--muted);
      line-height: 1.7; margin-bottom: 28px;
    }

    /* ── CONTACT FORM ── */
    .contact-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
    }

    .field-group { margin-bottom: 18px; }

    label {
      display: block; font-size: 13px;
      font-weight: 600; color: var(--text);
      margin-bottom: 7px;
    }

    label .req { color: var(--orange); }

    input, select, textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px; color: var(--text);
      background: var(--cream);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(11,122,62,0.1);
      background: white;
    }

    textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

    select {
      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='%235a7060' 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; cursor: pointer;
    }

    .field-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }

    .btn-submit {
      width: 100%; padding: 14px;
      background: var(--green); color: white;
      border: none; border-radius: 99px;
      font-family: 'Syne', sans-serif;
      font-size: 15px; font-weight: 700;
      cursor: pointer; transition: all 0.25s;
      display: flex; align-items: center;
      justify-content: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(11,122,62,0.25);
      margin-top: 8px;
    }

    .btn-submit:hover {
      background: var(--green-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(11,122,62,0.35);
    }

    /* contact sent */
    .contact-sent {
      display: none; text-align: center; padding: 32px 0;
    }

    .contact-sent.show { display: block; }
    .contact-sent .sent-icon {
      font-size: 48px; margin-bottom: 14px;
    }

    .contact-sent h3 {
      font-family: 'Syne', sans-serif;
      font-size: 20px; color: var(--dark); margin-bottom: 8px;
    }

    .contact-sent p {
      font-size: 14px; color: var(--muted); line-height: 1.6;
    }

    /* ── RIGHT COLUMN ── */
    .right-col { display: flex; flex-direction: column; gap: 24px; }

    /* ── CONTACT OPTIONS ── */
    .contact-options {
      display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 8px;
    }

    .contact-option {
      background: white;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 20px;
      display: flex; align-items: center; gap: 16px;
      text-decoration: none; color: var(--text);
      transition: all 0.25s;
    }

    .contact-option:hover {
      border-color: var(--green);
      box-shadow: 0 4px 20px rgba(11,122,62,0.1);
      transform: translateY(-2px);
    }

    .option-icon {
      width: 46px; height: 46px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }

    .option-label {
      font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--muted); margin-bottom: 3px;
    }

    .option-value {
      font-family: 'Syne', sans-serif;
      font-size: 15px; font-weight: 700; color: var(--dark);
    }

    .option-arrow {
      margin-left: auto; color: var(--muted); font-size: 16px;
    }

    /* ── QR GENERATOR ── */
    .qr-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
    }

    .qr-card .section-label { margin-bottom: 6px; }
    .qr-card .section-title { font-size: 20px; margin-bottom: 6px; }
    .qr-card .section-sub { margin-bottom: 20px; }

    .qr-input-wrap {
      display: flex; gap: 8px; margin-bottom: 16px;
    }

    .qr-input-wrap input {
      flex: 1; padding: 11px 14px; font-size: 13px;
      background: white;
    }

    .btn-gen {
      padding: 11px 18px;
      background: var(--green); color: white;
      border: none; border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 13px; font-weight: 700;
      cursor: pointer; transition: all 0.2s;
      white-space: nowrap; flex-shrink: 0;
    }

    .btn-gen:hover { background: var(--green-light); }

    .qr-result {
      display: none;
      animation: fadeUp 0.4s ease;
    }

    .qr-result.show { display: block; }

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

    .qr-output-wrap {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px;
      margin-bottom: 14px;
    }

    #qrCanvas {
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
      border: 3px solid white;
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }

    .qr-info { flex: 1; min-width: 0; }

    .qr-slug {
      font-family: 'Syne', sans-serif;
      font-size: 13px; font-weight: 800;
      color: var(--dark); margin-bottom: 4px;
      word-break: break-all;
    }

    .qr-full-link {
      font-size: 11px; color: var(--muted);
      word-break: break-all; margin-bottom: 12px;
      line-height: 1.5;
    }

    .qr-actions { display: flex; flex-wrap: wrap; gap: 8px; }

    .qr-btn {
      padding: 8px 14px; border-radius: 8px;
      font-size: 12px; font-weight: 600;
      cursor: pointer; transition: all 0.2s;
      border: 1.5px solid var(--border);
      background: white; color: var(--text);
      display: flex; align-items: center; gap: 5px;
      font-family: 'DM Sans', sans-serif;
    }

    .qr-btn:hover { border-color: var(--green); color: var(--green); }

    .qr-btn.green {
      background: var(--green); color: white;
      border-color: var(--green);
    }

    .qr-btn.green:hover { background: var(--green-light); }

    .qr-btn.copied {
      background: var(--green-pale);
      color: var(--green);
      border-color: var(--green);
    }

    /* slug history */
    .slug-history { margin-top: 14px; }

    .slug-history-title {
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--muted); margin-bottom: 8px;
    }

    .slug-list { display: flex; flex-direction: column; gap: 6px; }

    .slug-item {
      display: flex; align-items: center; justify-content: space-between;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .slug-item:hover { border-color: var(--green); background: var(--green-pale); }

    .slug-item-name { font-weight: 600; color: var(--dark); }
    .slug-item-link { font-size: 11px; color: var(--muted); }
    .slug-item-arrow { color: var(--muted); }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

    .faq-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-q {
      padding: 16px 20px;
      display: flex; justify-content: space-between;
      align-items: center; cursor: pointer;
      font-size: 14px; font-weight: 600;
      color: var(--dark);
      transition: background 0.2s;
    }

    .faq-q:hover { background: var(--cream); }

    .faq-toggle {
      font-size: 18px; color: var(--muted);
      transition: transform 0.25s; flex-shrink: 0;
    }

    .faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--green); }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 13px; color: var(--muted);
      line-height: 1.7; padding: 0 20px;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 20px 16px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 40px 5% 28px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 20px;
    }

    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 20px; color: white;
      display: flex; align-items: center; gap: 6px;
    }

    .footer-logo span {
      background: var(--orange); color: white;
      padding: 2px 7px; border-radius: 5px;
    }

    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }

    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      font-size: 13px; color: rgba(255,255,255,0.4);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: white; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .main { grid-template-columns: 1fr; gap: 32px; }
      .field-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      footer { flex-direction: column; text-align: center; }
    }

body, body * { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }
