/* =============================================
   CyberSynergy360 — style.css
   ============================================= */

:root {
  --slate:       #1a2e3b;
  --slate-mid:   #243647;
  --teal:        #00a878;
  --teal-light:  #2fc495;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg:   0 10px 40px rgba(0, 0, 0, 0.18);
  --transition:  0.2s ease;
  --max-width:   1100px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

/* =============================================
   Navigation
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 46, 59, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--transition);
  overflow: visible;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text { font-size: 17px; font-weight: 800; color: var(--white); }
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--teal);
}

.nav-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--slate) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  transition: background var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-light) !important; color: var(--slate) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   Hero (home page, full height)
   ============================================= */
#hero {
  background: var(--slate);
  background-image:
    radial-gradient(ellipse at 80% 30%, rgba(0, 168, 120, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 85%, rgba(0, 168, 120, 0.06) 0%, transparent 40%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 112px;
}
.hero-content { max-width: 720px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 120, 0.12);
  border: 1px solid rgba(0, 168, 120, 0.28);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.7;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-h1-accent {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1.06;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--slate);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 2px solid var(--teal);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--teal);
}
.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: var(--white);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--slate);
  color: var(--slate);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--slate);
  color: var(--white);
}
.btn-teal-outline {
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: var(--slate);
}

/* =============================================
   Section labels + headers
   ============================================= */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-label-light {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
}
.section-header p {
  font-size: 17px;
  max-width: 520px;
  margin: 16px auto 0;
}
.section-header.dark h2 { color: var(--white); }
.section-header.dark p { color: rgba(255, 255, 255, 0.58); }
.section-header.light h2 { color: var(--slate); }
.section-header.light p { color: var(--gray-500); }

/* =============================================
   Trust Strip
   ============================================= */
#trust {
  background: var(--slate-mid);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 500;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   Four Pillars (home)
   ============================================= */
#pillars { background: var(--slate); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.pillar-card:hover {
  background: rgba(0, 168, 120, 0.07);
  border-color: rgba(0, 168, 120, 0.30);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 168, 120, 0.09);
}
.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}
.pillar-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}
.pillar-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

/* =============================================
   Who We Help (home)
   ============================================= */
#who-we-help { background: var(--gray-50); }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}
.help-card:hover {
  border-color: rgba(0, 168, 120, 0.35);
  box-shadow: 0 8px 28px rgba(0, 168, 120, 0.08);
}
.help-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.help-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.35;
}
.help-answer {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* =============================================
   CTA Banner
   ============================================= */
#cta-banner {
  background: var(--teal);
  padding: 72px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: 30px;
  color: var(--slate);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cta-banner-text p {
  font-size: 16px;
  color: rgba(26, 46, 59, 0.75);
  max-width: 540px;
  line-height: 1.7;
}
.btn-slate {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: 2px solid var(--slate);
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-slate:hover {
  background: transparent;
  color: var(--slate);
}

/* =============================================
   Page Header (inner pages)
   ============================================= */
.page-header {
  background: var(--slate);
  background-image:
    radial-gradient(ellipse at 90% 50%, rgba(0, 168, 120, 0.10) 0%, transparent 50%);
  padding: 136px 0 60px;
}
.page-header-inner { max-width: 680px; }
.page-header .section-label-light { margin-bottom: 14px; }
.page-header h1 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
  max-width: 580px;
}

/* =============================================
   Approach Page
   ============================================= */
#dimensions { background: var(--white); }
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.dimension-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dimension-card:hover {
  border-color: rgba(0, 168, 120, 0.30);
  box-shadow: var(--shadow);
}
.dimension-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.dimension-card h3 {
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 16px;
}
.dimension-card p {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.8;
}

#engagement { background: var(--gray-50); }
.steps-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
}

#why-different { background: var(--slate); }
.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.difference-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.difference-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.difference-label.typical { color: rgba(255, 255, 255, 0.40); }
.difference-label.cs360 { color: var(--teal-light); }
.difference-card h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 12px;
}
.difference-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

/* =============================================
   Services Page
   ============================================= */
