/* ============================================================
   EPPETECH SOFTWARE SOLUTIONS — styles.css
   Colours extracted from logo: Yellow #FFD600 | Cyan #00BCD4
   Background: White | Professional serif + sans pairing
   ============================================================ */

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

/* ── Variables ── */
:root {
  --yellow:       #FFD600;
  --yellow-dark:  #E6C200;
  --yellow-soft:  rgba(255, 214, 0, 0.10);
  --cyan:         #00BCD4;
  --cyan-dark:    #0097A7;
  --cyan-soft:    rgba(0, 188, 212, 0.10);
  --navy:         #0D1B3E;
  --navy-mid:     #1A2D5A;
  --white:        #FFFFFF;
  --off-white:    #F7F8FC;
  --light-gray:   #EEF0F5;
  --text:         #1A1A2E;
  --text-mid:     #4A5270;
  --text-muted:   #8A93B0;
  --border:       #E2E6F0;
  --border-light: #EEF0F5;
  --shadow-sm:    0 2px 8px rgba(13,27,62,0.06);
  --shadow-md:    0 8px 32px rgba(13,27,62,0.10);
  --shadow-lg:    0 20px 60px rgba(13,27,62,0.14);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --font:         'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --max-w:        1200px;
  --transition:   0.25s ease;
}

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

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--cyan); border-radius: 1px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--navy); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-title-light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.85; max-width: 580px; font-weight: 300; }
.title-bar { width: 52px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--yellow), var(--cyan)); margin-bottom: 1.5rem; }
.title-bar-light { background: linear-gradient(90deg, var(--yellow), rgba(255,255,255,0.5)); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem; font-weight: 700;
  transition: all var(--transition); letter-spacing: 0.01em; cursor: pointer;
}
.btn-primary {
  background: var(--yellow); color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,214,0,0.25);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,214,0,0.35); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border); 
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-soft); }
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--yellow); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(255,214,0,0.06); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

/* ── Nav ── */
#navbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-box {
  width: 42px; height: 42px; border-radius: 10px;
  overflow: hidden; background: #000;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,214,0,0.4);
}
.nav-logo { width: 36px; height: 36px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.nav-brand-sub { font-size: 0.58rem; color: red; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; margin-left: auto; }
.nav-link {
  font-size: 0.875rem; font-weight: 600; color: var(--text-mid);
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  transition: all var(--transition); display: flex; align-items: center; gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--off-white); }
.nav-link i.fa-chevron-down { font-size: 9px; transition: transform var(--transition); }
.nav-link:hover i.fa-chevron-down { transform: rotate(180deg); }
.nav-cta-btn { margin-left: 0.75rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-6px);
  transition: all 0.2s ease; pointer-events: none;
  border-top: 3px solid var(--yellow);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0.65rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--off-white); color: var(--navy); }
.dropdown-item i { width: 18px; color: var(--cyan); font-size: 13px; }

/* Mobile hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; margin-left: auto; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
#hero {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: center; overflow: hidden; position: relative;
}
.hero-bg-accent {
  position: absolute; top: 0; right: 0; width: 50%;
  height: 100%; background: var(--off-white);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-text { padding: 4rem 2.5rem 4rem 0; max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; padding-left: clamp(2rem, 5vw, 4rem); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-soft); border: 1px solid rgba(0,188,212,0.25);
  padding: 5px 14px 5px 8px; border-radius: 100px; margin-bottom: 1.75rem;
  font-size: 0.72rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.08em;
}
.eyebrow-pulse {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan-soft); border: 1px solid rgba(0,188,212,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 9px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy); margin-bottom: 1.5rem;
}
.hero h1 .accent-yellow { color: var(--yellow-dark); }
.hero h1 .accent-cyan { color: var(--cyan-dark); }
.hero-gradient-bar { width: 64px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--yellow), var(--cyan)); margin-bottom: 1.5rem; }
.hero p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-num span { color: var(--cyan); }
.hero-stat-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 3px; }

.hero-visual { position: relative; z-index: 1; height: calc(100vh - var(--nav-h)); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,255,255,0.15) 0%, transparent 50%); }
.hero-corner-tl { position: absolute; top: 20px; left: 20px; width: 36px; height: 36px; border-top: 3px solid var(--yellow); border-left: 3px solid var(--yellow); border-radius: 4px 0 0 0; }
.hero-corner-tr { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-top: 3px solid var(--cyan); border-right: 3px solid var(--cyan); border-radius: 0 4px 0 0; }

/* ── OFFICE STRIP ── */
#office-strip {
  position: relative; overflow: hidden; height: 420px;
}
.office-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.office-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,0.82) 0%, rgba(13,27,62,0.35) 60%, transparent 100%);
}
.office-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 clamp(2rem, 8vw, 6rem);
}
.office-text { max-width: 560px; }
.office-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.office-text p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }

/* ── INDUSTRIES ── */
#industries { background: var(--white); }
.industry-tabs-wrap { margin-top: 3rem; }
.industry-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.industry-tabs::-webkit-scrollbar { display: none; }
.ind-tab {
  display: flex; align-items: center; gap: 9px;
  padding: 0.85rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  margin-bottom: -2px; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font);
}
.ind-tab i { font-size: 14px; }
.ind-tab:hover { color: var(--text); background: var(--off-white); }
.ind-tab.active { color: var(--navy); border-bottom-color: var(--yellow); background: transparent; }
.ind-tab.active i { color: var(--cyan); }

.ind-panel { display: none; padding: 3rem 0 0; }
.ind-panel.active { display: block; }
.ind-header {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
  margin-bottom: 2rem; border-top: 4px solid var(--yellow);
}
.ind-header-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--yellow-soft); border: 1px solid rgba(255,214,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--yellow-dark); flex-shrink: 0;
}
.ind-header h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.ind-header p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--yellow)); opacity: 0; transition: opacity var(--transition); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(0,188,212,0.25); }
.product-card:hover::before { opacity: 1; }
.product-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 0.75rem;
}
.badge-live { background: var(--cyan-soft); color: var(--cyan-dark); border: 1px solid rgba(0,188,212,0.2); }
.badge-soon { background: var(--yellow-soft); color: #9A7000; border: 1px solid rgba(255,214,0,0.3); }
.badge-service { background: var(--off-white); color: var(--text-mid); border: 1px solid var(--border); }
.product-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.product-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.product-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 0.8rem; font-weight: 700; color: var(--cyan); transition: gap var(--transition); }
.product-link:hover { gap: 10px; color: var(--cyan-dark); }
.product-link-ext { color: var(--yellow-dark); }
.product-link-ext:hover { color: #9A7000; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: all var(--transition); position: relative;
  border-top: 4px solid transparent;
}
.svc-card:hover { border-top-color: var(--yellow); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--yellow-soft); border: 1px solid rgba(255,214,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--yellow-dark); margin-bottom: 1.25rem;
}
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.svc-learn { display: inline-flex; align-items: center; gap: 5px; margin-top: 1rem; font-size: 0.78rem; font-weight: 700; color: var(--cyan); opacity: 0; transform: translateX(-4px); transition: all var(--transition); }
.svc-card:hover .svc-learn { opacity: 1; transform: translateX(0); }

/* ── FEATURES / WHY US ── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.features-list { display: flex; flex-direction: column; gap: 1.75rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--cyan-soft); border: 1px solid rgba(0,188,212,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--cyan);
}
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-item p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  border-bottom: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
}
.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-number .accent { color: var(--cyan); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 5px; }

/* ── CONTACT FORM ── */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info .section-label { color: rgba(0,188,212,0.8); }
.contact-info .section-label::before { background: rgba(0,188,212,0.8); }
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--yellow);
}
.contact-info-item h5 { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 3px; }
.contact-info-item a, .contact-info-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 400; }
.contact-info-item a:hover { color: var(--yellow); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem; }
.form-sub { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 2rem; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,188,212,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A93B0' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-alert { display: none; padding: 0.85rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: 0.875rem; font-weight: 600; }
.alert-success { background: #E8F8F5; border: 1px solid #A8E6D9; color: #0D6E5A; }
.alert-error { background: #FEF0F0; border: 1px solid #FBC4C4; color: #C62828; }

/* ── FOOTER ── */
footer { background: #070D1E; border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.8; font-weight: 300; max-width: 250px; }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 0.65rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.social-row { display: flex; gap: 0.5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 13px; transition: all var(--transition); }
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); transform: translateY(-2px); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-legal a:hover { color: var(--yellow); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 55vw; }
  .hero-bg-accent { display: none; }
  .hero-text { padding: 3rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .stats-2x2 { grid-template-columns: 1fr; }
  .ind-header { grid-template-columns: 1fr; }
}
