/* ============================================================
   SUPERFOOD CONSULTING — STYLES
   Brand: Dark Navy #1a1a3e | Yellow #f5c800 | White #ffffff
   ============================================================ */

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

:root {
  --navy: #1a1a3e;
  --navy-light: #2a2a5e;
  --yellow: #f5c800;
  --yellow-light: #fff176;
  --purple: #9b59b6;
  --orange: #e67e22;
  --white: #ffffff;
  --off-white: #f8f8fc;
  --gray-100: #f0f0f8;
  --gray-200: #e2e2f0;
  --gray-400: #9090b0;
  --gray-700: #444460;
  --text: #1a1a3e;
  --text-muted: #6060a0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,26,62,0.10);
  --shadow-md: 0 8px 40px rgba(26,26,62,0.14);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.section-title { margin-bottom: 12px; }
.section-title.center { text-align: center; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 48px; }
.section-subtitle.center { text-align: center; }

/* ============================================================
   LOGO BADGE
   ============================================================ */
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 10px;
  padding: 8px 16px;
  line-height: 1;
}
.logo-badge.large { padding: 12px 22px; border-radius: 14px; }
.logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-badge.large .logo-text { font-size: 1.6rem; }
.logo-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: 10px;
}
.logo-sub.large { font-size: 1.4rem; margin-left: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
}
.btn-primary:hover { background: var(--navy-light); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  padding: 12px 24px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 14px 32px;
}
.btn-white:hover { background: var(--yellow); box-shadow: var(--shadow-md); }

.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.partner-text-logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile .btn { margin-top: 16px; align-self: flex-start; }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--off-white);
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.partner-logo {
  height: 28px;
  width: auto;
  max-width: 110px;
  max-height: 28px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

.hero-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-services li {
  padding-left: 20px;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-services li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 900;
}
.hero-services strong { color: var(--navy); }
.hero-services em { color: var(--text-muted); font-style: normal; }

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-social p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.fmcg-brands { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.brand-chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.brand-logo-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
}
.brand-logo-chip img {
  height: 24px;
  width: auto;
  max-width: 100px;
  display: block;
  object-fit: contain;
}

/* Hero right */
.hero-intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.intro-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 28px;
}
.highlight-purple { color: #9b59b6; }
.highlight-orange { color: #e67e22; }

/* Simon photo placeholder */
.simon-photo-wrap { display: flex; justify-content: center; }
.simon-headshot {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
}
.simon-headshot.large {
  width: 100%;
  height: 360px;
}
.simon-photo-placeholder {
  width: 220px;
  height: 280px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gray-200);
}
.simon-photo-placeholder.large {
  width: 100%;
  height: 360px;
}
.simon-burst {
  position: absolute;
  right: -20px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  background: var(--navy);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.08;
  transform: scale(2);
}
.simon-burst.large { width: 160px; height: 160px; right: -30px; bottom: 60px; }
.photo-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  position: relative;
  z-index: 1;
}
.photo-label small { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); display: block; margin-top: 4px; }
.photo-label.large { font-size: 1.4rem; }

/* ============================================================
   CHECKLIST SECTION
   ============================================================ */
.checklist-section {
  padding: 80px 0;
  background: var(--white);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}
