@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

/* ========================================
   CSS DESIGN SYSTEM - EN Tercüme
   ======================================== */

:root {
  --primary: #b0e600;
  --primary-dark: #8ab800;
  --primary-darker: #6a8f00;
  --primary-light: #d4f566;
  --primary-lightest: #f0fcc6;
  --primary-bg: #f8fde8;
  --neutral-950: #0a0c08;
  --neutral-900: #141810;
  --neutral-800: #1e2418;
  --neutral-700: #2d3624;
  --neutral-600: #4a5640;
  --neutral-500: #6b7a5e;
  --neutral-400: #8f9c84;
  --neutral-300: #b3bcaa;
  --neutral-200: #d4d9cf;
  --neutral-100: #ebeee8;
  --neutral-50: #f5f7f3;
  --white: #ffffff;
  --error: #dc3545;
  --success: #198754;
  --whatsapp: #25D366;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --side-padding: 40px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--neutral-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.display {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--neutral-950);
}

h1, .h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-950);
}

h2, .h2 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-950);
}

h3, .h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-950);
}

h4, .h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-950);
}

h6, .h6 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--neutral-950);
}

.overline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-darker);
}

.caption {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--neutral-500);
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section--dark {
  background: var(--neutral-950);
  color: var(--neutral-300);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark .h1,
.section--dark .h2,
.section--dark .display {
  color: var(--white);
}

.section--light {
  background: var(--neutral-50);
}

.section--primary-bg {
  background: var(--primary-bg);
}

.text-block {
  max-width: 680px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   GRID
   ======================================== */
.grid {
  display: grid;
  gap: 24px;
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .grid-4, .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--neutral-950);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(176, 230, 0, 0.3);
}

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

.btn-dark:hover {
  background: var(--neutral-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-600);
  border: 1px solid var(--neutral-300);
}

.btn-secondary:hover {
  border-color: var(--neutral-600);
  color: var(--neutral-950);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-darker);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--primary-dark);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-en {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--neutral-950);
}

.logo-tercume {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--neutral-600);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-600);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--neutral-950);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

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

.nav-dropdown-menu-inner {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 260px;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--neutral-600);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-dropdown-item:hover {
  background: var(--neutral-50);
  color: var(--neutral-950);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-950);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px var(--side-padding);
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-menu-link:hover {
  color: var(--neutral-950);
}

.mobile-menu-sub {
  padding-left: 20px;
}

.mobile-menu-sub .mobile-menu-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-500);
}

.mobile-menu-cta {
  margin-top: 24px;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-700);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  :root {
    --side-padding: 20px;
    --section-padding: 48px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-phone {
    display: none;
  }
  .nav-links {
    gap: 20px;
  }
}

/* ========================================
   NAVBAR (actual HTML classes)
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Desktop Nav */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-desktop .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-desktop .nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-600);
  transition: color 0.2s;
  position: relative;
}

.nav-desktop .nav-links li a:hover,
.nav-desktop .nav-links li a.active {
  color: var(--neutral-950);
}

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

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chevron-icon {
  transition: transform 0.2s;
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  background: var(--white);
  min-width: 280px;
}

.dropdown-menu li:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-menu li:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--neutral-600);
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--neutral-50);
  color: var(--neutral-950);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-950);
  transition: all 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-nav {
  padding: 24px var(--side-padding);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links > li > a,
.mobile-nav-links > li > .mobile-dropdown-toggle {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-100);
  width: 100%;
  text-align: left;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  display: none;
}

.mobile-has-dropdown.open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--neutral-500);
}

.mobile-dropdown-menu li a:hover {
  color: var(--neutral-950);
}

.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-phone {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-700);
  text-align: center;
}

/* Responsive Rules for Navbar */
@media (max-width: 768px) {
  .nav-desktop,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-actions .nav-phone {
    display: none;
  }
  .nav-desktop .nav-links {
    gap: 20px;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: 72px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--neutral-950);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .display {
  color: var(--white);
  margin-bottom: 24px;
}

.hero .display .highlight {
  color: var(--primary);
}

.hero p {
  color: var(--neutral-300);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 32px;
}

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

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

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-images {
    display: none;
  }
}

.hero-image-stack {
  position: relative;
  height: 450px;
}

.hero-image-stack img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-stack img:nth-child(1) {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 3;
}

.hero-image-stack img:nth-child(2) {
  width: 240px;
  height: 300px;
  top: 40px;
  right: 0;
  z-index: 2;
}

.hero-image-stack img:nth-child(3) {
  width: 200px;
  height: 250px;
  bottom: 0;
  left: 60px;
  z-index: 1;
}

/* Page Hero (inner pages) */
.page-hero {
  padding-top: 72px;
  background: var(--neutral-950);
}

.page-hero-inner {
  padding: 80px 0 60px;
}

.page-hero .overline {
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--neutral-300);
  max-width: 680px;
  font-size: 17px;
}

.page-hero .btn {
  margin-top: 24px;
}

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

.page-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-hero-images img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.page-hero-images img:first-child {
  grid-row: span 2;
  height: 100%;
}

.page-hero-image-single {
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .page-hero-inner {
    padding: 48px 0 40px;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-images {
    display: none;
  }
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--neutral-900);
  position: relative;
  overflow: hidden;
}

.stats-bar-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}

.stats-bar-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.stat-item .stat-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--neutral-300);
}

@media (max-width: 768px) {
  .stats-bar-inner {
    gap: 24px;
    flex-direction: column;
  }
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-100);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--neutral-500);
}

.card-list {
  margin-top: 16px;
}

