/* ══════════════════════════════════════════
   IZENIOUS TECH SOLUTIONS — Main Stylesheet
   Design: Dark luxury + construction bold
   ══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08090C;
  --bg-2: #0F1117;
  --bg-3: #161922;
  --surface: #1A1D27;
  --border: rgba(255,255,255,0.07);
  --gold: #C9942A;
  --gold-light: #E8B84B;
  --gold-dim: rgba(201,148,42,0.15);
  --blue: #3B82F6;
  --blue-dim: rgba(59,130,246,0.12);
  --text: #F0EDE8;
  --text-2: #A09A91;
  --text-3: #5C5850;
  --white: #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 72px;
  --max-w: 1200px;
  --rad: 12px;
  --rad-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--gold); color: #000; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.25s ease; border: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold); color: #000;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,42,0.4);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION HEADERS ── */
.section-label {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-family: var(--font-display); font-size: 3.2rem; line-height: 1.05; margin-bottom: 20px; }
.section-header p { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,9,12,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold); color: #000;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px;
}
.logo-text {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.12em;
}

.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  padding: 8px 14px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links .nav-cta {
  background: var(--gold); color: #000; font-weight: 600;
  padding: 9px 20px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle { display: none; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,148,42,0.18), transparent 70%);
  top: -100px; right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  bottom: 50px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
}

.hero-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid rgba(201,148,42,0.3); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 32px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.93;
  margin-bottom: 32px;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}
.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.35s; color: var(--text-2); }
.line-3 { animation-delay: 0.5s; }
.hero-title em { color: var(--gold); font-style: normal; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 560px; font-size: 1.1rem; color: var(--text-2);
  line-height: 1.7; margin-bottom: 40px;
  animation: fadeUp 1s 0.7s ease forwards; opacity: 0;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s 0.85s ease forwards; opacity: 0; margin-bottom: 60px;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeUp 1s 1s ease forwards; opacity: 0;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--text-3); text-transform: uppercase;
  animation: fadeUp 1s 1.2s ease forwards; opacity: 0;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════ */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  color: var(--text-2); text-transform: uppercase; letter-spacing: 0.05em;
}
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   PILLARS
   ══════════════════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.pillar:hover { background: var(--bg-3); }
.pillar-icon { font-size: 2rem; margin-bottom: 20px; }
.pillar-number {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3);
  letter-spacing: 0.1em; margin-bottom: 12px;
  position: absolute; top: 32px; right: 32px;
}
.pillar h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 12px; line-height: 1.3;
}
.pillar p { color: var(--text-2); font-size: 0.9rem; line-height: 1.65; margin-bottom: 24px; }
.pillar-link {
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  transition: gap 0.2s;
}
.pillar-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   LAND USE PLANNING
   ══════════════════════════════════════════ */
.planning-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }

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

.planning-left h2 {
  font-family: var(--font-display); font-size: 3rem;
  line-height: 1.05; margin-bottom: 24px;
}
.planning-intro { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }
.planning-sub { font-size: 0.95rem; color: var(--text-3); line-height: 1.7; margin-bottom: 32px; }

.property-types {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.property-types span {
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(201,148,42,0.25);
}

.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s;
}
.service-item:first-child { padding-top: 0; }
.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 8px; }
.service-icon { font-size: 1.2rem; min-width: 28px; padding-top: 2px; }
.service-item h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.service-item p { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }

/* ══════════════════════════════════════════
   INVESTOR CALLOUT
   ══════════════════════════════════════════ */
.investor-callout {
  background: linear-gradient(135deg, var(--gold) 0%, #8B6014 100%);
  padding: 60px 0;
}
.callout-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.callout-eyebrow {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(0,0,0,0.6);
  display: block; margin-bottom: 8px;
}
.callout-inner h2 {
  font-family: var(--font-display); font-size: 2.6rem; color: #000; line-height: 1.1;
}
.investor-callout .btn-primary {
  background: #000; color: #fff; white-space: nowrap;
}
.investor-callout .btn-primary:hover {
  background: #111; box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════
   DIGITAL SERVICES
   ══════════════════════════════════════════ */
.digital-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.digital-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.digital-card:hover {
  border-color: rgba(201,148,42,0.4);
  transform: translateY(-4px);
}
.card-top { margin-bottom: 24px; }
.card-icon-lg { font-size: 2.2rem; margin-bottom: 16px; }
.digital-card h3 { font-weight: 700; font-size: 1rem; line-height: 1.4; }
.digital-card ul { list-style: none; }
.digital-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-2);
  display: flex; align-items: center; gap: 8px;
}
.digital-card li:last-child { border-bottom: none; }
.digital-card li::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-left h2 {
  font-family: var(--font-display); font-size: 3rem;
  line-height: 1.05; margin-bottom: 24px;
}
.about-left p { color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.value {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.88rem; font-weight: 500;
}
.value-icon { font-size: 1rem; }

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 36px; overflow: hidden;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.about-card-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.about-logo-big {
  width: 52px; height: 52px;
  background: var(--gold); color: #000;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px;
}
.about-company { font-weight: 700; font-size: 1.05rem; }
.about-location { font-size: 0.85rem; color: var(--text-2); margin-top: 2px; }

.about-highlights { display: flex; flex-direction: column; gap: 0; }
.highlight-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.highlight-row:last-child { border-bottom: none; }
.hl-label { color: var(--text-3); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em; }
.hl-val { font-weight: 500; color: var(--text); }

/* ══════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════ */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.portfolio-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rad-lg); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.portfolio-card:hover {
  border-color: rgba(201,148,42,0.4);
  transform: translateY(-6px);
}

