/* ═══════════════════════════════════════════════════════
   DAYNIL FUSION — Main Stylesheet
   Design: Dark-first, tech-forward, premium SaaS
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────── */
:root {
  --dark:       #0A0A12;
  --dark2:      #13132A;
  --dark3:      #1C1C38;
  --accent:     #1A4DFF;
  --accent-h:   #0f3de8;
  --green:      #00C58E;
  --green-h:    #00a878;
  --white:      #FFFFFF;
  --off-white:  #F9F8F5;
  --gray-50:    #F7F7F8;
  --gray-100:   #EFEFEF;
  --gray-200:   #E0E0E2;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;
  --ink:        #0D0D1A;

  /* --font-display: 'Syne', sans-serif; */
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-glow: 0 0 40px rgba(26,77,255,.18);

  --max-w:      1200px;
  --nav-h:      68px;
  --section-py: 96px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Skip Link ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── Typography ──────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray-600); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.lead { font-size: 1.125rem; line-height: 1.75; color: var(--gray-600); }

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: var(--section-py); }
.section-sm { padding-block: 60px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.65); }
.section-alt { background: var(--off-white); }

.section-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 4rem; }
.section-header p { margin-top: .75rem; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  transition: all .22s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,77,255,.35);
}
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,77,255,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,197,142,.3);
}
.btn-green:hover { background: var(--green-h); transform: translateY(-1px); }

.btn-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--gray-200);
}
.btn-dark:hover { border-color: var(--gray-400); color:var(--ink); background: var(--gray-50); }

.btn-ghost {
  background: transparent;
  color:var(--ink);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--gray-400); background: var(--gray-50); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8125rem; }

/* ── Navigation ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,18,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.site-header.scrolled {
  background: rgba(10,10,18,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-text strong { color: var(--green); font-weight: 800; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .875rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: .5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .5rem .875rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.dropdown a:hover { color: #fff; background: rgba(255,255,255,.07); }

.nav-actions { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero Section ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(26,77,255,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,197,142,.1) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 50% 10%, rgba(26,77,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.6); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .875rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.04);
}
.hero-tag-green {
  border-color: rgba(0,197,142,.3);
  color: var(--green);
  background: rgba(0,197,142,.08);
}
.hero-widget {
  position: absolute;
  right: 0; bottom: 0;
  width: min(440px, 45vw);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.hw-header {
  background: var(--accent);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hw-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
.hw-title { font-size: .875rem; font-weight: 600; color: #fff; font-family: var(--font-display); }
.hw-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.hw-thinking {
  background: rgba(26,77,255,.12);
  border: 1px solid rgba(26,77,255,.2);
  border-radius: var(--radius-sm);
  padding: .625rem .875rem;
  font-size: .8125rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hw-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(0,197,142,.3);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.hw-msg {
  padding: .625rem .875rem;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  line-height: 1.5;
}
.hw-msg-ai { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); align-self: flex-start; max-width: 85%; }
.hw-msg-user { background: var(--accent); color: #fff; align-self: flex-end; max-width: 75%; }
.hw-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.hw-btn {
  padding: .35rem .75rem;
  border: 1px solid rgba(26,77,255,.4);
  border-radius: var(--radius-full);
  font-size: .75rem;
  color: #7ea8ff;
  background: rgba(26,77,255,.1);
  cursor: pointer;
  transition: all .2s;
}
.hw-btn:hover { background: var(--accent); color: #fff; }
.hw-input {
  display: flex;
  gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  align-items: center;
}
.hw-input-field {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: .5rem 1rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  outline: none;
}
.hw-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* ── Social Proof Bar ────────────────────────────────── */
.social-proof {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.proof-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  margin-top: .25rem;
}
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.08);
}

