/* =============================================
   Marketing Consultant - B2B Growth & Marketing Ops
   ============================================= */

/* ---- Hero gradient animation ---- */
@keyframes morphGradient {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 0%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

/* ---- Floating ring light animations ---- */
@keyframes ringFloat1 {
  0%   { transform: translate(0, 0) scale(1);       opacity: .55; }
  35%  { transform: translate(-2%, 4%) scale(1.04); opacity: .72; }
  65%  { transform: translate(3%, -3%) scale(.97);  opacity: .48; }
  100% { transform: translate(0, 0) scale(1);       opacity: .55; }
}
@keyframes ringFloat2 {
  0%   { transform: translate(0, 0) scale(1);       opacity: .42; }
  40%  { transform: translate(3%, -5%) scale(1.05); opacity: .6; }
  75%  { transform: translate(-2%, 3%) scale(.96);  opacity: .4; }
  100% { transform: translate(0, 0) scale(1);       opacity: .42; }
}

/* Reusable mixin values - applied per-selector below */
.animated-dark {
  background: linear-gradient(
    -45deg,
    #091828,
    #0d2d50,
    #0f4060,
    #0b4a38,
    #093320,
    #0d2d50,
    #091828
  );
  background-size: 400% 400%;
  animation: morphGradient 22s ease infinite;
}

:root {
  --navy-dark: #0A1628;
  --navy:      #14243E;
  --blue:      #1A6FA8;
  --blue-light:#2D8ED4;
  --white:     #FFFFFF;
  --off-white: #F5F7FA;
  --gray-light:#E8ECF0;
  --gray:      #6B7280;
  --text:      #1F2937;
  --text-light:#4B5563;
  --accent:    #E8F4FD;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: .4rem; }

/* ---- Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--gray); }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.section-title      { margin-bottom: .75rem; }
.familiar-title     { font-size: 1.9rem; white-space: nowrap; }
.section-subtitle   { color: var(--text-light); font-size: 1.1rem; max-width: 680px; }
.section-header     { margin-bottom: 56px; }
.section-header.center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header.center .section-subtitle { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); 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); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 68px;
  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 {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.2;
  white-space: nowrap;
}

/* Footer logo - larger icon + text */
.footer-brand .nav-logo { gap: .85rem; }
.footer-brand .nav-logo img { height: 60px; }
.footer-brand .nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.015em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 5px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 5px;
  padding: .45rem 1rem !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px 24px;
  z-index: 999;
}
.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile ul a {
  display: block;
  color: rgba(255,255,255,.8);
  padding: .7rem .5rem;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-mobile ul a:last-of-type { border: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background-image: url('../images/hero-v3.png');
  background-size: cover;
  background-position: center center;
  padding: 140px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Subtle shade over hero image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: 0;
}
.hero::after { display: none; }

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.32);
  display: inline-block;
  padding: .28rem .75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.2rem;
  max-width: 620px;
  margin-bottom: .75rem;
}

.hero-support {
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   PAIN POINTS / FAMILIAR SECTION
   ============================================= */
.familiar { background: var(--off-white); }

.familiar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.familiar-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.25rem 1.4rem;
  font-size: .95rem;
  color: var(--text-light);
  font-weight: 500;
}

.familiar-bridge {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  font-size: 1.05rem;
  font-style: italic;
  text-align: center;
}
.familiar-bridge strong { color: var(--white); }

/* =============================================
   STATS BAND
   ============================================= */
.stats-band { background: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 48px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-desc {
  font-size: .9rem;
  color: var(--text-light);
  max-width: 200px;
  margin: 0 auto;
}

/* =============================================
   WHO WE ARE
   ============================================= */
.who-we-are .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.who-we-are .left p { color: var(--text-light); }

.who-we-are .right { display: flex; flex-direction: column; gap: 1rem; }

.why-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
}
.why-card h4 { margin-bottom: .3rem; font-size: .95rem; }
.why-card p  { font-size: .9rem; color: var(--text-light); margin: 0; }

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.services-overview { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  padding: 2rem;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p  { color: var(--text-light); font-size: .95rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
}
.service-card .learn-more svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card .learn-more:hover svg { transform: translateX(3px); }

/* =============================================
   WHY CHOOSE US / DARK BAND
   ============================================= */
.why-band {
  background: var(--navy-dark);
  color: var(--white);
}

.why-band .section-title  { color: var(--white); }
.why-band .section-subtitle { color: rgba(255,255,255,.6); }

.why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.why-col h3 { color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }

.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: flex;
  gap: .8rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.why-list li::before {
  content: '→';
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li:last-child { border-bottom: none; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #0D4F82 100%);
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.55);
}

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

.footer-brand p {
  font-size: .9rem;
  max-width: 260px;
  line-height: 1.6;
  margin-top: .6rem;
}

.footer-col h5 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(-45deg, #0d2d55, #1c5490, #2a7fc0, #1a7080, #0f4570, #1c5490, #0d2d55);
  background-size: 400% 400%;
  animation: morphGradient 20s ease -4s infinite;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -130%; right: -70%;
  width: 180%; height: 330%;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(100,195,255,.30) 40%,
    rgba(55,155,220,.13) 52%,
    transparent 62%);
  animation: ringFloat1 48s ease-in-out infinite;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -130%; left: -60%;
  width: 160%; height: 300%;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(40,200,200,.24) 40%,
    rgba(30,160,175,.10) 53%,
    transparent 63%);
  animation: ringFloat2 60s ease-in-out -15s infinite;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 640px; margin-top: .75rem; }

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  border-left: 4px solid var(--blue);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 1.75rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.value-card p  { font-size: .92rem; color: var(--text-light); margin: 0; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-section-block {
  border-bottom: 1px solid var(--gray-light);
  padding: 72px 0;
}
.service-section-block:last-child { border: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 2.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  display: flex;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem;
  color: var(--text-light);
}
.service-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.service-list li:last-child { border: none; }

.enables-box {
  background: var(--accent);
  border-radius: 10px;
  padding: 1.75rem;
  height: fit-content;
}
.enables-box h4 { color: var(--navy); margin-bottom: 1rem; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }

/* =============================================
   CASE STUDIES PAGE
   ============================================= */
.case-study {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.case-header {
  background: var(--off-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.case-tag {
  background: var(--accent);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.case-col {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--gray-light);
}
.case-col:last-child { border-right: none; }

.case-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .75rem;
}

.case-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-col li {
  font-size: .92rem;
  color: var(--text-light);
  padding: .35rem 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  gap: .6rem;
}
.case-col li::before { content: '·'; color: var(--blue); font-weight: 900; }
.case-col li:last-child { border: none; }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: box-shadow .25s, transform .2s;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-2px);
}

.blog-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-cat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--accent);
  padding: .28rem .7rem;
  border-radius: 4px;
  white-space: nowrap;
}

