/* ============================================================
   GARTLAND TECH — MAIN STYLESHEET
   ============================================================ */

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

:root {
  --navy:        #0b1422;
  --navy-mid:    #13202f;
  --navy-light:  #1a2c40;
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-pale:   #eff6ff;
  --charcoal:    #1e293b;
  --text:        #374151;
  --muted:       #6b7280;
  --silver:      #9ca3af;
  --border:      #e5e7eb;
  --white:       #ffffff;
  --bg-alt:      #f9fafb;
  --green:       #10b981;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w:       1120px;
  --nav-h:       72px;
  --radius:      8px;
  --radius-lg:   14px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section--dark .label,
.section--mid  .label { color: #93c5fd; }

.heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section--dark .heading,
.section--mid  .heading { color: var(--white); }

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.section--dark .subhead,
.section--mid  .subhead { color: var(--silver); }

.text-center { text-align: center; }
.text-center .subhead { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background .18s, transform .15s, box-shadow .18s, border-color .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--charcoal);
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-phone {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .03em;
}
.nav-phone a { color: var(--charcoal); transition: color .15s; }
.nav-phone a:hover { color: var(--blue); }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .2s;
}

/* ===== HERO ===== */
.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 6rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(37,99,235,.35) 50%, transparent 100%);
}
/* faint GT watermark in hero */
.hero::before {
  content: 'GT';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-family: var(--font-display);
  font-size: 26rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,.018);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(37,99,235,.14);
  border: 1px solid rgba(37,99,235,.3);
  padding: .3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.03;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: #60a5fa; font-style: italic; }

.hero-sub {
  font-size: 1.2rem;
  color: var(--silver);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta-area { margin-bottom: 3rem; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--silver);
}
.hero-proof-check {
  width: 20px; height: 20px;
  background: rgba(16,185,129,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== STAT BAR ===== */
.stat-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 2rem 1.5rem;
}
.stat-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: #60a5fa; }
.stat-label {
  font-size: .85rem;
  color: var(--silver);
  margin-top: .3rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  font-size: .95rem;
  color: #991b1b;
  font-weight: 500;
}
.problem-item-x {
  color: #ef4444;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.solution-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  font-size: .95rem;
  color: #166534;
  font-weight: 500;
}
.solution-item-check {
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ===== SERVICE TAGS ===== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--silver);
  transition: border-color .15s, color .15s;
}
.tag:hover {
  border-color: rgba(37,99,235,.5);
  color: #93c5fd;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.why-card:hover {
  border-color: rgba(37,99,235,.4);
  transform: translateY(-3px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(37,99,235,.3);
  line-height: 1;
  margin-bottom: .75rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .6rem;
}
.why-card p {
  font-size: .95rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ===== PLANS ===== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.plan-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.plan-card--featured {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(37,99,235,.3);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.plan-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}
.plan-price {
  margin-bottom: 1.75rem;
}
.plan-price-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-price-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  display: block;
  margin-top: .3rem;
}
.plan-features { margin-bottom: 2rem; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem 0;
  font-size: .93rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.plan-feature:last-child { border-bottom: none; }
.plan-check { color: #34d399; font-weight: 700; flex-shrink: 0; }
.plan-card .btn { width: 100%; }
.plan-card--featured .btn {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.plan-card--featured .btn:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

/* ===== INDUSTRIES ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: all .15s;
}
.industry-item:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
  transform: translateY(-1px);
}
.industry-icon { font-size: 1.4rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--blue);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin: 0 auto 2.25rem;
}
.cta-phone {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}
.cta-phone a { color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 4rem 1.5rem 2rem;
  color: var(--silver);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(.65);
}
.footer-about {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .9rem;
  color: #4b5563;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: #4b5563;
  margin-bottom: .7rem;
  line-height: 1.5;
}
.footer-contact-line a { color: #60a5fa; transition: color .15s; }
.footer-contact-line a:hover { color: var(--white); }
.footer-contact-icon { flex-shrink: 0; margin-top: .1rem; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: #374151;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 4.5rem 1.5rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(37,99,235,.3) 50%, transparent 100%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 560px;
}

/* ===== SERVICES PAGE ===== */
.service-cat { margin-bottom: 3.5rem; }
.service-cat-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--blue);
  display: inline-block;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all .15s;
}
.service-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.service-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: .6rem; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--border));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: .45rem;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.timeline-item p { font-size: .95rem; color: var(--muted); line-height: 1.65; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-left: 4px solid var(--blue);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.value-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-card-header {
  background: var(--navy);
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .3rem;
}
.contact-card-header p { font-size: .9rem; color: var(--silver); }
.contact-methods { padding: 0; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover { background: var(--bg-alt); }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-type {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-value a { color: var(--blue); transition: color .15s; }
.contact-value a:hover { color: var(--blue-dark); text-decoration: underline; }
.contact-note { font-size: .85rem; color: var(--muted); margin-top: .2rem; }

.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }
.info-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .93rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row-label {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 60px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .problem-grid,
  .about-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col:first-child { grid-column: 1 / -1; }

  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 680px) {
  .section { padding: 3.5rem 1.25rem; }

  .nav-links    { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1.25rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a  { font-size: 1.1rem; }
  .nav-phone    { display: none; }
  .nav-toggle   { display: flex; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero::before { font-size: 14rem; right: -1rem; bottom: -1rem; }
  .hero h1 { font-size: 2.8rem; }

  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
