/* =============================================
   ISA Website — Shared Stylesheet
   Brand: International Staff Augmentation
   Official Brand Palette (Brand Kit v1):
     #00A6E6 — Primary Teal
     #005374 — Dark Navy
     #84DFFF — Light Blue Accent
     #9CB925 — Lime Green (accent only, use sparingly)
     #FFFFFF — White
   Font: Raleway (Google Fonts)
   ============================================= */

:root {
  --teal:       #00A6E6;
  --navy:       #005374;
  --light-blue: #84DFFF;
  --green:      #9CB925;
  --white:      #FFFFFF;
  --grey:       #F5F5F5;
  --text:       #2D2D2D;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: #00A6E6; text-decoration: none; }
a:hover { color: #005374; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: 'Raleway', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin-bottom: 1rem; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* === COLORS === */
.bg-white { background: #fff; }
.bg-grey { background: #F5F5F5; }
.bg-navy { background: #005374; }
.bg-teal { background: #00A6E6; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: #00A6E6;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid #00A6E6;
}
.btn-primary:hover { background: #0090c8; border-color: #0090c8; color: #fff; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-1px); }

.btn-teal-outline {
  display: inline-block;
  background: transparent;
  color: #00A6E6;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #00A6E6;
  transition: all 0.2s;
}
.btn-teal-outline:hover { background: #00A6E6; color: #fff; }

.btn-white {
  display: inline-block;
  background: #fff;
  color: #005374;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #fff;
  transition: all 0.2s;
}
.btn-white:hover { background: transparent; color: #fff; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,83,116,0.08);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Bahnschrift', 'DIN Alternate', 'Franklin Gothic Medium', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #005374;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span { color: #00A6E6; }
.nav-logo:hover { color: #005374; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #005374;
  transition: color 0.2s;
}
.nav-links a:hover { color: #00A6E6; }
.nav-links a.active { color: #00A6E6; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #005374;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #005374;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu a:hover { color: #00A6E6; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* === BADGE === */
.badge {
  display: inline-block;
  background: rgba(132,223,255,0.2);
  color: #84DFFF;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(132,223,255,0.35);
}

.badge-dark {
  display: inline-block;
  background: rgba(0,83,116,0.1);
  color: #005374;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #005374 0%, #00A6E6 100%);
  padding: 100px 0;
  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='%23ffffff' fill-opacity='0.03'%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-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { color: #fff; margin-bottom: 20px; }
.hero-copy p { color: rgba(255,255,255,0.88); font-size: 18px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo placeholder */
.photo-placeholder {
  background: linear-gradient(145deg, #003d56 0%, #005374 50%, #006d96 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,166,230,0.08) 0%, transparent 100%);
}
.photo-placeholder .ph-icon { font-size: 36px; opacity: 0.75; position: relative; z-index: 1; }
.photo-placeholder .ph-label { position: relative; z-index: 1; }

/* === PROOF BAR === */
.proof-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 32px 0;
}
.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 16px 8px;
  border-right: 1px solid #e8e8e8;
}
.proof-item:last-child { border-right: none; }
.proof-stat {
  font-size: 26px;
  font-weight: 800;
  color: #005374;
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  font-weight: 600;
  color: #2D2D2D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.proof-sub {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

/* === SECTION HEADER === */
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header h2 { color: #005374; margin-bottom: 12px; }
.section-header p { color: #555; font-size: 18px; max-width: 680px; }
.section-header.text-center p { margin: 0 auto; }

/* === FEATURE CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-grid-5 { grid-template-columns: repeat(5, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0,83,116,0.08);
  border: 1px solid rgba(0,83,116,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,83,116,0.12); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { color: #005374; margin-bottom: 8px; font-size: 18px; }
.card p { color: #555; font-size: 15px; margin: 0; }

.card-industry {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,83,116,0.08);
  border: 1px solid rgba(0,83,116,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.card-industry:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,83,116,0.14); color: #2D2D2D; }
.card-industry .industry-icon { font-size: 40px; margin-bottom: 16px; }
.card-industry h3 { color: #005374; margin-bottom: 10px; font-size: 20px; }
.card-industry p { color: #555; font-size: 14px; margin-bottom: 16px; }
.card-industry .roles { font-size: 13px; color: #777; font-weight: 500; }

/* === PROCESS STEPS === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #00A6E6, #005374);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A6E6, #005374);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0,166,230,0.3);
}
.step h3 { color: #005374; margin-bottom: 8px; font-size: 16px; }
.step p { color: #555; font-size: 14px; }

/* === VIDEO TILES === */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-tile {
  background: linear-gradient(145deg, #002d40 0%, #005374 60%, #006d96 100%);
  border-radius: 14px;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,166,230,0.2);
  position: relative;
  overflow: hidden;
}
.video-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,166,230,0.15) 0%, transparent 70%);
}
.video-tile:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,83,116,0.3); }
.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.video-tile:hover .play-btn { background: rgba(0,166,230,0.4); }
.play-btn svg { margin-left: 4px; }
.video-label {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.video-sublabel {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: -8px;
}

/* === FAQ ACCORDION === */
.faq-wrap { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #005374;
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: #00A6E6; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: #00A6E6;
  font-size: 18px;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #00A6E6; color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 20px; color: #555; font-size: 15px; line-height: 1.7; }

/* === FAQ LAYOUT === */
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }

/* === WHY ISA (Navy) === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.why-item { padding: 28px; background: rgba(255,255,255,0.07); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.why-item h3 { color: #fff; margin-bottom: 8px; font-size: 17px; }
.why-item p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0; }
.why-check { color: #00A6E6; font-size: 22px; margin-bottom: 10px; }

/* === TESTIMONIALS === */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0,83,116,0.07);
  border: 1px solid #eee;
}
.testimonial-quote { font-size: 16px; color: #2D2D2D; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-quote::before { content: '"'; font-size: 48px; color: #00A6E6; line-height: 0.8; display: block; margin-bottom: 8px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A6E6, #005374);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #005374; font-size: 15px; }
.testimonial-role { font-size: 13px; color: #777; }

/* === LOGO STRIP === */
.logo-strip {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.logo-strip-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #aaa; margin-bottom: 28px; }
.logo-strip-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-ph {
  background: #F5F5F5;
  border-radius: 6px;
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.5px;
}

/* === FINAL CTA === */
.cta-section {
  background: linear-gradient(135deg, #005374 0%, #00A6E6 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 600px; margin: 0 auto 40px; }

/* === HUBSPOT FORM PLACEHOLDER === */
.hs-form-placeholder {
  background: #fff;
  border: 2px dashed #00A6E6;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.hs-form-placeholder .hs-icon { font-size: 32px; margin-bottom: 12px; }
.hs-form-placeholder p { color: #005374; font-weight: 600; margin: 0; font-size: 16px; }
.hs-form-placeholder small { color: #888; font-size: 13px; }

/* === FOOTER === */
.footer {
  background: #003347;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; margin-top: 12px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.footer-logo span { color: #00A6E6; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #00A6E6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-social a:hover { color: #00A6E6; }

/* === PAIN SECTION === */
.pain-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}
.pain-list { list-style: none; }
.pain-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #444;
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
  content: '→';
  color: #00A6E6;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.pullquote {
  background: linear-gradient(135deg, #005374, #003d56);
  border-radius: 14px;
  padding: 36px 32px;
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 80px;
  color: #00A6E6;
  line-height: 1;
  font-family: Georgia, serif;
}
.pullquote blockquote {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
  padding-top: 20px;
}
.pullquote cite { color: rgba(255,255,255,0.6); font-size: 13px; font-style: normal; font-weight: 600; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, #005374 0%, #00A6E6 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; margin: 0 auto 28px; }

/* === ROLES LIST === */
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-tag {
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #005374;
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-tag::before { content: '✓'; color: #00A6E6; font-weight: 800; }

/* === ABOUT DIFFERENTIATORS === */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.diff-item {
  padding: 28px;
  border-left: 4px solid #00A6E6;
  background: #F5F5F5;
  border-radius: 0 10px 10px 0;
}
.diff-item h3 { color: #005374; margin-bottom: 8px; font-size: 17px; }
.diff-item p { color: #555; font-size: 15px; margin: 0; }

/* === SCROLL ANIMATION === */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* === CONTENT GRID LAYOUTS (text + image two-col) === */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-grid-asym {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}
.two-col-grid-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col-grid img,
.two-col-grid-asym img,
.two-col-grid-start img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .cards-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-bar-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .two-col-grid,
  .two-col-grid-asym,
  .two-col-grid-start {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col-grid img,
  .two-col-grid-asym img,
  .two-col-grid-start img {
    height: 240px !important;
    order: -1;
  }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  
  .section { padding: 56px 0; }
  
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .proof-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2n) { border-right: none; }
  .proof-item { border-right: 1px solid #e8e8e8; }
  
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .pain-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .diff-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cards-grid-5 { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .proof-bar-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid #e8e8e8; }
}