.blog-card-meta {
  margin-left: auto;
  font-size: .82rem;
  color: var(--gray);
  display: flex;
  gap: .5rem;
  align-items: center;
}

.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--blue); }

.blog-card > p {
  font-size: .97rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.blog-card-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: .25rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
}
.blog-read-more:hover { color: var(--blue-light); }
.blog-read-more svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-read-more:hover svg { transform: translateX(3px); }

/* =============================================
   BLOG POST
   ============================================= */
.post-hero {
  background: linear-gradient(-45deg, #0d2d55, #1c5490, #2a7fc0, #1a7080, #0f4570, #1c5490, #0d2d55);
  background-size: 400% 400%;
  animation: morphGradient 20s ease -4s infinite;
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: -150%; right: -70%;
  width: 180%; height: 380%;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(100,195,255,.30) 40%,
    rgba(55,155,220,.13) 52%,
    transparent 62%);
  animation: ringFloat1 48s ease-in-out infinite;
  pointer-events: none;
}
.post-hero::after {
  content: '';
  position: absolute;
  bottom: -150%; left: -60%;
  width: 160%; height: 350%;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(40,200,200,.24) 40%,
    rgba(30,160,175,.10) 53%,
    transparent 63%);
  animation: ringFloat2 60s ease-in-out -15s infinite;
  pointer-events: none;
}
.post-hero .container { position: relative; z-index: 1; }

.post-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .75rem;
}

.post-hero h1 { color: var(--white); max-width: 760px; }

.post-meta {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-top: 1rem;
}

.post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.post-body h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.post-body h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.post-body p  { color: var(--text-light); font-size: 1rem; }
.post-body ul, .post-body ol { color: var(--text-light); margin-bottom: 1rem; }
.post-body li { margin-bottom: .5rem; }

.post-body blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  background: var(--accent);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.post-cta-box {
  background: var(--navy-dark);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin-top: 3rem;
  text-align: center;
}
.post-cta-box h3 { color: var(--white); margin-bottom: .6rem; }
.post-cta-box p  { color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 { margin-bottom: .5rem; }
.contact-info p  { color: var(--text-light); margin-bottom: 1.5rem; }

.contact-reasons { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-reasons li {
  display: flex;
  gap: .8rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem;
  color: var(--text-light);
}
.contact-reasons li::before { content: '→'; color: var(--blue); flex-shrink: 0; }

.contact-email-box {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  color: var(--text-light);
}
.contact-email-box a { font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,168,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 8px;
  padding: 1.25rem;
  color: #2E7D32;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Formspree shows [data-fs-success] after submit */
[data-fs-success][style*="block"] { display: block !important; }

/* Field-level error messages */
.form-field-error {
  display: block;
  font-size: .8rem;
  color: #C0392B;
  margin-top: .3rem;
  min-height: 1em;
}

/* Highlight invalid fields (set by Formspree via aria-invalid) */
.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

/* Form-level error banner */
.form-error-global:not(:empty) {
  background: #FDEDEC;
  border: 1px solid #F1948A;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #922B21;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .blog-card { padding: 1.5rem 1.5rem; }
  .blog-card-meta { margin-left: 0; }

  .familiar-title     { font-size: clamp(1.4rem, 5vw, 1.7rem); white-space: normal; }

  .hero { padding: 120px 0 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .who-we-are .two-col,
  .why-columns,
  .service-detail-grid,
  .case-body,
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }

  .case-header { flex-direction: column; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr; }
}

/* Active page in nav */
.page-home     .nav-home,
.page-about    .nav-about,
.page-services .nav-services,
.page-work     .nav-work,
.page-blog     .nav-blog,
.page-contact  .nav-contact { color: var(--white) !important; background: rgba(255,255,255,.1) !important; }