.portfolio-preview { background: var(--bg-3); padding: 20px; }
.preview-browser {
  background: var(--bg-2); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.browser-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
}
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FEBC2E; }
.browser-dot:nth-child(3) { background: #28C840; }
.browser-url {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-3);
  margin-left: 8px;
}
.browser-content { padding: 16px; min-height: 120px; }

.design-preview .preview-line {
  height: 8px; border-radius: 4px; background: var(--gold-dim);
  margin-bottom: 8px;
}
.design-preview .preview-line.short { width: 60%; }
.design-preview .preview-blocks {
  display: flex; gap: 8px; margin-top: 12px;
}
.design-preview .preview-block {
  height: 60px; border-radius: 6px;
  background: rgba(201,148,42,0.1); flex: 1;
}
.design-preview .preview-block.tall { height: 80px; }

.ecom-preview .preview-nav-bar {
  height: 10px; border-radius: 4px;
  background: var(--blue-dim); margin-bottom: 10px;
}
.ecom-preview .preview-hero-block {
  height: 50px; border-radius: 6px;
  background: var(--blue-dim); margin-bottom: 10px;
}
.ecom-preview .preview-product-row { display: flex; gap: 8px; }
.ecom-preview .preview-product-card {
  height: 40px; border-radius: 4px;
  background: rgba(59,130,246,0.08); flex: 1;
}

.portfolio-info { padding: 24px; }
.portfolio-info h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-info p { font-size: 0.88rem; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
.portfolio-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold-dim); color: var(--gold);
  padding: 4px 10px; border-radius: 100px; margin-right: 8px;
}
.portfolio-link { font-size: 0.85rem; color: var(--text-3); }

.portfolio-cta { cursor: default; }
.portfolio-cta:hover { transform: none; }
.cta-card-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  min-height: 300px; padding: 40px;
}
.cta-icon {
  font-size: 2.5rem; margin-bottom: 20px; color: var(--gold);
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-card-inner h3 { font-size: 1.5rem; margin-bottom: 12px; }
.cta-card-inner p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 28px; line-height: 1.6; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-left h2 {
  font-family: var(--font-display); font-size: 3rem;
  line-height: 1.05; margin-bottom: 24px;
}
.contact-left > p { color: var(--text-2); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.2rem; padding-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-3); margin-bottom: 2px; }
.contact-item span { font-size: 0.95rem; }

.service-interest { }
.si-label { font-size: 0.85rem; color: var(--text-3); margin-bottom: 10px; }
.si-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.si-tag {
  padding: 7px 14px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text-2); cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.si-tag:hover, .si-tag.active {
  background: var(--gold-dim); border-color: var(--gold); color: var(--gold);
}

.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: 6px; }
.form-group label {
  font-size: 0.83rem; font-weight: 600; color: var(--text-2);
  letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  transition: border-color 0.2s; outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-3); text-align: center; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem; color: var(--text-3);
  margin-top: 16px; max-width: 280px; line-height: 1.6;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--text-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-3);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .digital-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { 
    display: none; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,9,12,0.98);
    padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text);
    border-radius: 2px; transition: all 0.3s;
  }

  .hero-content { padding: 60px 20px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }

  .section { padding: 64px 0; }
  .section-header h2 { font-size: 2.2rem; }
  .section-header { margin-bottom: 40px; }

  .pillars-grid { grid-template-columns: 1fr; border-radius: 0; }
  .digital-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  
  .callout-inner { flex-direction: column; text-align: center; }
  .callout-inner h2 { font-size: 2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
