/* ============================================
   SITEWORK — siteworkgrowth.com
   Brand: #0D0D0D #1F1F1F #4A4A4A #E5E5E5 #5A6B46
   Fonts: Bebas Neue + Montserrat
============================================ */

:root {
  --black: #0D0D0D;
  --dark: #1F1F1F;
  --mid: #4A4A4A;
  --light: #E5E5E5;
  --green: #5A6B46;
  --green-light: #6d8257;
  --white: #ffffff;
  --text: #c8c8c8;
  --border: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--white);
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.about-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ── LOGO ── */
.logo-mark {
  display: flex;
  align-items: center;
}

.logo-square {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.logo-s {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}

.logo-corner {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-left: 10px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(13,13,13,0.98);
  border-bottom-color: rgba(90,107,70,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 0.7rem !important;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.nav-cta:hover { background: var(--green-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-cta {
  color: var(--green) !important;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,107,70,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,107,70,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(90,107,70,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(90,107,70,0.06) 0%, transparent 50%),
              linear-gradient(to bottom, transparent 60%, var(--black) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(90,107,70,0.15);
  border: 1px solid rgba(90,107,70,0.4);
  color: var(--green-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-headline .line {
  display: block;
  animation: fadeUp 0.8s ease both;
  color: var(--white);
}

.hero-headline .accent { color: var(--green); }

.hero-sub {
  font-size: 1.05rem;
  color: #999;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.8s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: rgba(31,31,31,0.6);
  backdrop-filter: blur(10px);
}

.stat {
  padding: 32px;
  animation: fadeUp 0.8s ease both;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--green);
  font-size: 2.5rem;
}

.stat-label {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
  font-weight: 400;
}

.stat-divider {
  height: 1px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #555, transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── PROBLEM ── */
.problem {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.problem-left .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  position: sticky;
  top: 100px;
}

.problem-intro {
  font-size: 1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: #888;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(31,31,31,0.4);
  transition: border-color 0.2s;
}

.problem-item:hover { border-color: rgba(90,107,70,0.3); }

.problem-icon {
  color: #555;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.problem-conclusion {
  font-size: 1.1rem;
  color: var(--light);
  padding: 24px;
  border-left: 3px solid var(--green);
  background: rgba(90,107,70,0.08);
  font-weight: 300;
}

.problem-conclusion strong {
  color: var(--green-light);
  font-weight: 700;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--dark);
  padding: 48px 36px;
  position: relative;
  transition: background 0.2s;
  text-align: center;
}

.service-card:hover { background: #252525; }

.service-card.featured {
  background: var(--dark);
  border-top: 2px solid var(--green);
}

.service-card.featured:hover { background: rgba(90,107,70,0.18); }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #444;
  margin-bottom: 20px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-includes span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  padding: 4px 10px;
  border: 1px solid #333;
  background: rgba(0,0,0,0.3);
}

.service-card.featured .service-includes span {
  border-color: rgba(90,107,70,0.3);
  color: var(--green-light);
}

/* Serve icon text */
.serve-icon-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1;
}

/* Contact icon text */
.contact-icon-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--green-light);
  background: rgba(90,107,70,0.15);
  border: 1px solid rgba(90,107,70,0.3);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  text-align: center;
}

/* ── APPROACH ── */
.approach {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.approach-left p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.approach-step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #2a2a2a;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s;
}

.approach-step:hover .step-number { color: var(--green); }

.step-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ── TRANSFORMATION ── */
.transformation {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.transform-header {
  padding: 20px 32px;
  margin-bottom: 0;
}

.transform-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.before .transform-header {
  background: rgba(255,255,255,0.04);
  border-bottom: 2px solid #444;
}

.before .transform-label { color: #666; }

.after .transform-header {
  background: rgba(90,107,70,0.1);
  border-bottom: 2px solid var(--green);
}

.after .transform-label { color: var(--green-light); }

.transform-list {
  list-style: none;
  padding: 0;
}

.transform-list li {
  padding: 14px 32px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  font-weight: 400;
}

.before .transform-list li {
  color: #555;
  background: rgba(0,0,0,0.2);
}

.before .transform-list li::before {
  content: '—  ';
  color: #444;
}

.after .transform-list li {
  color: #aaa;
  background: rgba(90,107,70,0.05);
}

.after .transform-list li::before {
  content: '✓  ';
  color: var(--green);
  font-weight: 700;
}

.transform-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--green);
  align-self: center;
  margin-top: 60px;
}

/* ── WHO WE SERVE ── */
.serve {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.serve-card {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.2s;
}

.serve-card:hover { background: var(--dark); }

.serve-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.serve-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.logo-square-large {
  position: relative;
  width: 200px;
  height: 200px;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.logo-square-large span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: var(--white);
  line-height: 1;
}

.corner-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  background: var(--green);
}

.about-tagline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-tagline-stack span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #444;
}

.about-tagline-stack .accent { color: var(--green); }

.about-right p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.value {
  background: var(--black);
  padding: 24px 20px;
}

.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.5;
  font-weight: 400;
}

/* ── RESOURCES ── */
.resources {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.resource-card {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.resource-card:hover { background: var(--dark); }

.resource-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid rgba(90,107,70,0.3);
  display: inline-block;
  width: fit-content;
}

.resource-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.resource-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-weight: 300;
}

.resource-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
  transition: color 0.2s;
}

.resource-link:hover { color: var(--white); }

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-left p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s;
}

.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: rgba(255,255,255,0.03); }

.contact-icon {
  font-size: 1.1rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.88rem;
  color: var(--light);
  font-weight: 500;
}

.contact-promise {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
  padding: 20px 24px;
  border: 1px solid var(--border);
  font-weight: 300;
}

.contact-promise strong { color: var(--green-light); font-weight: 600; }

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.4);
  border: 1px solid #2a2a2a;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.72rem;
  color: #444;
  text-align: center;
  margin-top: -8px;
  font-weight: 300;
}

.form-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(90,107,70,0.3);
  background: rgba(90,107,70,0.08);
}

.form-success.visible { display: block; }

.success-icon {
  font-size: 3rem;
  color: var(--green-light);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.form-success p {
  color: #666;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-square-sm {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-square-sm span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--white);
}

.corner-sm {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.footer-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}

.footer-brand p:first-of-type {
  color: #444;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-desc {
  margin-top: 12px !important;
  font-weight: 300 !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: #444;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-col a:hover { color: var(--light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left p {
  font-size: 0.72rem;
  color: #333;
}

.footer-right {
  display: flex;
  gap: 32px;
}

.footer-right a {
  font-size: 0.72rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--green-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-stats { flex-direction: row; }
  .stat { flex: 1; }
  .stat-divider { width: 1px; height: auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-left .section-title { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; gap: 60px; }
  .transform-grid { grid-template-columns: 1fr; gap: 0; }
  .transform-arrow { display: none; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 20px; }
  .hero-headline { font-size: clamp(3.5rem, 12vw, 5rem); }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-right { flex-direction: column; gap: 8px; }
  section { padding: 80px 0 !important; }
}
