/* =========================================================
   OrgFlow — Tax Organizer & Workflow Software for CPA Firms
   ========================================================= */

:root {
  --navy-950: #061527;
  --navy-900: #0a2540;
  --navy-800: #0f3358;
  --navy-700: #16436e;
  --navy-600: #1f5687;
  --navy-100: #e7edf5;
  --navy-50: #f2f6fb;

  --green-700: #0f7a4f;
  --green-600: #16965f;
  --green-500: #1cab6c;
  --green-100: #e2f6ec;
  --green-50: #f2fbf6;

  --ink-900: #0f1b2a;
  --ink-700: #33465c;
  --ink-600: #4a5c72;
  --ink-500: #64778c;
  --ink-300: #a4b3c4;

  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 37, 64, 0.14);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-600);
}

.section-head.align-left {
  margin: 0 0 56px;
  text-align: left;
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 122, 79, 0.15);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--navy-50); border-color: var(--navy-600); }

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: #ffffff; }

.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand .mark::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--green-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.nav-links a:hover { color: var(--navy-900); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-secondary { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 84px 0 40px;
  background:
    radial-gradient(1100px 460px at 85% -10%, var(--navy-100), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 48px;
  margin-bottom: 22px;
}

.hero-copy .sub {
  font-size: 18px;
  color: var(--ink-600);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 600;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 36px; }
}

/* =========================================================
   Browser / App Frame mockup component
   ========================================================= */
.frame {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--navy-50);
  border-bottom: 1px solid var(--border);
}

.frame-dots { display: flex; gap: 6px; }
.frame-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
}

.frame-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.frame-url svg { width: 12px; height: 12px; color: var(--green-600); }

.frame-body { padding: 22px; background: #fbfcfe; }

/* App chrome inside frame */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy-900);
}
.app-brand .dot { width: 9px; height: 9px; border-radius: 2px; background: var(--green-500); }
.app-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Dashboard stat tiles */
.stat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.stat-tile {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px;
}
.stat-tile .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-500);
  margin-bottom: 6px;
}
.stat-tile .value {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
}
.stat-tile.accent .value { color: var(--green-700); }

@media (max-width: 980px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

.panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.panel + .panel { margin-top: 12px; }
.panel-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-500);
  margin-bottom: 12px;
}

.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
  padding: 7px 0;
  border-bottom: 1px dashed var(--border);
}
.activity-list li:last-child { border-bottom: none; }
.activity-list .ok { color: var(--green-600); font-weight: 700; }
.activity-list .warn { color: #b45309; font-weight: 700; }

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-green { background: var(--green-100); color: var(--green-700); }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-navy { background: var(--navy-100); color: var(--navy-700); }

/* Progress bar */
.progress-track {
  width: 100%;
  height: 8px;
  background: var(--navy-100);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green-600);
  border-radius: 999px;
}

/* Document checklist */
.doc-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--ink-700);
}
.doc-list li:last-child { border-bottom: none; }
.doc-list .check { color: var(--green-600); font-weight: 800; }
.doc-list .missing { color: #b91c1c; font-weight: 800; }

/* =========================================================
   Problem section
   ========================================================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.problem-card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy-700);
}
.problem-card h3 { font-size: 17px; margin-bottom: 8px; }
.problem-card p { font-size: 14.5px; color: var(--ink-600); }

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Process / Solution diagram
   ========================================================= */
.process {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.process-step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 14px;
}
.process-step:nth-child(2n) .num { background: var(--green-600); }
.process-step h4 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--ink-600); }

.process-arrow {
  display: flex;
  align-items: center;
  color: var(--border-strong);
  padding-top: 20px;
}
.process-arrow svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .process { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .process-arrow { transform: rotate(90deg); padding: 0; align-self: center; }
}

/* =========================================================
   Product screenshots
   ========================================================= */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 110px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-copy { order: 2; }
.showcase-row.reverse .showcase-visual { order: 1; }

.showcase-copy .kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 12px;
  display: block;
}
.showcase-copy h3 { font-size: 27px; margin-bottom: 14px; }
.showcase-copy p { font-size: 15.5px; color: var(--ink-600); margin-bottom: 18px; }
.showcase-copy ul { display: flex; flex-direction: column; gap: 10px; }
.showcase-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-700);
}
.showcase-copy li svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 980px) {
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-copy,
  .showcase-row.reverse .showcase-visual { order: initial; }
  .showcase-row { margin-bottom: 70px; }
}

/* Kanban mockup */
.kanban { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.kanban-col {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.kanban-col .col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.kanban-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 9px;
  font-size: 11.5px;
  color: var(--ink-700);
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .kanban { grid-template-columns: repeat(2, 1fr); }
}

/* Task list */
.task-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.task-list li:last-child { border-bottom: none; }
.task-list .tick {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.task-list .tick.done { background: var(--green-100); color: var(--green-700); }
.task-list .tick.pending { background: var(--navy-100); color: var(--navy-600); }
.task-list .done-text { color: var(--ink-500); text-decoration: line-through; text-decoration-color: var(--border-strong); }

.assignee-row { display: flex; gap: 24px; margin-bottom: 16px; }
.assignee {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.assignee .meta { font-size: 12px; }
.assignee .meta .role { color: var(--ink-500); display: block; font-weight: 600; }
.assignee .meta .name { color: var(--navy-900); font-weight: 700; }

.reminder-box {
  margin-top: 14px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reminder-box .label { font-size: 12px; font-weight: 700; color: var(--green-700); }
.reminder-box .time { font-size: 13px; font-weight: 800; color: var(--navy-900); }

/* =========================================================
   Feature cards
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon svg { width: 22px; height: 22px; color: #fff; }
.feature-card:nth-child(3n+2) .icon { background: var(--green-600); }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--ink-600); }

@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Who it's for
   ========================================================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 200px at 100% 0%, rgba(28,171,108,0.25), transparent 70%);
}
.audience-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; position: relative; }
.audience-card p { color: rgba(255,255,255,0.78); font-size: 14.5px; position: relative; }
.audience-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  position: relative;
}

@media (max-width: 980px) { .audience-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Security section
   ========================================================= */
.security-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.security-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.security-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy-700);
}
.security-card h3 { font-size: 16px; margin-bottom: 8px; }
.security-card p { font-size: 14px; color: var(--ink-600); }
.security-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-500);
  text-align: center;
}

@media (max-width: 980px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .security-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Final CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(28,171,108,0.22), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: 34px; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 30px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-ctas { justify-content: center; position: relative; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
  margin-top: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* =========================================================
   Modal + Trial Form
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 39, 0.6);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.18s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500);
}
.modal-close:hover { background: var(--bg-alt); color: var(--navy-900); }

.modal-box h3 { font-size: 22px; margin-bottom: 6px; }
.modal-box .modal-sub { font-size: 14px; color: var(--ink-600); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-900);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px var(--green-100);
}

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

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.form-status.error {
  display: flex;
  background: #fee2e2;
  color: #b91c1c;
}

.form-success {
  display: none;
  text-align: center;
  padding: 12px 0 4px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success .check-circle svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 14.5px; color: var(--ink-600); }

.honey-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Trial section (inline, before footer) */
.trial-section {
  background: var(--bg-alt);
}
.trial-box {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }

@media (max-width: 560px) {
  .modal-box, .trial-box { padding: 28px 22px; }
}
