/*
Theme Name: SPK Uyum Pro
Theme URI: https://spkuyum.com
Author: Soft Marketing
Author URI: https://softmarketing.com
Description: SPK Uyum ve Raporlama alanına özel kurumsal WordPress teması. Koyu mavi, ciddi ve güvenilir tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: spk-uyum-pro
Tags: corporate, business, compliance, reporting, two-columns, custom-menu
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy-950: #050d1a;
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #162d55;
  --navy-600: #1e3d70;
  --navy-500: #2a52a0;
  --navy-400: #3b6bc5;
  --blue-300: #7aaee8;
  --blue-200: #a8c8f0;
  --blue-100: #d4e6f8;

  --gold-500: #c9a227;
  --gold-400: #e0b73a;
  --gold-300: #f0cb60;

  --gray-900: #111318;
  --gray-800: #1a1f28;
  --gray-700: #262d3a;
  --gray-600: #3a4455;
  --gray-500: #7a8ca8;
  --gray-400: #a0b0c8;
  --gray-300: #c4d0df;
  --gray-200: #d5dde8;
  --gray-100: #edf1f6;
  --gray-50:  #f5f7fa;
  --white:    #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.20);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.25);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);

  --container: 1200px;
  --section-py: 96px;
  --header-h:  76px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy-800);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--navy-700); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-py); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }
.text-center .section-label { margin-inline: auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}
.btn-primary:hover {
  background: var(--navy-600);
  border-color: var(--navy-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,45,85,.35);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.btn-outline:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .8rem;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(5,13,26,.97);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy-600);
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text .tagline {
  font-size: .68rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Primary nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: #c0cfe0;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

#primary-nav a:hover,
#primary-nav a.current-menu-item {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

#primary-nav a:hover::after,
#primary-nav a.current-menu-item::after {
  transform: scaleX(1);
}

.header-cta { margin-left: 20px; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-950);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(30,61,112,.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 70%, rgba(42,82,160,.25) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-accent {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: .08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 100px;
  background: rgba(201,162,39,.08);
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
}

.hero h1 .highlight {
  color: var(--gold-400);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: #b8d0ee;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-stat-item {}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: #a0b4cc;
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-900);
  border-block: 1px solid rgba(255,255,255,.06);
  padding-block: 28px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-label {
  font-size: .78rem;
  font-weight: 600;
  color: #8899b0;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  flex: 1;
}

.trust-logo-item {
  font-size: .8rem;
  font-weight: 600;
  color: #8899b0;
  white-space: nowrap;
  letter-spacing: .04em;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-logo-item:hover { color: #c4d0df; }

.trust-logo-item .dot {
  width: 6px;
  height: 6px;
  background: var(--navy-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--gray-50);
}

.services-header {
  margin-bottom: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--blue-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-400);
  stroke: currentColor;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.service-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .03em;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover { color: var(--gold-500); gap: 10px; }

.service-link svg { width: 14px; height: 14px; }

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.why-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
}

.why-section .section-title { color: #ffffff; }
.why-section .section-subtitle { color: #b8d0ee; }
.why-section .section-label { color: var(--gold-400); }
.why-section .section-label::before { background: var(--gold-400); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(59,107,197,.25);
  border: 1px solid rgba(59,107,197,.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature-icon svg { width: 20px; height: 20px; color: var(--blue-300); stroke: currentColor; }

.why-feature-text h4 { color: #ffffff; font-size: 1rem; margin-bottom: 6px; }
.why-feature-text p { color: #a8bdd4; font-size: .88rem; margin: 0; line-height: 1.6; }

/* Compliance card visual */
.compliance-visual {
  background: rgba(10,22,40,.8);
  border: 1px solid rgba(59,107,197,.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}

.compliance-visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cv-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-icon svg { width: 20px; height: 20px; color: var(--gold-400); stroke: currentColor; }

.cv-title { color: #ffffff; font-size: .95rem; font-weight: 600; font-family: var(--font-body); }
.cv-sub { color: #8899b0; font-size: .78rem; }

.compliance-items { display: flex; flex-direction: column; gap: 14px; }

.compliance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition);
}
.compliance-item:hover { background: rgba(255,255,255,.06); }

.ci-status {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-status.done  { background: rgba(34,197,94,.15); }
.ci-status.warn  { background: rgba(234,179,8,.15);  }
.ci-status.error { background: rgba(239,68,68,.15);  }

.ci-status svg { width: 14px; height: 14px; stroke: currentColor; }
.ci-status.done  svg { color: #22c55e; }
.ci-status.warn  svg { color: #eab308; }
.ci-status.error svg { color: #ef4444; }

.ci-text { flex: 1; }
.ci-title { color: #dde8f4; font-size: .85rem; font-weight: 500; }
.ci-desc  { color: #8899b0; font-size: .76rem; }

.ci-score {
  font-size: .82rem;
  font-weight: 700;
  color: #7aaee8;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--navy-700), var(--blue-300), var(--navy-700));
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--navy-700);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(22,45,85,.12);
}

.step-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.step-desc {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-50); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--gold-400);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: .88rem; color: var(--navy-800); }
.author-title { font-size: .78rem; color: var(--gray-400); }

.testimonial-stars { margin-bottom: 16px; color: var(--gold-400); font-size: .85rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: #b8d0ee; max-width: 480px; font-size: 1rem; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   BLOG / NEWS SECTION
   ============================================================ */
.blog-section { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  position: relative;
  overflow: hidden;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
}

.blog-card-body { padding: 24px; }

.blog-meta {
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta span::before {
  content: '•';
  margin-right: 8px;
}
.blog-meta span:first-child::before { display: none; }

.blog-card h4 {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover h4 { color: var(--navy-500); }

.blog-card p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.blog-read-more:hover { color: var(--gold-500); gap: 10px; }
.blog-read-more svg { width: 14px; height: 14px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--gray-50); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--gold-400); stroke: currentColor; }

.contact-info-text h5 { font-size: .88rem; color: var(--gray-400); font-weight: 500; margin-bottom: 4px; font-family: var(--font-body); }
.contact-info-text p { font-size: .95rem; color: var(--navy-700); font-weight: 600; margin: 0; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1/-1; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(22,45,85,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-main {
  padding-block: 72px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; color: #8899b0; line-height: 1.7; max-width: 280px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0b0c8;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--navy-700);
  border-color: var(--navy-600);
  color: var(--white);
}

.social-link svg { width: 16px; height: 16px; stroke: currentColor; }

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a0b0c8;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .88rem;
  color: #8899b0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--navy-500);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition);
}

.footer-links a:hover { color: #dde8f4; }
.footer-links a:hover::before { background: var(--gold-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: .82rem;
  color: #7a8ca8;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: #7a8ca8;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: #dde8f4; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--navy-900);
  padding-block: 96px 64px;
  padding-top: calc(var(--header-h) + 64px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: #b8d0ee; font-size: 1.05rem; max-width: 600px; margin: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #7a8ca8;
  margin-bottom: 24px;
}

.breadcrumb a { color: #a0b0c8; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .sep { color: #4a5a70; }

/* ============================================================
   WIDGETS
   ============================================================ */
.widget { margin-bottom: 32px; }

.widget-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy-700);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 24px auto; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--gray-400); text-align: center; margin-top: 8px; }

.sticky { position: relative; }

.gallery { display: grid; gap: 8px; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area { margin-top: 64px; }
.comment-list { list-style: none; padding: 0; }

.comment {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  background: var(--white);
}

.comment-author-name { font-weight: 600; color: var(--navy-700); font-size: .9rem; }
.comment-date { font-size: .78rem; color: var(--gray-400); }
.comment-content { font-size: .9rem; color: var(--gray-600); margin-top: 12px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition);
}

.pagination a:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}

.pagination .current {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(59,107,197,.35); }
  70%  { box-shadow: 0 0 0 10px rgba(59,107,197,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,107,197,0); }
}

.animate-fadeInUp { animation: fadeInUp .6s ease-out both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
.animate-delay-4 { animation-delay: .4s; }
.animate-delay-5 { animation-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --header-h: 64px;
  }
  #primary-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .trust-bar-inner { flex-wrap: wrap; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Mobile menu open */
body.menu-open #primary-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px;
  gap: 4px;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}

body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
