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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #222649;
  --navy-dark:   #191C39;
  --navy-light:  #2B305B;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --warm-white:  #FDFCFA;
  --light-gray:  #F0F2F5;
  --ivory:       #F4F2EE;
  --border:      #E2E2E2;
  --text:        #333333;
  --text-muted:  #555555;
  --text-light:  #6B7280;
  --amber:       #E8740C;
  --amber-hover: #FF8A1F;
  --amber-bg:    rgba(232,116,12,0.06);
  --amber-border:rgba(232,116,12,0.2);
  --green:       #22C55E;
  --max-w:       1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber-hover);
  text-decoration: none;
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-outline:hover {
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn-large { padding: 18px 40px; font-size: 1.08rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION SHARED ─────────────────────────── */
section { padding: 90px 0; }

/* Section backgrounds */
.section--white    { background: var(--white); }
.section--off-white { background: var(--off-white); }
.section--ivory    { background: var(--ivory); }
.section--navy     { background: var(--navy); }
.section--navy-dark{ background: var(--navy-dark); }

/* Text on dark sections */
.section--navy .section-label,
.section--navy-dark .section-label { color: var(--amber); }
.section--navy .section-title,
.section--navy-dark .section-title { color: var(--white); }
.section--navy .section-sub,
.section--navy-dark .section-sub { color: rgba(255,255,255,0.7); }
.section--navy h2,
.section--navy-dark h2 { color: var(--white); }
.section--navy h3,
.section--navy-dark h3 { color: var(--white); }
.section--navy p,
.section--navy-dark p { color: rgba(255,255,255,0.75); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.hero-left {
  background: var(--navy);
  padding: 90px 64px 90px 0;
  padding-left: calc((100vw - var(--max-w)) / 2 + 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  background: var(--navy-dark);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-left > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item { }

.trust-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* hero right panel (rankings widget) */
.hero-visual-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.rank-badge {
  background: rgba(232,116,12,0.12);
  border: 1px solid var(--amber-border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.rank-badge .pos {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
}

.rank-badge .kw { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.rank-badge .kw span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

.ranking-list { display: flex; flex-direction: column; gap: 0; }

.ranking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
}
.ranking-row:last-child { border-bottom: none; }
.ranking-kw { color: rgba(255,255,255,0.65); }
.ranking-pos { font-weight: 700; color: var(--green); }

/* ─── CARDS ──────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ─── SERVICES ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover {
  border-color: var(--amber-border);
  box-shadow: 0 4px 20px rgba(232,116,12,0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
}
.learn-more:hover { text-decoration: none; color: var(--amber-hover); }

/* ─── PROCESS ────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--amber);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.process-quote {
  background: var(--navy);
  border-radius: 14px;
  padding: 40px;
  position: sticky;
  top: 90px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 16px;
}

.quote-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-author { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.quote-title { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ─── RESULTS ────────────────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.result-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.result-label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.case-study-banner {
  background: var(--navy);
  border-radius: 14px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.case-study-banner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.case-study-banner p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--amber);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

.testimonials-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── FAQ ────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-a { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

/* ─── FORMS ──────────────────────────────────── */
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.newsletter-benefits { list-style: none; margin-top: 24px; }

.newsletter-benefits li {
  padding: 9px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.newsletter-benefits li:last-child { border-bottom: none; }
.newsletter-benefits li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.form-box-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-box-sub { font-size: 0.87rem; color: var(--text-light); margin-bottom: 28px; }

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
}

/* ─── CONTACT ────────────────────────────────── */
.contact-section { background: var(--ivory); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.1;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.93rem;
  color: var(--text);
}

.contact-detail .icon {
  width: 38px;
  height: 38px;
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--amber); text-decoration: none; }
.breadcrumb span { color: var(--amber); }

/* ─── ABOUT ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 14px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
  text-align: center;
  padding: 24px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
}

.creds-list { list-style: none; }
.creds-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.creds-list li:last-child { border-bottom: none; }
.creds-list li::before { content: '→'; color: var(--amber); font-weight: 700; flex-shrink: 0; }

/* ─── SERVICE PAGE ───────────────────────────── */
.service-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}

.service-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
}
.service-content h2:first-child { margin-top: 0; }

.service-content p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-content ul {
  margin: 0 0 20px 20px;
}

.service-content ul li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sidebar-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  gap: 8px;
}
.sidebar-link::before { content: '→'; color: var(--amber); font-size: 0.8rem; }
.sidebar-link:hover { color: var(--navy); text-decoration: none; }
.sidebar-link:last-child { border-bottom: none; }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand h3 span { color: var(--amber); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: 80px 24px 48px;
    padding-left: 24px;
  }
  .hero-right { padding: 40px 24px 60px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .case-study-banner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero-trust { gap: 20px; }
}