#services-list { background: var(--white); }
.service-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-question {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.service-block h2 {
  font-size: 28px;
  color: var(--slate);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.25;
}
.service-block .intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}
.service-meta { padding-top: 8px; }
.service-deliverables-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}
.service-deliverables li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.service-for {
  font-size: 13px;
  color: var(--gray-500);
  padding: 12px 16px;
  background: var(--gray-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

/* =============================================
   About Page
   ============================================= */
#company-story { background: var(--gray-50); }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}
.story-highlight {
  position: sticky;
  top: 88px;
}
.story-stat {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 16px;
}
.story-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.story-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.story-text h2 {
  font-size: 34px;
  color: var(--slate);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.story-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 20px;
}

#team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.team-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 168, 120, 0.25);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.team-body { padding: 28px 28px 32px; }
.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.team-card h3 {
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 14px;
}
.team-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}
.team-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

#values { background: var(--gray-50); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: rgba(0, 168, 120, 0.30);
  box-shadow: var(--shadow);
}
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h4 {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* =============================================
   Insights Page
   ============================================= */
#resources { background: var(--white); }
.resource-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
}
.resource-info {
  padding: 40px 40px;
}
.resource-tag {
  display: inline-block;
  background: rgba(0, 168, 120, 0.10);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.resource-info h3 {
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.3;
}
.resource-info p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 8px;
}
.resource-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.resource-form { background: var(--gray-50); padding: 40px 40px; }
.resource-form p {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

#linkedin-section { background: var(--slate); padding: 72px 0; }
.linkedin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.linkedin-text .section-label-light { margin-bottom: 12px; }
.linkedin-text h2 {
  font-size: 30px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.linkedin-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 520px;
  line-height: 1.75;
}

/* =============================================
   Contact Page
   ============================================= */
#contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 {
  font-size: 30px;
  color: var(--slate);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-info p {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--teal); }
.contact-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition);
  color: var(--slate);
}
.contact-item:hover .contact-icon { background: rgba(0, 168, 120, 0.10); }
.contact-form-wrap {
  background: var(--gray-50);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.form-intro {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 168, 120, 0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: var(--slate);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover {
  background: transparent;
  color: var(--teal);
}
.form-notice {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(0, 168, 120, 0.08);
  border: 1px solid rgba(0, 168, 120, 0.25);
  border-radius: var(--radius);
  color: var(--slate);
  font-weight: 600;
  font-size: 15px;
}

/* =============================================
   Footer
   ============================================= */
footer {
  background: var(--slate);
  padding: 44px 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-logo-text span { color: var(--teal); }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.40);
  font-size: 13px;
}
.footer-vat {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}
.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #0A66C2;
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.footer-linkedin:hover {
  background: #0077b5;
  transform: translateY(-2px);
}

/* =============================================
   Cookie Banner
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
}
.cookie-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  margin: 0;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--teal);
  color: var(--slate);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--teal-light); }
.cookie-actions a {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  transition: color var(--transition);
}
.cookie-actions a:hover { color: var(--white); }

/* =============================================
   Legal pages
   ============================================= */
.legal-hero {
  background: var(--slate);
  padding: 136px 0 52px;
}
.legal-hero h1 {
  color: var(--white);
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.legal-hero .last-updated {
  color: rgba(255, 255, 255, 0.40);
  font-size: 13px;
}
.legal-content {
  padding: 60px 0 80px;
  max-width: 760px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  transition: gap var(--transition);
}
.back-link:hover { gap: 10px; }
.legal-content h2 {
  font-size: 19px;
  color: var(--slate);
  margin: 36px 0 12px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 22px;
}
.legal-content ul li { margin-bottom: 6px; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-highlight { position: static; display: flex; gap: 16px; }
  .story-stat { flex: 1; margin-bottom: 0; }
}

@media (max-width: 900px) {
  .help-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .resource-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .page-header { padding: 110px 0 48px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: var(--slate);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: none;
  }
  .nav-toggle { display: flex; }

  .trust-item + .trust-item { border-left: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0 24px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .dimensions-grid { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .linkedin-inner { flex-direction: column; align-items: flex-start; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-form-wrap { padding: 28px; }
  .story-highlight { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-h1, .hero-h1-accent { font-size: 36px; }
  .hero-body { font-size: 16px; }
  .values-grid { grid-template-columns: 1fr; }
}