.check-item:hover { border-color: var(--navy); background: var(--white); }
.check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--gray-400);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.check-item input[type="checkbox"]:checked {
  background: var(--navy);
  border-color: var(--navy);
}
.check-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 13px;
  font-weight: 900;
}
.check-item:has(input:checked) {
  border-color: var(--navy);
  background: #eeeeff;
}
.checklist-cta { text-align: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   SOFTWARE SECTION
   ============================================================ */
.software-section {
  padding: 80px 0;
  background: var(--white);
}
.software-header {
  text-align: center;
  margin-bottom: 48px;
}
.software-header .logo-badge { margin: 0 auto 20px; }
.superfood-logo-block { display: flex; justify-content: center; margin-bottom: 20px; }

.software-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
}
.check-green { font-size: 1.1rem; }
.badge-free {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.integration-logos {
  text-align: center;
  margin-bottom: 48px;
}
.integration-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 16px;
}
.integration-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.int-logo {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* Portal Mockup */
.portal-preview {
  max-width: 760px;
  margin: 0 auto;
}
.portal-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.mockup-header {
  background: var(--gray-100);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-400);
}
.mockup-dots span:nth-child(1) { background: #fc5c57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 300px;
}
.mockup-sidebar {
  background: var(--off-white);
  border-right: 1px solid var(--gray-200);
  padding: 16px 0;
}
.sidebar-item {
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.sidebar-sub {
  padding: 7px 28px;
  font-size: 0.82rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: background var(--transition);
}
.sidebar-sub:hover { background: var(--gray-200); }
.sidebar-sub.active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.mockup-main { padding: 20px; }
.mockup-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mockup-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.candidate-info { display: flex; align-items: center; gap: 12px; }
.candidate-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.candidate-info strong { display: block; font-size: 0.95rem; }
.candidate-info small { color: var(--text-muted); font-size: 0.8rem; }
.mockup-edit-btn {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.mockup-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 16px; }
.tab {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.mockup-content p { font-size: 0.875rem; font-weight: 700; margin-bottom: 12px; }
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mockup-row small { color: var(--text-muted); font-size: 0.75rem; }
.file-chip {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.82rem;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  padding: 64px 0;
  background: var(--gray-100);
}
.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.stars { font-size: 1.5rem; color: var(--yellow); margin-bottom: 16px; letter-spacing: 2px; }
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}
blockquote::before { content: '\201C'; }
blockquote::after { content: '\201D'; }
cite { font-size: 0.9rem; color: var(--text-muted); font-style: normal; font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 80px 0;
  background: var(--off-white);
}
.pricing-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.pricing-header-row {
  display: grid;
  grid-template-columns: 220px 160px 1fr;
  gap: 24px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-row {
  display: grid;
  grid-template-columns: 220px 160px 1fr;
  gap: 24px;
  padding: 20px 24px;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--off-white); }
.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.module-badge.purple { background: #7c3aed; }
.module-badge.red { background: #dc2626; }
.module-badge.blue { background: #2563eb; }
.module-badge.teal { background: #0891b2; }
.module-badge.orange { background: #ea580c; }
.module-badge.purple-dark { background: #6d28d9; font-size: 0.75rem; }

.pricing-cost {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-cost.free { color: #16a34a; }
.pricing-notes {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.pricing-total {
  background: var(--yellow);
  display: inline-block;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.about-logo-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--gray-700); margin-bottom: 18px; line-height: 1.7; }
.about-content h3 { margin: 28px 0 12px; }
.cv-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-left: 0;
}
.cv-section li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.cv-section li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.cv-section p { margin-bottom: 10px; }
.about-values {
  background: var(--off-white);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0 32px;
}
.about-values p { margin-bottom: 8px; color: var(--navy); }
.about-values p:last-child { margin-bottom: 0; color: var(--gray-700); }

.about-sidebar { position: sticky; top: 88px; }
.intro-headline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
  margin-bottom: 20px;
}
.intro-headline-card .intro-headline { margin-bottom: 24px; }
.simon-photo-large { margin-top: 0; }

.superfood-portal-logo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
}
.portal-tag {
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--navy); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-body {
  padding: 0 24px 24px;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-body p { margin-bottom: 12px; }
.faq-body ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-body li { list-style: disc; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 72px 0;
}
.cta-band-inner {
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .logo-badge { background: rgba(255,255,255,0.15); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.8); }
.footer-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social { margin-left: auto; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .software-features-grid { grid-template-columns: 1fr; }
  .pricing-header-row,
  .pricing-row { grid-template-columns: 1fr; gap: 8px; }
  .pricing-header-row { display: none; }
  .pricing-cost { font-size: 1.3rem; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { margin-left: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner > .btn { display: none; }
  .nav-toggle { display: flex; }
  section { padding-top: 56px; padding-bottom: 56px; }
  .hero { padding-top: 48px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO H1 — visually hidden but SEO-present
   ============================================================ */
.hero-h1 {
  font-size: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  clip: rect(0,0,0,0);
  position: absolute;
  white-space: nowrap;
}

/* ============================================================
   UNLEASHED SECTION
   ============================================================ */
.unleashed-section {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.unleashed-section .section-title { color: var(--white); }
.unleashed-section .section-subtitle { color: rgba(255,255,255,0.7); }

.partner-badge-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.unleashed-badge { text-align: center; }

.unleashed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.unleashed-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.unleashed-card.highlight {
  border-color: var(--yellow);
  background: rgba(245,200,0,0.06);
}
.unleashed-logo-row {
  margin-bottom: 20px;
}
.int-logo.big {
  font-size: 1rem;
  padding: 10px 28px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.unleashed-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.unleashed-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.unleashed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.unleashed-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.unleashed-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.unleashed-why h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.unleashed-cta-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}
.unleashed-cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.unleashed-cta-box p:last-of-type { margin-bottom: 16px; }

.unleashed-summary-text {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: center;
  padding: 24px 32px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.unleashed-summary-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.unleashed-summary-text strong { color: rgba(255,255,255,0.9); }

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

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

.hero-left, .hero-right {
  animation: fadeUp 0.6s ease both;
}
.hero-right { animation-delay: 0.15s; }

.service-card {
  animation: fadeUp 0.5s ease both;
}

/* Staggered service cards */
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.10s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.20s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.30s; }

/* ============================================
   TOOLS BAR
   ============================================ */
.tools-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px 24px;
  text-align: center;
}
.tools-bar-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.tools-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.tool-logo {
  height: 24px;
  width: auto;
  max-width: 100px;
  max-height: 24px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
  flex-shrink: 0;
  padding: 0 24px;
}
.tool-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.tool-text-logo {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  opacity: 0.55;
  padding: 0 24px;
  flex-shrink: 0;
}
.tools-divider {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: var(--gray-200);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .tools-bar-logos { flex-wrap: wrap; gap: 12px 0; }
  .tool-logo, .tool-text-logo { padding: 0 16px; }
}
