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

:root {
  --navy: #0B1120;
  --navy-mid: #131C31;
  --navy-light: #1A2540;
  --blue: #1E56E0;
  --blue-hover: #1745B8;
  --blue-muted: #3B6DE8;
  --accent: #B8962E;
  --accent-hover: #A6872A;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-50: #F4F5F7;
  --gray-100: #ECEDF0;
  --gray-200: #D8DAE0;
  --gray-300: #B8BBC4;
  --gray-400: #8A8F9C;
  --gray-500: #6B7080;
  --gray-600: #4A4F5C;
  --gray-700: #2E3340;
  --gray-800: #1A1E28;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.375rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p {
  color: var(--gray-600);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,86,224,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.9375rem;
}

.btn svg, .btn i {
  width: 16px;
  height: 16px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(11,17,32,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger svg {
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: var(--gray-600) !important;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--navy) !important;
  background: var(--gray-50);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--blue);
  padding: 9px 20px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--blue-hover) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 150px 0 100px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-overline::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.05;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  padding-bottom: 24px;
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero p.hero-desc {
  font-size: 1.0625rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero animated card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-card-row:last-of-type {
  margin-bottom: 24px;
}

.hero-kpi {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-kpi-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.hero-kpi-label {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 16px 16px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-bar {
  flex: 1;
  height: var(--h);
  background: var(--blue);
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: bottom;
  opacity: 0;
}

.hero-bar:nth-child(1) { animation-delay: 0.8s; }
.hero-bar:nth-child(2) { animation-delay: 0.95s; }
.hero-bar:nth-child(3) { animation-delay: 1.1s; }
.hero-bar:nth-child(4) { animation-delay: 1.25s; }

.hero-bar.accent {
  background: var(--accent);
}

.hero-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  color: var(--gray-500);
  font-weight: 500;
}

@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

/* Hero entrance animations */
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== IMAGE BAND ===== */
.image-band {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.image-band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 24px;
}

.image-band-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,17,32,0.15) 0%, transparent 30%, transparent 70%, rgba(244,245,247,0.15) 100%);
  z-index: 1;
}

/* ===== PATTERN BG ===== */
.pattern-bg {
  background-image: radial-gradient(circle at 1px 1px, var(--gray-200) 0.5px, transparent 0);
  background-size: 32px 32px;
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 0;
}

.section-dark {
  background: var(--navy);
}

.section-alt {
  background: var(--gray-50);
}

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

/* ===== SERVICES GRID (Home) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

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

.service-number {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

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

/* ===== IMAGE BLOCK ===== */
.img-block {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.img-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== SPLIT SECTION ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-content .section-label {
  margin-bottom: 10px;
}

.split-content h2 {
  margin-bottom: 18px;
}

.split-content > p {
  margin-bottom: 24px;
}

/* ===== FEATURE LIST ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(184,150,46,0.12), rgba(184,150,46,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-item h4 {
  margin-bottom: 2px;
  font-size: 0.9375rem;
}

.feature-item p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CAPABILITY LIST (checkmarks) ===== */
.cap-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 450;
}

.cap-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ===== STATS ROW ===== */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(184,150,46,0.08) 0%, rgba(30,86,224,0.05) 40%, transparent 70%);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
  position: relative;
}

.stat-block {
  text-align: center;
  padding: 0 12px;
}

.stat-block:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, var(--white) 60%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.testimonial-card:hover {
  border-left-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.testimonial-text::before {
  content: '\201C';
  display: block;
  font-size: 2rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-100);
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
}

.testimonial-role {
  color: var(--gray-400);
  font-size: 0.75rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1B35 40%, #111E3A 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,86,224,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,78,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--gray-400);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 56px 0 28px;
  border-top: 2px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer h4 {
  color: var(--gray-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: var(--gray-500);
  font-size: 0.875rem;
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-muted);
  width: 14px;
  height: 14px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-500);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gray-300);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 150px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 60%;
  background: linear-gradient(135deg, rgba(30,86,224,0.06), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  color: var(--accent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 640px;
  padding-bottom: 22px;
  position: relative;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.0625rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ===== SERVICE DETAIL (Services page) ===== */
.service-detail {
  padding: 80px 0;
}

.service-detail + .service-detail {
  border-top: 1px solid var(--gray-100);
}

.service-detail-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.35s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--gray-200);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(184,150,46,0.1), rgba(184,150,46,0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.value-card p {
  font-size: 0.9375rem;
}

/* ===== PROCESS / APPROACH ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 32px 24px;
  border-left: 2px solid var(--accent);
  position: relative;
  transition: all 0.35s ease;
}

.process-step:hover {
  transform: translateY(-2px);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 32px;
  left: -5px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(184,150,46,0.2);
}

.process-number {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,86,224,0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-info-panel {
  padding: 36px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.contact-info-panel h3 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.contact-info-panel > p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-list-item {
  display: flex;
  gap: 14px;
}

.contact-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(184,150,46,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-list-item h4 {
  color: var(--gray-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-list-item p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.info-box {
  padding: 20px;
  background: rgba(184,150,46,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(184,150,46,0.15);
}

.info-box h4 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.info-box p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item h4 {
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.faq-item p {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== PLATFORMS STRIP ===== */
.platforms-strip {
  background: var(--navy);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.platforms-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.platform-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 8px;
}

.platform-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.platform-name:hover {
  color: rgba(255,255,255,0.9);
}

.platform-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===== CALCULATOR TOOLS ===== */
.tools-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.calc-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 320px;
}

.calc-input-side {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}

.calc-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-label-row svg {
  color: var(--accent);
  flex-shrink: 0;
}

.calc-title {
  font-size: 1.375rem;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.02em;
}

.calc-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
}

