/* ============================================================
   SDK Marketing — Global Stylesheet
   Colors extracted from brand logo:
     Navy:    #1B2A4A
     Teal:    #2B7A8C
     Mint:    #4ECDC4
     Gray:    #8A8F99
   ============================================================ */

/* ---------- Self-hosted Inter Font (DSGVO-compliant) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-navy: #1B2A4A;
  --color-navy-light: #243656;
  --color-teal: #2B7A8C;
  --color-mint: #4ECDC4;
  --color-gray: #8A8F99;
  --color-gray-light: #C5C8CE;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-bg-dark: #0F1A2E;
  --color-text: #1B2A4A;
  --color-text-light: #5A6170;
  --gradient-accent: linear-gradient(135deg, var(--color-teal), var(--color-mint));
  --gradient-hero: linear-gradient(160deg, #0F1A2E 0%, #1B2A4A 50%, #243656 100%);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(27, 42, 74, .08);
  --shadow-md: 0 4px 16px rgba(27, 42, 74, .1);
  --shadow-lg: 0 8px 32px rgba(27, 42, 74, .12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
p  { font-size: 1rem; }

.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.0625rem;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(78, 205, 196, .35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-outline-dark:hover {
  background: var(--color-navy);
  color: #fff;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 74, .06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--color-navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.lang-toggle:hover {
  background: var(--color-bg-alt);
}

.lang-toggle .active {
  color: var(--color-navy);
}

.nav-cta {
  padding: 10px 22px;
  font-size: .875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(78, 205, 196, .18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 122, 140, .15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(43, 122, 140, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 24px;
  font-size: .8125rem;
  color: var(--color-mint);
  font-weight: 500;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

/* ---------- Sections Shared ---------- */
section {
  padding: 96px 0;
}

section:nth-child(even):not(.hero) {
  background: var(--color-bg-alt);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: .9375rem;
  line-height: 1.65;
}

/* ---------- How it Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--color-text-light);
  font-size: .9375rem;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--color-gray-light);
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  transition: box-shadow var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(43, 122, 140, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: .9375rem;
}

/* ---------- Niches ---------- */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.niche-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  font-family: inherit;
  color: inherit;
  text-align: center;
}

.niche-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.niche-card.active {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 2px rgba(43, 122, 140, .15);
}

.niche-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 122, 140, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: background var(--transition);
}

.niche-card.active .niche-icon {
  background: rgba(43, 122, 140, .15);
}

.niche-icon svg {
  width: 20px;
  height: 20px;
}

.niche-card h3 {
  font-size: .875rem;
  margin: 0;
  white-space: nowrap;
}

.niche-chevron {
  width: 16px;
  height: 16px;
  color: var(--color-text-light);
  opacity: .4;
  transition: transform .3s ease, opacity .3s ease;
}

.niche-card:hover .niche-chevron {
  opacity: .7;
}

.niche-card.active .niche-chevron {
  transform: rotate(180deg);
  opacity: .7;
  color: var(--color-teal);
}

.niche-hint {
  text-align: center;
  font-size: .8125rem;
  color: var(--color-text-light);
  opacity: .6;
  margin-top: 16px;
}

.niche-detail {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: .8125rem;
  color: var(--color-text-light);
  line-height: 1.5;
  transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
  margin-top: 0;
}

.niche-card.active .niche-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.stat-card p {
  color: var(--color-text-light);
  font-size: .9375rem;
  line-height: 1.65;
}

.stats-example {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, .8);
}

.stats-example h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.stats-example p {
  font-size: .9375rem;
  line-height: 1.7;
}

.stats-example strong {
  color: var(--color-mint);
}

/* ---------- Revenue Share ---------- */
.revenue-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto 24px;
}

.revenue-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
}

.revenue-you {
  background: var(--color-bg-dark);
  color: #fff;
}

.revenue-us {
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
}

.revenue-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.revenue-you .revenue-icon {
  background: rgba(78, 205, 196, .15);
  color: var(--color-mint);
}

.revenue-us .revenue-icon {
  background: rgba(43, 122, 140, .1);
  color: var(--color-teal);
}

.revenue-card h3 {
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.revenue-card ul {
  list-style: none;
  padding: 0;
}

.revenue-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: .9375rem;
  line-height: 1.5;
}

.revenue-you li {
  color: rgba(255, 255, 255, .75);
}

.revenue-us li {
  color: var(--color-text-light);
}

.revenue-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.revenue-you li::before {
  background: var(--color-mint);
}

.revenue-us li::before {
  background: var(--color-teal);
}

.revenue-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.revenue-divider-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.revenue-divider-icon svg {
  width: 20px;
  height: 20px;
}

.revenue-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: .9375rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Tools Strip ---------- */
.tools-section {
  padding: 64px 0;
}

.tools-subtitle {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 32px;
}

.tools-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .08);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: box-shadow var(--transition), transform var(--transition);
}

.tool-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tool-badge svg {
  color: var(--color-teal);
}

/* ---------- Mid-page CTA ---------- */
.cta-section {
  padding: 48px 0;
}

.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 205, 196, .15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.0625rem;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(27, 42, 74, .08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--color-bg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-navy);
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--color-teal);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: .9375rem;
  line-height: 1.7;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: var(--radius-md);
  padding: 40px 28px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: 2rem;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-teal);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p:last-child {
  color: var(--color-text-light);
  font-size: .9375rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(27, 42, 74, .15);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: .9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(43, 122, 140, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
}

.form-status {
  margin-top: 12px;
  font-size: .875rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  color: var(--color-teal);
}

.form-status.error {
  display: block;
  color: #D64545;
}

.contact-meeting {
  background: var(--color-bg);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
}

.contact-meeting h3 {
  margin-bottom: 8px;
}

.contact-meeting > p {
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.meeting-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 122, 140, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-teal);
}

.meeting-icon svg {
  width: 28px;
  height: 28px;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-text-light);
  font-size: .875rem;
}

.contact-email a {
  color: var(--color-teal);
  font-weight: 500;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, .65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .9375rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-col h4 {
  color: #fff;
  font-size: .9375rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: .875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-mint);
}

.footer-social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.footer-social-link svg {
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--color-mint);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, .85);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: .875rem;
  flex: 1;
  min-width: 280px;
}

.cookie-inner a {
  color: var(--color-mint);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: .8125rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Legal Pages ---------- */
.legal-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  color: var(--color-text-light);
  font-size: .875rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.0625rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-light);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-page a {
  color: var(--color-teal);
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.125rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero .container {
    padding: 60px 24px;
  }

  section {
    padding: 64px 0;
  }

  .revenue-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .niches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .revenue-divider {
    padding: 8px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .niche-card {
    padding: 16px 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
