/* ===== VARIABLES ===== */
:root {
  --navy-dark: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1a3a6b;
  --gold: #C9A84C;
  --gold-light: #e6c877;
  --gold-dark: #a88735;
  --white: #FFFFFF;
  --gray-light: #F4F6F9;
  --gray-mid: #E2E8F0;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { color: var(--navy-dark); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.section-sub.light { color: var(--gray-mid); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo .logo-bottom {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 20px 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  border: none;
  margin-top: 4px;
}
.mobile-menu.open { display: flex; }

/* ===== PAGE OFFSET ===== */
.page-top { padding-top: 72px; }

/* ===== HERO GLOBE WATERMARK ===== */
.hero-globe {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  opacity: 0.20;
  pointer-events: none;
  color: var(--gold);
}
.hero-globe svg { width: 100%; height: 100%; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #0d2d5e 100%);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: var(--gray-mid);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gold);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item svg { flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy-dark); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--gold); }
.service-card h3 { color: var(--navy-dark); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.why-item { text-align: center; }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { color: var(--gold); }
.why-item h3 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ===== SERVICE AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.area-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.area-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}
.area-card h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.area-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: var(--gray-mid); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CREDENTIALS ===== */
.credentials-bar {
  background: var(--navy-mid);
  padding: 32px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cred-item {
  text-align: center;
}
.cred-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.cred-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-brand .logo-bottom {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.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: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--gray-mid); font-size: 1.05rem; max-width: 560px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.about-years {
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-years-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}
.about-checks { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--navy-dark); }
.about-check p { color: var(--text-mid); font-size: 0.95rem; }

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.cert-card {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.cert-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.cert-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--gray-light);
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--navy-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { color: var(--gold); }
.contact-card h4 { color: var(--navy-dark); margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.92rem; }
.contact-card a:hover { color: var(--gold); }
.contact-map-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 48px;
}
.contact-map-placeholder svg { color: var(--gold); opacity: 0.6; }
.contact-map-placeholder h3 { color: var(--white); }
.contact-map-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray-mid); }
.hours-table td { padding: 10px 0; font-size: 0.9rem; }
.hours-table td:first-child { color: var(--text-mid); font-weight: 600; }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }

/* ===== TRACKING ===== */
.tracking-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.tracking-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-lg);
}
.tracking-box h3 { color: var(--navy-dark); margin-bottom: 8px; }
.tracking-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.tracking-form { display: flex; gap: 12px; }
.tracking-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.tracking-input:focus { border-color: var(--gold); }
.tracking-coming-soon {
  margin-top: 20px;
  padding: 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.tracking-coming-soon strong { color: var(--gold-dark); }

/* ===== SERVICES PAGE ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.25s;
}
.service-detail-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-detail-card .service-icon { margin-bottom: 24px; }
.service-detail-card h3 { color: var(--navy-dark); margin-bottom: 12px; }
.service-detail-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 16px; }
.service-detail-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-detail-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.service-detail-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Large tablet / small laptop */
@media (max-width: 1100px) {
  .hero-globe { width: 520px; }
}

/* iPad landscape + tablet (900px) */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .hero-globe { width: 380px; right: -5%; }
  .section { padding: 72px 0; }
}

/* iPad portrait (768px) */
@media (max-width: 768px) {
  .hero-globe { width: 320px; right: -4%; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 48px 32px; }
  .tracking-box { padding: 36px 28px; }
}

/* Large phone / small tablet */
@media (max-width: 600px) {
  .hero-globe {
    width: 260px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.08;
  }
  .section { padding: 56px 0; }
  .cta-banner { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .credentials-inner { gap: 20px; }
  .hero-actions .btn { padding: 13px 22px; }
  .tracking-form { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-item { font-size: 0.78rem; }
}

/* iPhone (up to 480px) */
@media (max-width: 480px) {
  .hero-globe { display: none; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-inner { gap: 14px; }
  .trust-item { font-size: 0.75rem; gap: 6px; }
  .container { padding: 0 18px; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 32px 18px; border-radius: 10px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .tracking-box { padding: 28px 18px; margin: 32px 0 0; }
  .about-visual { padding: 32px 24px; }
  .about-years { font-size: 4.5rem; }
  .contact-card { flex-direction: column; gap: 12px; }
  .footer-grid { gap: 28px; }
  .nav-inner { height: 64px; }
  .page-top { padding-top: 64px; }
  .hero { min-height: calc(100vh - 64px); }
}
