/* ==========================================================
   FOLÉ AI — Website Styles
   Design: Editorial boutique meets modern tech
   Colors: Ionian sea + warm sand + coral accents
   ========================================================== */

/* ============ RESET & VARIABLES ============ */
:root {
  /* Color palette */
  --sand: #f4ecdd;
  --sand-light: #fbf7ef;
  --sand-deep: #e8dcc4;
  --ink: #1a2433;
  --ink-soft: #3a4658;
  --ink-light: #5a6778;
  --sea: #1d5f7a;
  --sea-deep: #0e3d52;
  --sea-darker: #0a2e3f;
  --coral: #d97857;
  --coral-soft: #e89680;
  --gold: #c99b4a;
  --gold-soft: #d9b277;
  --paper: #fbf7ef;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container: 1200px;

  /* Effects */
  --shadow-soft: 0 2px 12px rgba(26, 36, 51, 0.06);
  --shadow-card: 0 4px 24px rgba(26, 36, 51, 0.08);
  --shadow-lift: 0 20px 60px rgba(26, 36, 51, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow, .section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin-top: 16px;
  margin-bottom: 16px;
}

.section-title em {
  color: var(--sea);
  font-style: italic;
  font-weight: 300;
}

.section-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-head .section-sub {
  margin: 0 auto;
}

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 221, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 36, 51, 0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  color: var(--sand);
  display: grid;
  place-items: center;
  font-style: italic;
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--coral);
  border-radius: 50%;
}

.logo-text em {
  color: var(--sea);
  font-style: italic;
  font-weight: 400;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--sand);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--sea-deep);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26,36,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,36,51,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 120, 87, 0.15), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29, 95, 122, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
}

.eyebrow {
  color: var(--sea);
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title em {
  color: var(--coral);
  font-style: italic;
  font-weight: 300;
}

.hero-title strong {
  font-weight: 600;
  color: var(--sea);
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero-subtitle strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--sand);
  border: none;
}

.btn-primary:hover {
  background: var(--sea-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 61, 82, 0.3);
}

.btn-primary svg {
  transition: transform 0.25s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 36, 51, 0.2);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.meta-num span {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
}

.meta-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(26, 36, 51, 0.15);
}

/* Demo widget */
.hero-demo {
  position: relative;
}

.demo-frame {
  background: var(--paper);
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(26, 36, 51, 0.15),
    0 8px 24px rgba(26, 36, 51, 0.08),
    0 0 0 1px rgba(26, 36, 51, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  max-height: 560px;
  transform: rotate(-1deg);
  transition: transform 0.4s;
}

.demo-frame:hover {
  transform: rotate(0deg);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(26, 36, 51, 0.08);
}

.demo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  color: var(--sand);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.demo-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.demo-info p {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

.demo-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-messages::-webkit-scrollbar { width: 4px; }
.demo-messages::-webkit-scrollbar-thumb {
  background: rgba(26, 36, 51, 0.15);
  border-radius: 2px;
}

.demo-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  animation: slideUp 0.3s ease-out;
  white-space: pre-wrap;
  word-wrap: break-word;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-msg.bot {
  background: var(--white);
  border: 1px solid rgba(26, 36, 51, 0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.demo-msg.user {
  background: var(--ink);
  color: var(--sand);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.demo-msg.bot strong { color: var(--sea-deep); font-weight: 600; }

.demo-typing {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(26, 36, 51, 0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
}

.demo-typing span {
  width: 5px;
  height: 5px;
  background: var(--ink-soft);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}

.demo-typing span:nth-child(2) { animation-delay: 0.15s; }
.demo-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.demo-composer {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid rgba(26, 36, 51, 0.08);
  background: var(--paper);
}

.demo-composer input {
  flex: 1;
  border: 1px solid rgba(26, 36, 51, 0.15);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  color: var(--ink);
}

.demo-composer input:focus {
  border-color: var(--sea);
}

.demo-composer button {
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--sand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.demo-composer button:hover {
  background: var(--sea-deep);
  transform: scale(1.05);
}

.demo-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .demo-frame { transform: rotate(0); }
}

/* ============ PROBLEM STATS ============ */
.problem {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--sea-deep);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 236, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 236, 221, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 800px) {
  .problem-grid { grid-template-columns: 1fr; }
}

.problem-stat p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(244, 236, 221, 0.75);
  max-width: 280px;
  line-height: 1.5;
}

.stat-huge {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.stat-sub {
  font-size: 0.35em;
  color: rgba(244, 236, 221, 0.6);
  font-weight: 400;
  margin-left: 4px;
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: var(--section-py) 0;
  background: var(--sand);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(26, 36, 51, 0.06);
  position: relative;
  transition: all 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(29, 95, 122, 0.2);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
}

.step-time {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--coral);
  padding: 4px 10px;
  background: rgba(217, 120, 87, 0.08);
  border-radius: 999px;
}

/* ============ INDUSTRIES ============ */
.industries {
  padding: var(--section-py) 0;
  background: var(--sand-deep);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
}

.industry-card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(26, 36, 51, 0.06);
  position: relative;
  transition: all 0.3s;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.industry-card.featured {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--sand);
  border: none;
}

.industry-card.featured h3 { color: var(--sand); }
.industry-card.featured p { color: rgba(244, 236, 221, 0.8); }

.industry-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
}

.industry-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}

.industry-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.industry-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--coral);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

