/* ── Automic Agency — Shared Theme ── */
:root {
  --ink:       #0e1a2b;
  --text:      #3a4a5c;
  --muted:     #7a8fa6;
  --border:    #e2e8f0;
  --bg:        #f8fafc;
  --white:     #ffffff;
  --accent:    #1a6ef0;
  --accent-lt: #eef4fe;
  --teal:      #0fa8a0;
  --teal-lt:   #edfbfa;
  --violet:    #7c3aed;
  --violet-lt: #f3effe;
  --amber:     #d97706;
  --amber-lt:  #fffbeb;
  --green:     #059669;
  --green-lt:  #ecfdf5;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: 'Lora', serif; font-size: 19px; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--text); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--ink) !important; color: var(--white) !important; padding: 8px 20px; border-radius: 6px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 80px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 100%;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: var(--white); padding: 13px 28px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.01em; transition: background 0.15s; display: inline-block; }
.btn-primary:hover { background: #1558cc; }
.btn-ghost { color: var(--ink); padding: 13px 28px; border-radius: 7px; font-size: 14px; font-weight: 400; text-decoration: none; border: 1px solid var(--border); transition: border-color 0.15s, background 0.15s; display: inline-block; }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg); }
.btn-teal { background: var(--teal); color: var(--white); padding: 13px 28px; border-radius: 7px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.15s; display: inline-block; }
.btn-teal:hover { background: #0b908a; }

/* ── SECTION WRAPPER ── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 80px 80px; }
.section-header { margin-bottom: 56px; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; width: 20px; height: 1px; }
.eyebrow-blue   { color: var(--accent); }   .eyebrow-blue::before   { background: var(--accent); }
.eyebrow-teal   { color: var(--teal); }     .eyebrow-teal::before   { background: var(--teal); }
.eyebrow-violet { color: var(--violet); }   .eyebrow-violet::before { background: var(--violet); }
.eyebrow-amber  { color: var(--amber); }    .eyebrow-amber::before  { background: var(--amber); }
.eyebrow-green  { color: var(--green); }    .eyebrow-green::before  { background: var(--green); }
.section-title { font-family: 'Lora', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-desc { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.7; }
.stripe { height: 1px; background: var(--border); max-width: 1280px; margin: 0 auto; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--ink); }
.cta-strip-inner { max-width: 1280px; margin: 0 auto; padding: 72px 80px; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-strip-title { font-family: 'Lora', serif; font-size: clamp(26px, 2.5vw, 36px); font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-strip-title em { font-style: italic; color: #6ddeb0; }
.cta-strip-text { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.7; }
.cta-strip-right { display: flex; flex-direction: column; gap: 14px; align-items: center; flex-shrink: 0; }
.cta-email-label { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.cta-email-val { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; margin-bottom: 6px; display: block; }
.btn-cta-outline { display: inline-block; font-size: 13px; font-weight: 500; color: #6ddeb0; border: 1px solid rgba(109,222,176,0.35); padding: 10px 24px; border-radius: 7px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.15s; }
.btn-cta-outline:hover { background: rgba(109,222,176,0.1); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 48px 80px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.footer-logo { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: #5abbe8; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.2); margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; max-width: 1280px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, .breadcrumb { padding-left: 32px; padding-right: 32px; }
  .section-wrap, .cta-strip-inner, footer { padding-left: 32px; padding-right: 32px; }
  .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-strip-right { align-items: flex-start; }
}
@media (max-width: 640px) {
  nav, .breadcrumb, .section-wrap, .cta-strip-inner, footer { padding-left: 20px; padding-right: 20px; }
  nav .nav-links { display: none; }
}
