/* ============================================
   HIGH IMPACT AGENCY v2 — SEO-Optimized Rebuild
   Palette: Navy #0A0F2C | Orange #FF6B35 | Warm #FFF8F3
   ============================================ */

:root {
  --navy:       #0A0F2C;
  --navy-90:    #1A1F3C;
  --navy-80:    #2A2F4C;
  --orange:     #FF6B35;
  --orange-dark:#E5541F;
  --orange-glow:rgba(255,107,53,0.12);
  --warm:       #FFF8F3;
  --white:      #FFFFFF;
  --light:      #F8F9FC;
  --gray:       #6B7280;
  --gray-light: #E5E7EB;
  --text:       #1F2937;
  --text-light: #4B5563;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(10,15,44,0.08);
  --shadow-lg:  0 12px 48px rgba(10,15,44,0.14);
  --shadow-orange: 0 6px 24px rgba(255,107,53,0.30);
  --transition: 0.25s ease;
  --max-w:      1160px;
  --font:       'Inter', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(10,15,44,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-link { display: flex; align-items: center; }
.logo { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text); transition: color var(--transition); }
.nav-links a:hover { color: var(--orange); }
.nav-phone { color: var(--navy) !important; font-weight: 700 !important; }
.hamburger {
  display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }
.mobile-menu {
  background: var(--white); border-top: 1px solid var(--gray-light); padding: 20px 24px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; display: block; padding: 8px 0; }

/* ---- HERO + PAIN POINTS ---- */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(170deg, var(--navy) 0%, #121832 100%);
  color: var(--white);
}
.hero-compact { text-align: center; margin-bottom: 3rem; }
.hero-compact .eyebrow { color: var(--orange); margin-bottom: 1rem; }
.hero-compact h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
}
.highlight { color: var(--orange); }

/* Pain strip — the hook */
.pain-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 3rem;
}
.pain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.pain-card:hover {
  background: rgba(255,107,53,0.08);
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-2px);
}
.pain-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.pain-text h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pain-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-style: italic; line-height: 1.5; margin: 0; }

/* Resolve — the answer */
.hero-resolve { text-align: center; max-width: 680px; margin: 0 auto; }
.resolve-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.resolve-text strong { color: var(--white); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.trust-bar { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ---- CLIENT LOGOS ---- */
.client-logos {
  padding: 40px 0;
  background: var(--light);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.logos-label { text-align: center; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); font-weight: 600; margin-bottom: 20px; }
.logos-grid {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.logos-grid img { height: 36px; opacity: 0.5; filter: grayscale(100%); transition: all var(--transition); }
.logos-grid img:hover { opacity: 1; filter: none; }
.logos-placeholder { text-align: center; color: var(--gray); font-size: 0.9rem; font-style: italic; }

/* (Problem section merged into hero as pain-strip) */

/* ---- SERVICES ---- */
.services { padding: 80px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.service-card.full-impact { background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-card.full-impact h3 { color: var(--white); }
.service-card.full-impact p { color: rgba(255,255,255,0.8); }
.service-card.full-impact .service-list li { color: rgba(255,255,255,0.85); }
.service-card.full-impact .service-list li::before { color: var(--orange); }
.service-card.full-impact .service-tag { background: rgba(255,107,53,0.15); color: var(--orange); }
.featured-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--orange); color: var(--white);
  padding: 4px 16px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.service-num { font-size: 0.85rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.service-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.service-list li { padding-left: 20px; position: relative; font-size: 0.9rem; color: var(--text-light); }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.plain-english {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2px;
}
.service-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  background: var(--orange-glow);
  color: var(--orange-dark);
  padding: 4px 12px; border-radius: 20px;
}

/* ---- HOW IT WORKS ---- */
.how { padding: 80px 0; }
.steps { display: flex; align-items: flex-start; gap: 16px; justify-content: center; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 240px; max-width: 320px;
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--gray-light);
  text-align: center;
  transition: all var(--transition);
}
.step:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.25rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.9rem; }
.step-arrow {
  font-size: 1.5rem; color: var(--gray-light); margin-top: 60px; font-weight: 300;
}

/* ---- PORTFOLIO / WORK ---- */
.work { padding: 80px 0; background: var(--light); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.work-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-light); transition: all var(--transition);
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-img { height: 200px; background: var(--navy); position: relative; overflow: hidden; }
.work-placeholder {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); gap: 8px;
}
.work-placeholder-icon { font-size: 3rem; }
.work-info { padding: 24px; }
.work-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.work-info p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.work-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.work-tags span {
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; background: var(--orange-glow); color: var(--orange-dark);
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 80px 0; }
.testimonials-grid { max-width: 700px; margin: 0 auto; }
.testimonial-coming-soon {
  text-align: center; padding: 40px; background: var(--warm);
  border-radius: var(--radius); border: 1px dashed var(--gray-light);
}
.testimonial-coming-soon p { color: var(--text-light); font-size: 1rem; }
.testimonial-coming-soon a { color: var(--orange); font-weight: 600; }

/* Real testimonial cards (added when reviews come in) */
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--gray-light);
  margin-bottom: 16px;
}
.testimonial-card .stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 1rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }

/* ---- ABOUT ---- */
.about { padding: 80px 0; background: var(--warm); }
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-light); font-size: 1rem; margin-bottom: 1rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-card {
  background: var(--white); border-radius: var(--radius); padding: 20px; text-align: center;
  border: 1px solid var(--gray-light);
}
.about-stat { font-size: 2rem; font-weight: 900; color: var(--orange); }
.about-stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }
.founder-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-80) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.photo-placeholder-inner { text-align: center; color: rgba(255,255,255,0.3); }
.photo-placeholder-inner span { font-size: 4rem; display: block; margin-bottom: 8px; }
.photo-placeholder-inner p { font-size: 0.85rem; }

/* Real founder photo (swap in when available) */
.founder-photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }

/* ---- WHY US ---- */
.why-us { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.why-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---- INDUSTRIES ---- */
.industries { padding: 80px 0; background: var(--light); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.industry-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--gray-light); text-align: center;
  transition: all var(--transition); display: block;
}
.industry-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.industry-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.industry-card p { font-size: 0.85rem; color: var(--text-light); }

/* ---- FAQ ---- */
.faq { padding: 80px 0; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--orange); font-weight: 300; flex-shrink: 0; margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.faq-item p { padding-top: 12px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner em { color: var(--orange); font-style: normal; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ---- CONTACT ---- */
.contact { padding: 80px 0; background: var(--warm); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-text h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.contact-text > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item span:first-child { font-size: 1.25rem; }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--navy); }
.contact-item a, .contact-item > div > span { color: var(--text-light); font-size: 0.95rem; }
.contact-item a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-light);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.optional { color: var(--gray); font-weight: 400; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-light); border-radius: 8px;
  font-size: 0.95rem; font-family: var(--font); color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 12px; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; }
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding: 20px 0; }
.footer-bottom p { font-size: 0.8rem; text-align: center; color: rgba(255,255,255,0.4); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pain-strip { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 320px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 40px; }
  .hero-compact { margin-bottom: 2rem; }
  .hero-compact h1 { font-size: 1.65rem; }
  .pain-card { padding: 16px; }
  .pain-icon { font-size: 1.5rem; }
  .hero-resolve { margin-top: 0; }
  .resolve-text { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .trust-bar { flex-direction: column; gap: 8px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}