/* ============ PRICING ============ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--sand);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
}

.price-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(26, 36, 51, 0.08);
  position: relative;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.price-card.featured {
  background: linear-gradient(180deg, var(--sea-deep), var(--ink));
  color: var(--sand);
  border: none;
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .price-card.featured { transform: none; }
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--sea);
  margin-bottom: 20px;
  font-weight: 400;
}

.price-card.featured .price-name { color: var(--gold); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.price-amount .currency {
  font-size: 32px;
  color: var(--ink-soft);
  font-weight: 400;
}

.price-card.featured .currency { color: rgba(244, 236, 221, 0.7); }

.price-amount .number {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.price-card.featured .number { color: var(--sand); }

.price-amount .period {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 4px;
}

.price-card.featured .period { color: rgba(244, 236, 221, 0.7); }

.price-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-card.featured .price-desc { color: rgba(244, 236, 221, 0.8); }

.price-setup {
  font-size: 13px;
  color: var(--coral);
  font-family: var(--font-display);
  font-style: italic;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 36, 51, 0.1);
  margin-bottom: 24px;
}

.price-card.featured .price-setup {
  color: var(--gold-soft);
  border-color: rgba(244, 236, 221, 0.15);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14.5px;
  padding: 8px 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-card.featured .price-features li { color: rgba(244, 236, 221, 0.9); }

.price-features li strong {
  color: var(--ink);
  font-weight: 600;
}

.price-card.featured .price-features li strong { color: var(--sand); }

.price-features em {
  font-style: italic;
  color: var(--ink-light);
}

.price-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s;
  border: 1px solid rgba(26, 36, 51, 0.2);
  background: transparent;
  color: var(--ink);
}

.price-card.featured .price-btn {
  border-color: rgba(244, 236, 221, 0.3);
  color: var(--sand);
}

.price-btn:hover {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}

.price-btn.primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.price-btn.primary:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ============ BENEFITS ============ */
.benefits {
  padding: var(--section-py) 0;
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-main h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  margin: 16px 0 24px;
  line-height: 1.05;
}

.benefit-main h2 em {
  color: var(--sea);
  font-style: italic;
  font-weight: 300;
}

.benefit-main h2 strong {
  color: var(--coral);
  font-weight: 600;
}

.benefit-main p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.benefit-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 500px) {
  .benefit-items { grid-template-columns: 1fr; }
}

.benefit {
  padding: 24px;
  background: var(--sand);
  border-radius: 16px;
  border: 1px solid rgba(26, 36, 51, 0.05);
  transition: all 0.3s;
}

.benefit:hover {
  background: var(--sand-deep);
  transform: translateY(-2px);
}

.benefit-num {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.benefit h4 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 500;
}

.benefit p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq {
  padding: var(--section-py) 0;
  background: var(--sand);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(26, 36, 51, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(29, 95, 122, 0.2); }

.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item:hover summary { color: var(--sea); }

.faq-toggle {
  font-size: 24px;
  color: var(--coral);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer strong { color: var(--ink); }

/* ============ CTA / CONTACT ============ */
.cta {
  padding: var(--section-py) 0;
  background: var(--sea-deep);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(217, 120, 87, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta .section-eyebrow {
  color: var(--coral-soft);
}

.cta h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 16px 0 24px;
  line-height: 1.1;
  color: var(--sand);
}

.cta h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.cta h2 strong {
  font-weight: 600;
  color: var(--coral-soft);
}

.cta-content > p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(244, 236, 221, 0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta .btn-primary {
  background: var(--coral);
  color: var(--white);
}

.cta .btn-primary:hover {
  background: var(--coral-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 120, 87, 0.4);
}

.cta .btn-secondary {
  background: transparent;
  color: var(--sand);
  border-color: rgba(244, 236, 221, 0.3);
}

.cta .btn-secondary:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.cta-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
}

.trust-item span {
  font-size: 13px;
  color: rgba(244, 236, 221, 0.6);
  letter-spacing: 0.02em;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 30px;
  background: var(--ink);
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-brand .logo {
  color: var(--sand);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(244, 236, 221, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(244, 236, 221, 0.7);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sand); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(244, 236, 221, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(244, 236, 221, 0.5);
}

/* ============ UTILITIES ============ */
::selection {
  background: var(--coral);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}