/* ============================================
   Philippines-Import.com — Main Stylesheet
   Colors: Philippine Blue #0038A8 | Red #CE1126 | Gold #FCD116
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue:        #0038A8;
  --blue-dark:   #002580;
  --blue-light:  #EBF0FF;
  --red:         #CE1126;
  --gold:        #FCD116;
  --gold-dark:   #D9A900;
  --white:       #FFFFFF;
  --light:       #F7F9FC;
  --gray:        #E2E8F0;
  --gray-mid:    #A0AEC0;
  --dark:        #0D1B3E;
  --text:        #2D3748;
  --text-light:  #718096;
  --shadow-sm:   0 2px 8px rgba(0, 56, 168, 0.07);
  --shadow:      0 4px 20px rgba(0, 56, 168, 0.10);
  --shadow-lg:   0 8px 40px rgba(0, 56, 168, 0.15);
  --radius:      8px;
  --radius-lg:   16px;
  --max-width:   1200px;
  --transition:  all 0.3s ease;
}

/* ─── Reset ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Layout ─────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-blue  { background: var(--blue); color: var(--white); }

/* ─── Typography ─────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-white, .section-blue h1, .section-blue h2, .section-blue h3,
.section-blue p, .section-dark h1, .section-dark h2, .section-dark h3,
.section-dark p { color: var(--white); }
.section-blue .eyebrow { color: var(--gold); }
.section-dark .eyebrow { color: var(--gold); }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(252, 209, 22, 0.4);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 56, 168, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Header / Navigation ────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,56,168,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
#header.scrolled .nav-links a { color: var(--text); }
#header.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta { margin-left: 8px; }
.nav-logo-dark { display: none; }
#header.scrolled .nav-logo-light { display: none; }
#header.scrolled .nav-logo-dark { display: block; }

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

/* ─── Hero ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 37, 128, 0.85) 0%,
    rgba(13, 27, 62, 0.65) 60%,
    rgba(206, 17, 38, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-content .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ─── Stats Bar ──────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--white);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.08); }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Service Cards ──────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.card-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 20px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link svg { transition: var(--transition); }

/* ─── Feature / Split Sections ──────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-image-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.split-content .eyebrow { margin-bottom: 8px; }
.split-content h2 { margin-bottom: 16px; }
.split-content p { color: var(--text-light); margin-bottom: 16px; }
.feature-list { margin: 24px 0 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 11px; height: 11px; color: white; }

/* ─── Clients / Logos ────────────────────── */
.clients-section { padding: 56px 0; }
.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 36px;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.65;
  filter: grayscale(1);
  transition: var(--transition);
}
.clients-logos:hover { opacity: 0.85; }
.clients-logos img { height: 40px; width: auto; }
.clients-logos .client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ─── Awards ─────────────────────────────── */
.award-block {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
}
.award-img img {
  height: 120px; width: auto;
  border-radius: var(--radius);
}
.award-content h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 8px; }
.award-content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── CTA Banner ─────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(252, 209, 22, 0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: rgba(206, 17, 38, 0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-banner .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ─── Page Hero (inner pages) ────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 140px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; }
.page-hero-light {
  background: linear-gradient(135deg, var(--light) 0%, var(--blue-light) 100%);
  color: var(--dark);
}
.page-hero-light::after { background: var(--white); }
.page-hero-light h1 { color: var(--dark); }
.page-hero-light p { color: var(--text-light); }
.page-hero-light .eyebrow { color: var(--blue); }

/* ─── Contact Form ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 2px; }
.contact-detail-text span { font-weight: 500; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 56, 168, 0.1);
}
textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: #F0FFF4;
  border: 1px solid #68D391;
  border-radius: var(--radius);
  color: #276749;
  font-weight: 500;
}

/* ─── Footer ─────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(252,209,22,0.08); }

/* ─── Breadcrumb ─────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── Tag / Badge ────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue);
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ─── Why Us grid ────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.why-item .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.why-item h4 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ─── Process Steps ──────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--gray);
  z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.step p { font-size: 0.85rem; color: var(--text-light); }

/* ─── Animations ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ─── Utilities ──────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0 !important; }
.divider { height: 1px; background: var(--gray); margin: 0; }
.flag-bar {
  height: 4px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 50%, var(--red) 50%, var(--red) 100%);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 0 24px;
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    color: var(--text);
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .btn { margin: 12px 24px 0; display: inline-flex; }
  .nav-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 28px; }
  .award-block { flex-direction: column; gap: 24px; padding: 28px; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .split-image img { height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 13px 24px; font-size: 0.95rem; }
}
