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

  :root {
    --black: #1d1d1f;
    --white: #ffffff;
    --bg: #f5f5f7;
    --bg2: #ffffff;
    --navy: #0c1a30;
    --navy-light: #16294a;
    --gold: #c9982f;
    --gold-light: #ddb75c;
    --muted: #6e6e73;
    --border: #d2d2d7;
    --nav-h: 64px;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--black);
    background: var(--bg2);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    height: var(--nav-h);
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 22px;
  }

  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
    cursor: pointer;
  }
  .nav-logo img {
    height: 38px; width: auto;
    display: block;
    border-radius: 6px;
  }

  .nav-links {
    display: flex; gap: 28px; list-style: none;
    justify-content: center;
  }
  .nav-links a {
    font-size: 13px; font-weight: 400;
    color: var(--black); text-decoration: none;
    opacity: 0.85; transition: opacity 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover { opacity: 1; }

  .nav-right {
    display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  }

  .nav-cta {
    background: var(--black);
    color: white !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    transition: background 0.2s !important;
    cursor: pointer;
  }
  .nav-cta:hover { background: #333 !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--black); border-radius: 2px;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 998;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 26px; font-family: var(--serif);
    color: var(--black); text-decoration: none;
    cursor: pointer;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ── PAGES ── */
  main { display: block; padding-top: var(--nav-h); }

  /* ── HERO ── */
  .hero {
    background: var(--bg);
    text-align: center;
    padding: 56px 24px 80px;
    overflow: hidden;
  }

  .hero-eyebrow {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 8vw, 76px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 18px;
  }

  .hero h1 em { font-style: italic; color: var(--gold); }

  .hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  .btn-row {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 60px;
  }

  .btn-primary {
    background: var(--black);
    color: white; border: none;
    padding: 14px 28px; border-radius: 980px;
    font-size: 15px; font-weight: 500;
    cursor: pointer; transition: background 0.2s;
    font-family: var(--sans);
    display: inline-block;
    text-decoration: none;
  }
  .btn-primary:hover { background: #333; }

  .btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    padding: 14px 28px; border-radius: 980px;
    font-size: 15px; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
    font-family: var(--sans);
    display: inline-block;
    text-decoration: none;
  }
  .btn-outline:hover { background: var(--black); color: white; }

  .hero-banner {
    width: 100%;
    line-height: 0;
  }
  .hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero-image-wrap {
    max-width: 900px; margin: 0 auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    min-height: 340px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  /* Abstract geometric "brand image" placeholder */
  .hero-abstract {
    width: 100%; padding: 60px 40px;
    display: flex; align-items: center; justify-content: center;
  }

  .abstract-svg { width: 100%; max-width: 700px; height: auto; }

  /* ── SECTIONS ── */
  section {
    padding: 96px 24px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .section-full {
    max-width: 100%;
    padding: 96px 0;
  }

  .section-eyebrow {
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
    text-align: center;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px; color: var(--muted); font-weight: 300;
    line-height: 1.7; text-align: center;
    max-width: 580px; margin: 0 auto 64px;
  }

  /* ── PROOF BAR ── */
  .proof-bar {
    background: var(--bg);
    padding: 48px 24px;
    display: flex; justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .proof-item {
    text-align: center;
    padding: 24px 48px;
    border-right: 1px solid var(--border);
  }
  .proof-item:last-child { border-right: none; }

  .proof-num {
    font-family: var(--serif);
    font-size: 42px; font-weight: 400;
    color: var(--black); letter-spacing: -1px;
    line-height: 1;
  }
  .proof-num span { color: var(--gold); }
  .proof-label {
    font-size: 13px; color: var(--muted);
    margin-top: 6px; font-weight: 400;
  }

  /* ── SERVICE CARDS ── */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .card {
    background: var(--bg2);
    padding: 48px 40px;
    transition: background 0.2s;
    cursor: default;
  }
  .card:hover { background: var(--bg); }

  .card-icon {
    width: 44px; height: 44px;
    background: var(--black);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    color: white; font-size: 20px;
  }

  .card h3 {
    font-family: var(--serif);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px; letter-spacing: -0.3px;
  }

  .card p {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--navy);
    padding: 96px 24px;
    text-align: center;
  }

  .quote-text {
    font-family: var(--serif);
    font-size: clamp(24px, 4vw, 38px);
    color: white;
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.35;
    letter-spacing: -0.5px;
    font-style: italic;
  }

  .quote-attr {
    font-size: 14px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em; text-transform: uppercase;
  }

  /* ── ABOUT STRIP ── */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 96px 24px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .about-strip .text-block h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .about-strip .text-block p {
    font-size: 16px; color: var(--muted);
    line-height: 1.8; font-weight: 300;
    margin-bottom: 16px;
  }

  .about-img {
    background: linear-gradient(160deg, #1a1a2e 0%, #c9982f 100%);
    border-radius: 20px;
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 80px;
    color: rgba(255,255,255,0.15);
    letter-spacing: -3px;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--bg);
    text-align: center;
    padding: 96px 24px;
  }

  .cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .cta-section p {
    font-size: 18px; color: var(--muted);
    margin-bottom: 36px; font-weight: 300;
  }

  /* ── RESOURCES PAGE ── */
  .resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 0;
  }

  .resource-card {
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .resource-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }

  .resource-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .resource-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }

  .resource-body h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 400;
    margin-bottom: 10px; letter-spacing: -0.2px;
  }

  .resource-body p {
    font-size: 14px; color: var(--muted);
    line-height: 1.6; margin-bottom: 20px;
  }

  .resource-footer {
    margin-top: auto;
  }

  .resource-price {
    font-size: 15px; font-weight: 600;
    color: var(--black);
  }
  .resource-price.free { color: var(--gold); }

  .resource-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 22px;
    border-radius: 980px;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--black);
    background: var(--black);
    color: white;
    text-decoration: none;
    font-family: var(--sans);
    transition: all 0.2s;
  }
  .resource-btn:hover { background: #333; }
  .resource-btn.filled {
    background: var(--black); color: white;
    border-color: var(--black);
  }
  .resource-btn.filled:hover { background: #333; }

  /* ── BLOG ── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }

  .blog-card {
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .blog-card:hover { opacity: 0.75; }

  .blog-thumb {
    border-radius: 14px;
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 42px;
    margin-bottom: 20px;
  }

  .blog-meta {
    font-size: 12px; color: var(--muted);
    margin-bottom: 8px; letter-spacing: 0.03em;
  }

  .blog-card h3 {
    font-family: var(--serif);
    font-size: 22px; font-weight: 400;
    letter-spacing: -0.3px; line-height: 1.25;
    margin-bottom: 10px;
  }

  .blog-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }

  .blog-link {
    display: inline-block; margin-top: 14px;
    font-size: 14px; font-weight: 500;
    color: var(--gold); text-decoration: none;
  }

  /* ── CONTACT / DISCOVERY PAGE ── */
  .discovery-hero {
    background: var(--bg);
    text-align: center;
    padding: 96px 24px 80px;
  }

  .discovery-hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .discovery-hero p {
    font-size: 18px; color: var(--muted); font-weight: 300;
    max-width: 520px; margin: 0 auto; line-height: 1.7;
  }

  .discovery-layout {
    max-width: 960px; margin: 0 auto;
    padding: 64px 24px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .discovery-info h2 {
    font-family: var(--serif);
    font-size: 28px; font-weight: 400;
    margin-bottom: 20px; letter-spacing: -0.4px;
  }

  .discovery-info ul {
    list-style: none; margin-bottom: 32px;
  }
  .discovery-info li {
    font-size: 15px; color: var(--muted);
    padding: 12px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 12px;
    font-weight: 300;
  }
  .discovery-info li::before {
    content: '→'; color: var(--gold); font-size: 14px; flex-shrink: 0;
  }

  .form-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 40px;
  }

  .form-card h3 {
    font-family: var(--serif);
    font-size: 24px; font-weight: 400;
    margin-bottom: 28px;
  }

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

  .form-group label {
    display: block; font-size: 13px; font-weight: 500;
    margin-bottom: 6px; color: var(--black);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--sans);
    background: white;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    background: var(--black);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 980px;
    font-size: 16px; font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: #333; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 16px; color: var(--muted);
  }
  .footer-logo span { color: var(--gold); }

  footer p {
    font-size: 13px; color: var(--muted);
  }

  footer nav { display: flex; gap: 20px; }
  footer nav a {
    font-size: 13px; color: var(--muted);
    text-decoration: none; cursor: pointer;
  }
  footer nav a:hover { color: var(--black); }

  /* ── DIVIDERS ── */
  .divider {
    width: 100%; height: 1px;
    background: var(--border);
    max-width: 1080px; margin: 0 auto;
  }

  /* ── TABS ── */
  .tabs {
    display: flex; gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari */
  .tab {
    padding: 14px 24px;
    font-size: 15px; font-weight: 400;
    cursor: pointer; border: none; background: none;
    color: var(--muted); border-bottom: 2px solid transparent;
    margin-bottom: -1px; white-space: nowrap;
    font-family: var(--sans);
    transition: color 0.2s;
  }
  .tab.active {
    color: var(--black);
    border-bottom-color: var(--black);
  }

  /* ── SERVICES PAGE ── */
  .services-hero {
    background: var(--bg);
    text-align: center;
    padding: 96px 24px 80px;
  }

  .engagement-list {
    max-width: 800px; margin: 0 auto;
  }

  .engagement-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
  .engagement-item:last-child { border-bottom: none; }

  .engagement-num {
    font-family: var(--serif);
    font-size: 48px; color: var(--border);
    font-weight: 400; line-height: 1;
  }

  .engagement-content h3 {
    font-family: var(--serif);
    font-size: 24px; font-weight: 400;
    margin-bottom: 10px; letter-spacing: -0.3px;
  }

  .engagement-content p {
    font-size: 15px; color: var(--muted);
    line-height: 1.7; font-weight: 300;
  }

  .engagement-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
  }

  .tag {
    font-size: 12px; padding: 4px 12px;
    border-radius: 980px; border: 1px solid var(--border);
    color: var(--muted);
  }

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

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }

  .fade-up-1 { animation-delay: 0.1s; }
  .fade-up-2 { animation-delay: 0.2s; }
  .fade-up-3 { animation-delay: 0.3s; }
  .fade-up-4 { animation-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-banner-img {
      max-height: 320px;
      object-position: center 35%;
    }

    /* On mobile stack cards vertically and image panel goes full width */
    .card-grid[style*="grid-template-columns: repeat(3"] {
      grid-template-columns: 1fr !important;
    }
    .card-image-panel {
      grid-column: span 1 !important;
      min-height: 220px !important;
    }

    .proof-item {
      padding: 20px 24px;
      border-right: none;
      border-bottom: 1px solid var(--border);
      width: 50%;
    }
    .proof-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .proof-item:last-child { border-bottom: none; }

    .about-strip {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .about-img { aspect-ratio: 16/9; }

    .discovery-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .engagement-item {
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .engagement-num { font-size: 28px; }

    footer {
      flex-direction: column;
      text-align: center;
    }
    footer nav { justify-content: center; }

    .card { padding: 32px 28px; }
  }

  @media (max-width: 480px) {
    .proof-bar { flex-direction: column; }
    .proof-item { width: 100%; border-right: none; }
    .proof-item:nth-child(odd) { border-right: none; }
  }

  /* Toast */
  .toast {
    position: fixed; bottom: 32px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--black); color: white;
    padding: 14px 28px; border-radius: 980px;
    font-size: 15px; font-weight: 500;
    transition: transform 0.4s ease;
    z-index: 9999; pointer-events: none;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ── DOWNLOAD MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }

  .modal {
    background: white; border-radius: 24px;
    padding: 48px 40px; width: 100%; max-width: 480px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    animation: modalIn 0.3s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
  }

  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--bg); border: none; border-radius: 50%;
    width: 32px; height: 32px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--muted);
    transition: background 0.2s;
  }
  .modal-close:hover { background: var(--border); }

  .modal-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  }

  .modal h2 {
    font-family: var(--serif); font-size: 26px; font-weight: 400;
    letter-spacing: -0.4px; margin-bottom: 6px;
  }

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

  .modal .form-group { margin-bottom: 14px; }
  .modal .form-group label {
    font-size: 12px; font-weight: 600; color: var(--black);
    display: block; margin-bottom: 5px; letter-spacing: 0.02em;
  }
  .modal .form-group input {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 15px; font-family: var(--sans); color: var(--black);
    outline: none; transition: border-color 0.2s; background: white;
  }
  .modal .form-group input:focus { border-color: var(--gold); }

  .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .modal-submit {
    width: 100%; margin-top: 20px;
    background: var(--navy); color: white; border: none;
    padding: 16px; border-radius: 980px;
    font-size: 15px; font-weight: 500; cursor: pointer;
    font-family: var(--sans); transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .modal-submit:hover { background: var(--navy-light); }
  .modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  .modal-success {
    display: none; text-align: center; padding: 20px 0 8px;
  }
  .modal-success .success-icon {
    width: 56px; height: 56px; background: #e8f5e9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin: 0 auto 16px;
  }
  .modal-success h3 {
    font-family: var(--serif); font-size: 24px; font-weight: 400;
    margin-bottom: 10px;
  }
  .modal-success p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .modal-success .download-now {
    display: inline-block; margin-top: 20px;
    background: var(--navy); color: white;
    padding: 13px 28px; border-radius: 980px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    cursor: pointer; border: none; font-family: var(--sans);
    transition: background 0.2s;
  }
  .modal-success .download-now:hover { background: var(--navy-light); }

  /* EmailJS setup notice */
  .emailjs-setup {
    background: #fffbeb; border: 1px solid #f59e0b;
    border-radius: 12px; padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 13px; line-height: 1.7; color: #78350f;
  }
  .emailjs-setup strong { color: #92400e; }
  .emailjs-setup code {
    background: #fef3c7; padding: 1px 6px; border-radius: 4px;
    font-family: monospace; font-size: 12px;
  }
  .emailjs-setup ol { margin: 10px 0 0 18px; }
  .emailjs-setup li { margin-bottom: 4px; }

  @media (max-width: 480px) {
    .modal { padding: 36px 24px; }
    .modal-row { grid-template-columns: 1fr; gap: 0; }
  }