.card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--neutral-500);
  margin-bottom: 6px;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-darker);
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 10px;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

/* Image Card */
.card-image {
  overflow: hidden;
  padding: 0;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-image-content {
  padding: 24px;
}

/* Feature Card */
.feature-card {
  text-align: center;
  padding: 40px 32px;
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.feature-card h4 {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .card {
    padding: 24px;
  }
  .feature-card {
    padding: 24px;
  }
}

/* ========================================
   PROCESS / TIMELINE
   ======================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--neutral-200);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--neutral-950);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.process-step img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

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

.process-step p {
  font-size: 13px;
  color: var(--neutral-500);
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    text-align: left;
  }
  .process-step-number {
    margin: 0;
  }
  .process-step img {
    display: none;
  }
  .process-step-content {
    grid-column: 2;
  }
}

/* 3-step process */
.process-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .process-3 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.rating-text {
  font-size: 14px;
  color: var(--neutral-500);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--neutral-100);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--neutral-600);
  line-height: 1.8;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-800);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
}

.faq-question:hover {
  color: var(--neutral-950);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--neutral-500);
  line-height: 1.8;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--neutral-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(176, 230, 0, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--neutral-400);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%234a5640'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--primary-darker);
  text-decoration: underline;
}

.form-success-message {
  text-align: center;
  padding: 40px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  border: 1px solid var(--primary-light);
}

.form-success-message h3 {
  color: var(--primary-darker);
  margin-bottom: 8px;
}

.form-error {
  color: var(--error);
  font-size: 13px;
  margin-top: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

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

.footer-brand .logo-en {
  color: var(--white);
}

.footer-brand .logo-tercume {
  color: var(--neutral-300);
}

.footer-tagline {
  font-size: 14px;
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neutral-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--neutral-950);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--neutral-400);
  transition: color 0.2s;
}

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

.footer-address {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-address strong {
  color: var(--neutral-200);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--neutral-500);
}

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

.footer-legal a,
.footer-legal button {
  font-size: 13px;
  color: var(--neutral-500);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--neutral-950);
  color: var(--neutral-300);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--side-padding);
}

.cookie-banner-text p {
  font-size: 14px;
  margin: 0;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--neutral-900);
  border-radius: 8px;
  cursor: pointer;
  flex-wrap: wrap;
}

.cookie-category input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-cat-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.cookie-category small {
  width: 100%;
  padding-left: 30px;
  color: var(--neutral-400);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-buttons .btn-ghost {
  color: var(--neutral-400);
  border: none;
  text-decoration: underline;
  padding: 10px 16px;
}

.cookie-buttons .btn-ghost:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    text-align: center;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header .overline {
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--neutral-500);
}

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

.neutral-300 {
  color: var(--neutral-300);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  margin-bottom: 24px;
}

.cta-section p {
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ========================================
   BLOG
   ======================================== */
.blog-card {
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-darker);
  background: var(--primary-lightest);
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-card-date {
  font-size: 13px;
  color: var(--neutral-400);
}

.blog-card h3 {
  margin-bottom: 8px;
}

.blog-card h3 a {
  transition: color 0.2s;
}

.blog-card h3 a:hover {
  color: var(--primary-darker);
}

/* Article */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--neutral-600);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--neutral-400);
}

.article-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-page-centered {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  text-align: center;
  color: var(--neutral-500);
  font-size: 16px;
  line-height: 1.6;
}

.contact-intro a {
  color: var(--primary-darker);
  font-weight: 600;
}

.contact-intro a:hover {
  text-decoration: underline;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-darker);
}

.contact-info-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--neutral-500);
}

.contact-info-item a:hover {
  color: var(--primary-darker);
}

.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  border: 0;
  margin-top: 32px;
}

/* ========================================
   CAREER
   ======================================== */
.position-card {
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}

.position-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.position-card h3 {
  margin-bottom: 8px;
}

.position-card p {
  font-size: 14px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
  font-size: 15px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--neutral-200);
  padding: 10px 14px;
  text-align: left;
}

.legal-content th {
  background: var(--neutral-50);
  font-weight: 600;
  color: var(--neutral-800);
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--neutral-200);
  margin-bottom: 16px;
}

.error-page p {
  font-size: 18px;
  margin-bottom: 32px;
}

.error-page .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   TABS
   ======================================== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--neutral-200);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-btn.active {
  color: var(--neutral-950);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-block {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--neutral-950);
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.quote-block::before {
  content: '\201C';
  font-size: 80px;
  color: var(--primary);
  line-height: 0;
  position: relative;
  top: 20px;
}

/* ========================================
   FEATURE LIST
   ======================================== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--neutral-50);
  border-radius: var(--radius-sm);
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-darker);
}

.feature-list-item p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SERVICES DETAIL
   ======================================== */
.service-detail {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--neutral-100);
  margin-bottom: 24px;
}

.service-detail h6,
.service-detail h3 {
  margin-bottom: 12px;
}

.service-detail p {
  font-size: 15px;
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.counter {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

/* ========================================
   MISC UTILITIES
   ======================================== */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Google Business Reviews placeholder */
.google-reviews-placeholder {
  text-align: center;
  padding: 32px;
  background: var(--neutral-50);
  border-radius: var(--radius);
  border: 2px dashed var(--neutral-200);
}

.google-reviews-placeholder p {
  font-size: 14px;
  color: var(--neutral-400);
}

.form-error-message {
  text-align: center;
  padding: 48px 24px;
}

.form-error-message h3 {
  color: var(--error);
  margin-bottom: 16px;
}

.form-error-message p {
  color: var(--neutral-600);
  margin-bottom: 24px;
}

.error-contact-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
