/*
Theme Name: ASTT Translation
Theme URI: https://www.translationservice.sg/
Author: ASTT Translation Pte Ltd
Author URI: https://www.translationservice.sg/
Description: Professional translation services theme for ASTT Translation Pte Ltd
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: astt-translation
*/

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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --text-dark: #1e293b;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --success: #10b981;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Poppins', 'Inter', Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(30,41,59,0.07);
  --shadow-lg: 0 8px 40px rgba(30,41,59,0.12);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-light); }

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

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-mid); margin-bottom: 1rem; }

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

.section {
  padding: 80px 0;
}
.section--light { background: var(--bg-light); }
.section--dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
}
.section--dark h2, .section--dark h3, .section--dark p { color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .label {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section--dark .section-header .label {
  background: rgba(255,255,255,0.12);
  color: #e0eaff;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.28);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #1e293b;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: #93c5fd; }
.top-bar-links { display: flex; gap: 24px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--bg-white);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.site-logo span { color: var(--primary-dark); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all var(--transition);
}
.site-nav a:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 8px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 55%, #2563eb 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: overlay;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-shapes::after {
  content: '';
  position: absolute;
  right: 100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(147,197,253,0.10);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.hero h1 span { color: #bfdbfe; }
.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(4px);
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: #bfdbfe;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 360px;
}
.hero-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lang-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.hero-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  text-align: center;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  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(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(37,99,235,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   LANGUAGES SECTION
   ============================================ */
.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.lang-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.lang-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.lang-flag { font-size: 1.8rem; margin-bottom: 8px; }
.lang-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason-item { text-align: center; }
.reason-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.reason-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--bg-light);
  box-shadow: 0 0 0 4px var(--primary);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ============================================
   QUOTE SECTION (CTA)
   ============================================ */
.quote-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  padding: 80px 0;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.quote-content h2 { color: #fff; margin-bottom: 16px; }
.quote-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.quote-contact-list { margin-top: 20px; }
.quote-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.quote-contact-list li span { font-size: 1.1rem; }

.quote-form {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-form h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--primary-dark);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.author-role { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.70);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .site-logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.60);
}
.footer-contact-list a {
  color: rgba(255,255,255,0.60);
}
.footer-contact-list a:hover { color: #93c5fd; }
.footer-contact-list li span { margin-top: 2px; flex-shrink: 0; }

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #93c5fd; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #93c5fd; }

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f, #1d4ed8);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #bfdbfe; }

.page-content { padding: 70px 0; }
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
.sidebar-widget {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  color: var(--primary-dark);
}
.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text-mid); }
.sidebar-widget ul li a:hover { color: var(--primary); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 32px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff;
}
.contact-info-text h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================
   RATES TABLE
   ============================================ */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rates-table thead {
  background: var(--primary);
  color: #fff;
}
.rates-table th, .rates-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
}
.rates-table th { font-weight: 600; }
.rates-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}
.rates-table tbody tr:hover { background: rgba(37,99,235,0.04); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-white); padding: 20px; flex-direction: column; box-shadow: var(--shadow-lg); gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .languages-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .trust-bar .container { gap: 20px; }
  .top-bar .container { justify-content: center; }
  .top-bar-links { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.text-accent { color: var(--accent); }
.badge {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  color: var(--primary);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================
   HAMBURGER ANIMATION
   ============================================ */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Active nav link */
.site-nav a.nav-active {
  color: var(--primary);
  background: var(--bg-light);
}