/* ── Feature Cards ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: rgba(26,77,255,.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(26,77,255,.08);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.fi-blue   { background: #eef2ff; }
.fi-green  { background: #d1fae5; }
.fi-amber  { background: #fef3c7; }
.fi-pink   { background: #fce7f3; }
.fi-purple { background: #ede9fe; }
.fi-teal   { background: #ccfbf1; }

.feature-card h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.feature-card p { font-size: .9375rem; }

/* ── Dark Feature Cards ──────────────────────────────── */
.features-grid-dark .feature-card {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.07);
  color: #fff;
}
.features-grid-dark .feature-card h3 { color: #fff; }
.features-grid-dark .feature-card p { color: rgba(255,255,255,.55); }
.features-grid-dark .feature-card:hover {
  border-color: rgba(26,77,255,.4);
  background: rgba(26,77,255,.06);
}

/* ── Pills / Tags ────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .875rem;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 500;
}
.pill-blue   { background: #eef2ff; color: #1A4DFF; }
.pill-green  { background: #d1fae5; color: #059669; }
.pill-orange { background: #fff7ed; color: #c2410c; }
.pill-gray   { background: var(--gray-100); color: var(--gray-600); }

/* ── Pricing ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: transform .25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.pricing-card-dark {
  background: var(--dark);
  border: 1px solid rgba(26,77,255,.5);
  box-shadow: var(--shadow-glow);
}
.pricing-card-dark h3, .pricing-card-dark .price-num { color: var(--white); }
.pricing-card-dark p, .pricing-card-dark .price-period { color: rgba(255,255,255,.5); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: .25rem 1rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.price-curr { font-size: 1.5rem; }
.price-period { font-size: .875rem; color: var(--gray-400); }
.price-divider { border: none; border-top: 1px solid var(--gray-100); margin: 1.5rem 0; }
.pricing-card-dark .price-divider { border-color: rgba(255,255,255,.08); }
.price-features { display: flex; flex-direction: column; gap: .625rem; }
.pf-item {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .9375rem;
  color: var(--ink);
}
.pricing-card-dark .pf-item { color: rgba(255,255,255,.85); }
.pf-check {
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pf-check svg { width: 10px; height: 10px; }

/* ── Comparison Table ────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--gray-100);
  background: var(--off-white);
}
.compare-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.compare-table td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9375rem;
  color: var(--gray-600);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 500; color: var(--ink); }
.compare-table td.center { text-align: center; }
.check-yes { color: var(--green); font-size: 1.1rem; }
.check-no  { color: var(--gray-300); }

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon svg path { stroke: #fff; }
.faq-a {
  padding-bottom: 1.25rem;
  font-size: .9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Testimonials ────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #F59E0B; }
.testimonial-quote { font-size: .9375rem; line-height: 1.75; color: var(--gray-600); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9375rem; }
.testimonial-role { font-size: .8125rem; color: var(--gray-400); }

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,77,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 500px; margin-inline: auto; margin-top: .75rem; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; position: relative; z-index: 1; }
.cta-note { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: 1rem; position: relative; z-index: 1; }

/* ── AI Provider Badges ──────────────────────────────── */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.provider-badge {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.125rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.provider-dot { width: 8px; height: 8px; border-radius: 50%; }
.pd-groq   { background: #FF6B35; }
.pd-openai { background: #10A37F; }
.pd-gemini { background: #4285F4; }
.pd-claude { background: #CC785C; }
.pd-ollama { background: #7C3AED; }

/* ── Integration Grid ────────────────────────────────── */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.integration-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all .25s;
  background: var(--white);
}
.integration-card:hover {
  border-color: rgba(26,77,255,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.integration-card .int-icon { font-size: 2rem; margin-bottom: .625rem; line-height: 1; display: flex; align-items: center; justify-content: center; height: 40px; }
.integration-card .int-icon img { width: 36px; height: 36px; object-fit: contain; }
.integration-card .int-name { font-size: .875rem; font-weight: 600; color: var(--ink); }
.integration-card .int-cat { font-size: .75rem; color: var(--gray-400); margin-top: .2rem; }

/* ── Form ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,77,255,.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: .8125rem; color: var(--gray-400); margin-top: .375rem; }
.form-error { font-size: .8125rem; color: #dc2626; margin-top: .375rem; }

/* ── Breadcrumb ──────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gray-400); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--gray-300); }

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 1rem) 0 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26,77,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.6); max-width: 640px; margin-inline: auto; }

/* ── Animations ──────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}
.animate-in { animation: fadeUp .6s var(--ease-out) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 5rem 0 0;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-tagline { font-size: .875rem; color: var(--green); font-style: italic; margin-bottom: .75rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: all .2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.05); }

.footer-heading {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.25rem;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.25); }
.footer-legal a { color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--gray-400); }
.fw-800 { font-weight: 800; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }

/* ── Industry Page ───────────────────────────────────── */
.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.industry-tab {
  padding: .625rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
}
.industry-tab.active, .industry-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.industry-panel { display: none; }
.industry-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.use-case-list { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.25rem; }
.use-case-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .875rem 1rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
}
.uc-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: var(--radius-sm);
  background: #eef2ff;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
}

/* ── Contact ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius-md);
  background: #eef2ff;
  display: flex; align-items: center; justify-content: center;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-col { grid-column: 1 / -1; }
  .hero-widget { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .nav-menu, .nav-actions {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
  }
  .nav-actions { display: flex; flex-direction: row; padding: .75rem 1rem 1rem; border-bottom: none; }
  .nav-menu.open, .nav-actions.open { display: flex; }
  .nav-toggle { display: flex; }

  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,.04); padding-left: 1rem; }
  .has-dropdown { flex-direction: column; }

  .hero-content { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .industry-panel.active { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

/* ── Performance: lazy section fade-in on scroll ──────── */
.section-lazy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Performance: image fade-in on load ───────────────── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s ease;
}
img[loading="lazy"].img-loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ── Performance: reduce motion for accessibility ─────── */
@media (prefers-reduced-motion: reduce) {
  .section-lazy, img[loading="lazy"] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