.calc-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  flex: 1;
}

.calc-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-prefix {
  position: absolute;
  left: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  pointer-events: none;
  z-index: 1;
}

.calc-field input {
  width: 100%;
  padding: 13px 14px 13px 36px;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition);
  font-weight: 500;
}

.calc-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.1);
  background: var(--white);
}

.calc-field input::placeholder {
  color: var(--gray-300);
  font-weight: 400;
}

.calc-formula {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  padding: 10px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: auto;
}

/* Result panel (dark side) */
.calc-result-side {
  background: linear-gradient(160deg, var(--navy) 0%, #0F1A30 100%);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-result-side::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(184,150,46,0.08), transparent 70%);
  border-radius: 50%;
}

.calc-result-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.calc-result-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.calc-result-value.has-value {
  background: linear-gradient(135deg, var(--white) 50%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gauge */
.calc-gauge {
  width: 100%;
  margin-bottom: 16px;
}

.calc-gauge-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.calc-gauge-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
  background: var(--accent);
  width: 0%;
}

.calc-gauge-fill.poor { background: #E04E4E; }
.calc-gauge-fill.average { background: #E09B4E; }
.calc-gauge-fill.good { background: var(--accent); }
.calc-gauge-fill.excellent { background: #4EBE6A; }

.calc-gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Rating badge */
.calc-rating {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  min-height: 26px;
}

.calc-rating.poor { background: rgba(224,78,78,0.15); color: #E04E4E; }
.calc-rating.average { background: rgba(224,155,78,0.15); color: #E09B4E; }
.calc-rating.good { background: rgba(184,150,46,0.15); color: var(--accent); }
.calc-rating.excellent { background: rgba(78,190,106,0.15); color: #4EBE6A; }

.calc-result-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 260px;
}

/* Explainer */
.calc-explainer {
  padding: 24px 40px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.calc-explainer h3 {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.calc-explainer p {
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.calc-explainer p:last-child {
  margin-bottom: 0;
}

.calc-explainer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184,150,46,0.3);
  transition: text-decoration-color var(--transition);
}

.calc-explainer a:hover {
  text-decoration-color: var(--accent);
}

/* ===== BLOG ARTICLE ===== */
.blog-card-category {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
}

.blog-card-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}

.blog-article-hero {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: var(--navy);
}

.blog-article-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.blog-article-header {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 56px;
  margin-bottom: 48px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  transition: gap var(--transition);
}

.blog-back:hover { gap: 10px; }

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

.blog-article-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 28px;
}

.blog-article-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-body > p:first-child::first-letter {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.75rem;
  float: left;
  line-height: 0.82;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--navy);
  font-weight: 700;
}

.blog-article-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--gray-600);
}

.blog-article-body h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.625rem;
  margin-top: 56px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.blog-article-body h3 {
  font-size: 1.1875rem;
  margin-top: 40px;
  margin-bottom: 14px;
  font-weight: 700;
}

.blog-article-body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184,150,46,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.blog-article-body a:hover {
  text-decoration-color: var(--accent);
}

.blog-article-body strong {
  color: var(--navy);
  font-weight: 700;
}

.blog-article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 40px 0;
  padding: 20px 28px;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
}

.blog-article-body blockquote p {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 0;
}

.blog-article-cta {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 48px 40px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #d4b44a, var(--accent));
}

.blog-article-cta h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
}

.blog-article-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    max-width: 480px;
  }

  .split {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .platforms-strip-inner {
    gap: 14px;
    justify-content: flex-start;
  }

  .platform-label {
    width: 100%;
    margin-bottom: 4px;
  }

  .image-band {
    height: 220px;
  }

  .image-band-quote {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 36px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-dropdown-trigger svg {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    padding-left: 16px;
    border-left: 2px solid rgba(255,255,255,0.1);
  }

  .nav-dropdown-menu a {
    padding: 0 !important;
    color: var(--gray-400) !important;
    font-size: 0.875rem !important;
  }

  .nav-dropdown-menu a:hover {
    color: var(--white) !important;
    background: none;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-right {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-reverse {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-block:not(:last-child) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 110px 0 56px;
  }

  .page-hero h1::after,
  .hero h1::after {
    width: 36px;
  }

  .service-detail-image {
    height: 260px;
  }

  .calc-layout {
    grid-template-columns: 1fr;
  }

  .calc-input-side {
    padding: 28px 24px;
  }

  .calc-result-side {
    padding: 28px 24px;
    min-height: 220px;
  }

  .calc-result-value {
    font-size: 2.25rem;
  }

  .calc-explainer {
    padding: 20px 24px;
  }

  .blog-article-hero img {
    height: 300px;
  }

  .blog-article-header {
    padding-top: 32px;
  }

  .blog-article-header h1 {
    font-size: 1.625rem;
    padding-bottom: 20px;
  }

  .blog-article-body > p:first-child::first-letter {
    font-size: 3rem;
  }

  .blog-article-body h2 {
    margin-top: 40px;
    font-size: 1.375rem;
  }

  .blog-article-cta {
    padding: 32px 24px;
    margin-top: 48px;
  }
}
