/* Swadeshi Industries & Leasing Ltd. - Main Stylesheet */

/* --- [ CRITICAL CSS & ROOT CONFIGURATION ] --- */
:root {
  --forest: #0B3D22;
  --forest-mid: #1A6B3C;
  --forest-light: #2E9959;
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --cream: #F6F2EB;
  --cream-dark: #EDE8DF;
  --charcoal: #0D0D0D;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #9A9A9A;
  --green-accent: #4CAF50;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1400px;
  --border-radius-sm: 2px;
  --border-radius-md: 4px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

main > section:first-of-type {
    padding-top: 120px;
}

/* --- [ TYPOGRAPHY ] --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
}

p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
}

/* --- [ ANIMATIONS & HELPERS ] --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes tickerLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- [ HEADER & NAVIGATION ] --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 24px 0;
}
header.scrolled {
  background: rgba(246, 242, 235, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 61, 34, 0.07);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; filter: brightness(0) invert(1); transition: var(--transition-normal); }
header.scrolled .logo img { filter: none; }
nav.nav-links { display: flex; gap: 32px; }
nav.nav-links a { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7); transition: var(--transition-fast); }
nav.nav-links a:hover { color: white; }
header.scrolled nav.nav-links a { color: var(--text-secondary); }
header.scrolled nav.nav-links a:hover { color: var(--forest); }
header nav.nav-links a.active { color: white; font-weight: 600; }
header.scrolled nav.nav-links a.active { color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.bse-badge { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.2); padding: 6px 12px; border-radius: 100px; transition: var(--transition-normal); }
header.scrolled .bse-badge { color: var(--forest); border-color: rgba(11, 61, 34, 0.15); }
.pulse-dot { width: 6px; height: 6px; background-color: var(--green-accent); border-radius: 50%; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); animation: pulse 1.6s infinite; }

.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 20px; height: 14px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 100%; height: 1.5px; background-color: white; transition: var(--transition-normal); }
header.scrolled .hamburger span { background-color: var(--forest); }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); background-color: var(--forest); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background-color: var(--forest); }

.mobile-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: var(--cream); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; opacity: 0; pointer-events: none; transition: opacity var(--transition-normal); }
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-overlay a { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 300; color: var(--forest); }
.mobile-overlay a:hover { color: var(--gold); }

/* --- [ HERO SECTION ] --- */
.hero { min-height: 100vh; background-color: var(--forest); background-image: radial-gradient(ellipse at 72% 50%, rgba(46, 153, 89, 0.24) 0%, transparent 60%), radial-gradient(ellipse at 15% 90%, rgba(201, 168, 76, 0.12) 0%, transparent 45%); display: flex; align-items: center; padding-top: 100px; position: relative; }
.hero-rings { position: absolute; top: 10%; right: -10%; pointer-events: none; }
.ring { border: 1px solid rgba(201, 168, 76, 0.12); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-1 { width: 640px; height: 640px; }
.ring-2 { width: 430px; height: 430px; }
.ring-3 { width: 210px; height: 210px; }
.hero-grid { position: absolute; top: 0; right: 0; width: 50%; height: 50%; background-image: url('images/hero-bg-texture.png'); background-repeat: repeat; opacity: 0.07; pointer-events: none; }
.hero-cols { display: grid; grid-template-columns: 55% 45%; align-items: center; gap: 40px; width: 100%; }
.hero-left { display: flex; flex-direction: column; }
.eyebrow { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 24px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--transition-slow) forwards; animation-delay: 0.2s; }
.eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background-color: var(--gold); }
.hero h1 { font-size: clamp(3.5rem, 6.5vw, 6.5rem); line-height: 0.95; color: white; letter-spacing: -0.025em; margin-bottom: 32px; opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s var(--transition-slow) forwards; animation-delay: 0.4s; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub { font-size: 17px; line-height: 1.75; color: rgba(255, 255, 255, 0.65); max-width: 480px; margin-bottom: 40px; opacity: 0; transform: translateY(25px); animation: fadeUp 0.8s var(--transition-slow) forwards; animation-delay: 0.6s; }
.hero-ctas { display: flex; gap: 20px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--transition-slow) forwards; animation-delay: 0.8s; }
.btn-primary { background-color: var(--gold); color: var(--charcoal); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 17px 38px; border-radius: var(--border-radius-sm); cursor: pointer; display: inline-block; transition: var(--transition-normal); }
.btn-primary:hover { background-color: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-secondary { border: 1px solid rgba(255, 255, 255, 0.3); color: white; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 17px 38px; border-radius: var(--border-radius-sm); cursor: pointer; transition: var(--transition-normal); display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.scroll-indicator { position: absolute; bottom: 40px; left: 40px; display: flex; align-items: center; gap: 16px; opacity: 0; animation: fadeIn 1s ease forwards; animation-delay: 1.2s; }
.scroll-line { width: 50px; height: 1px; background-color: rgba(255, 255, 255, 0.25); }
.scroll-text { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.4); }
.hero-right { opacity: 0; transform: translateX(40px); animation: fadeLeft 1s var(--transition-slow) forwards; animation-delay: 0.6s; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(201, 168, 76, 0.2); background: rgba(11, 61, 34, 0.75); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); }
.metric-tile { padding: 32px 24px; display: flex; flex-direction: column; justify-content: center; }
.metric-tile:nth-child(1) { border-right: 1px solid rgba(201, 168, 76, 0.15); border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
.metric-tile:nth-child(2) { border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
.metric-tile:nth-child(3) { border-right: 1px solid rgba(201, 168, 76, 0.15); }
.metric-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.metric-number.growth { color: var(--green-accent); }
.metric-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.5); }

/* --- [ GLOBAL COMPONENTS ] --- */
.section-label { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--forest-mid); margin-bottom: 24px; }
.section-label::before { content: ''; width: 24px; height: 1px; background-color: var(--forest-mid); }

/* --- [ TICKER BAR ] --- */
.ticker-bar { background-color: var(--gold); padding: 18px 0; overflow: hidden; white-space: nowrap; position: relative; display: flex; }
.ticker-track { display: inline-block; animation: tickerLoop 35s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--charcoal); padding: 0 24px; }
.ticker-item::after { content: ''; display: inline-block; width: 4px; height: 4px; background-color: var(--forest); border-radius: 50%; margin-left: 48px; }

/* --- [ MANIFESTO/ABOUT SECTION ] --- */
.manifesto { background-color: var(--cream); }
.manifesto-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.manifesto h2 { font-size: clamp(2.8rem, 4.5vw, 4.2rem); line-height: 1.1; color: var(--forest); }
.manifesto h2 em { font-style: italic; color: var(--forest-mid); }
.manifesto-right { display: flex; flex-direction: column; gap: 32px; }
.manifesto-text { font-size: 16px; line-height: 1.85; font-weight: 300; }
.manifesto-bullets { display: grid; gap: 20px; }
.bullet-item { display: flex; align-items: flex-start; gap: 16px; }
.bullet-icon { flex-shrink: 0; width: 20px; height: 20px; background-color: var(--forest-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.bullet-icon svg { width: 10px; height: 10px; fill: none; stroke: var(--gold); stroke-width: 3px; }
.bullet-content { font-size: 15px; font-weight: 400; color: var(--text-primary); }

/* --- [ STATS STRIP ] --- */
.stats-strip { background-color: var(--forest); padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block { padding: 0 32px; position: relative; transition: var(--transition-normal); }
.stat-block:not(:last-child)::after { content: ''; position: absolute; top: 10%; right: 0; width: 1px; height: 80%; background-color: rgba(255, 255, 255, 0.07); }
.stat-num-container { display: flex; align-items: baseline; color: white; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; font-weight: 300; }
.stat-suffix { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.5vw, 2.5rem); color: var(--gold); margin-left: 2px; }
.stat-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.45); margin-top: 12px; margin-bottom: 6px; }
.stat-sub { font-size: 12px; color: var(--gold-light); font-weight: 400; }
.stat-sub.growth { color: var(--green-accent); }
.stat-line { position: absolute; bottom: -32px; left: 32px; width: 40px; height: 1px; background-color: var(--gold); transition: width var(--transition-normal); }
.stat-block:hover .stat-line { width: 80px; }

/* --- [ BUSINESS SEGMENTS ] --- */
.segments { background-color: var(--cream); }
.segments-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.segments-header .left-col { max-width: 50%; }
.segments-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.segments-header h2 em { font-style: italic; }
.segments-header .right-desc { max-width: 420px; font-size: 15px; line-height: 1.7; }
.segments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background-color: rgba(11, 61, 34, 0.08); }
.segment-card { height: 400px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; cursor: pointer; background-size: cover; background-position: center; }
.card-food { background-image: url('../images/food-park.jpg'); }
.card-retail { background-image: url('../images/r-mart.jpg'); }
.card-dyeing { background-image: url('../images/waterless-dyeing.jpg'); }
.card-minerals { background-image: url('../images/minerals.jpg'); }
.card-copper { background-image: url('../images/copper.jpg'); }
.card-msme { background-image: url('../images/msme-park.jpg'); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 20%, rgba(7, 25, 14, 0.95) 100%); z-index: 1; transition: var(--transition-normal); }
.segment-card:hover .card-overlay { background: linear-gradient(to bottom, rgba(7,25,14,0.4) 0%, rgba(7, 25, 14, 0.98) 100%); }
.card-content { position: relative; z-index: 2; display: flex; flex-direction: column; }
.card-num { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; color: var(--gold); opacity: 0.75; margin-bottom: 12px; }
.segment-card h3 { font-size: 26px; color: white; margin-bottom: 0px; transition: var(--transition-normal); }
.card-desc { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--transition-normal), opacity var(--transition-normal), margin var(--transition-normal); }
.card-arrow { position: absolute; top: 40px; right: 40px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.8); transition: var(--transition-normal); z-index: 2; }
.card-arrow svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 1.5px; transition: var(--transition-normal); }
.segment-card:hover h3 { color: var(--gold); margin-bottom: 8px; }
.segment-card:hover .card-desc { max-height: 100px; opacity: 1; margin-top: 4px; }
.segment-card:hover .card-arrow { opacity: 1; transform: scale(1); background-color: var(--gold); border-color: var(--gold); }
.segment-card:hover .card-arrow svg { stroke: var(--charcoal); }

/* --- [ WHY SWADESHI SECTION ] --- */
.why-swadeshi { background-color: var(--cream-dark); }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-end; margin-bottom: 80px; }
.why-header h2 { font-size: clamp(2.8rem, 4.5vw, 4.2rem); }
.why-header h2 em { font-style: italic; }
.why-header p { font-size: 17px; line-height: 1.8; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background-color: rgba(11, 61, 34, 0.08); }
.why-card { background-color: white; padding: 48px 36px; position: relative; overflow: hidden; transition: var(--transition-slow); }
.why-card::before { content: ''; position: absolute; inset: 0; background-color: var(--forest); transform: translateY(101%); transition: transform var(--transition-slow); z-index: 1; }
.why-icon { position: relative; z-index: 2; width: 48px; height: 48px; margin-bottom: 28px; }
.why-icon img { width: 100%; height: 100%; }
.why-card h3 { font-size: 24px; font-weight: 400; position: relative; z-index: 2; margin-bottom: 16px; transition: var(--transition-slow); }
.why-card p { position: relative; z-index: 2; font-size: 14px; line-height: 1.7; transition: var(--transition-slow); }
.why-card-ghost { position: absolute; top: 10px; right: 20px; font-family: 'Cormorant Garamond', serif; font-size: 100px; font-weight: 300; line-height: 1; color: var(--forest); opacity: 0.04; pointer-events: none; z-index: 2; transition: var(--transition-slow); }
.why-card:hover::before { transform: translateY(0); }
.why-card:hover .why-icon { filter: invert(1) brightness(2); }
.why-card:hover h3 { color: white; }
.why-card:hover p { color: rgba(255, 255, 255, 0.65); }
.why-card:hover .why-card-ghost { color: white; opacity: 0.03; }

/* --- [ INVESTOR RELATIONS SECTION ] --- */
.investor-relations { background-color: var(--charcoal); color: white; }
.investor-glow { position: absolute; top: 0; right: 0; width: 60%; height: 60%; background: radial-gradient(circle at top right, rgba(11, 61, 34, 0.45), transparent 70%); pointer-events: none; }
.investor-cols { display: grid; grid-template-columns: 45% 55%; gap: 80px; align-items: center; }
.investor-left { display: flex; flex-direction: column; align-items: flex-start; }
.investor-left .bse-badge { margin-bottom: 32px; border-color: rgba(201, 168, 76, 0.3); }
.investor-left h2 { color: white; font-size: clamp(2.8rem, 4.5vw, 4.2rem); margin-bottom: 24px; }
.investor-left h2 em { font-style: italic; color: var(--gold); }
.investor-left p { color: rgba(255, 255, 255, 0.55); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.investor-left .hero-ctas { animation: none; opacity: 1; transform: none; }
.investor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background-color: rgba(255, 255, 255, 0.05); }
.investor-tile { background: rgba(255, 255, 255, 0.02); padding: 32px; transition: var(--transition-normal); }
.investor-tile:hover { background: rgba(201, 168, 76, 0.05); }
.investor-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.3); margin-bottom: 8px; }
.investor-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; color: white; margin-bottom: 8px; }
.investor-sub { font-size: 11px; color: rgba(255, 255, 255, 0.35); }
.investor-sub.green { color: var(--green-accent); font-weight: 500; }

/* --- [ LEADERSHIP SECTION ] --- */
.leadership { background-color: var(--cream); }
.leadership-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.leadership-header h2 { font-size: clamp(2.8rem, 4.5vw, 4.2rem); margin-bottom: 16px; }
.leadership-header h2 em { font-style: italic; }
.leadership-header p { font-size: 16px; line-height: 1.7; }
.leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.leader-card { background-color: white; padding: 28px; border-radius: var(--border-radius-sm); display: flex; flex-direction: column; align-items: center; text-align: center; transition: var(--transition-slow); }
.leader-circle { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 24px; transition: var(--transition-slow); background-size: cover; background-position: center; border: 3px solid transparent; }
.leader-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px; color: var(--forest); margin-bottom: 6px; transition: var(--transition-slow); }
.leader-title { font-size: 13px; font-weight: 300; color: var(--text-secondary); margin-bottom: 16px; transition: var(--transition-slow); }
.leader-line { width: 30px; height: 1px; background-color: var(--gold); margin-bottom: 16px; transition: var(--transition-slow); }
.leader-desc { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0); max-height: 0; overflow: hidden; transition: var(--transition-slow); }
.leader-card:hover { background-color: var(--forest); }
.leader-card:hover .leader-circle { border-color: var(--gold); }
.leader-card:hover h3 { color: white; }
.leader-card:hover .leader-title { color: rgba(255, 255, 255, 0.6); }
.leader-card:hover .leader-desc { color: rgba(255, 255, 255, 0.85); max-height: 100px; margin-top: 8px; }

/* --- [ CONTACT / CTA SECTION ] --- */
.cta-section { background-color: var(--forest); color: white; }
.cta-cols { display: grid; grid-template-columns: 45% 55%; gap: 80px; align-items: flex-start; }
.cta-left { display: flex; flex-direction: column; }
.cta-left .section-label { color: var(--gold); margin-bottom: 32px; }
.cta-left .section-label::before { background-color: var(--gold); }
.cta-left h2 { color: white; font-size: clamp(2.8rem, 4.5vw, 4.2rem); margin-bottom: 24px; }
.cta-left h2 em { font-style: italic; color: var(--gold); }
.cta-left p { color: rgba(255, 255, 255, 0.55); font-size: 16px; line-height: 1.8; margin-bottom: 48px; }
.contact-blocks { display: grid; gap: 28px; }
.contact-block { display: flex; align-items: center; gap: 20px; }
.contact-icon { flex-shrink: 0; width: 44px; height: 44px; background-color: var(--forest-mid); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.5px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info .label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.4); margin-bottom: 4px; }
.contact-info .val { font-size: 14px; font-weight: 400; color: white; }
.cta-right { background-color: white; padding: 48px 40px; border-radius: var(--border-radius-md); }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--forest); margin-bottom: 8px; }
.form-control { background-color: var(--cream); border: 1px solid rgba(11, 61, 34, 0.1); border-radius: var(--border-radius-sm); padding: 14px 18px; font-size: 14px; color: var(--text-primary); width: 100%; transition: var(--transition-fast); }
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--forest-mid); background-color: white; }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background-color: var(--forest); color: white; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; padding: 18px; border-radius: var(--border-radius-sm); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition-normal); }
.btn-submit:hover { background-color: var(--forest-mid); }

/* --- [ FOOTER ] --- */
footer { background-color: var(--charcoal); color: rgba(255, 255, 255, 0.4); padding: 80px 0 36px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; color: rgba(255, 255, 255, 0.38); line-height: 1.7; max-width: 250px; margin-bottom: 24px; }
.social-row { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--border-radius-sm); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.social-btn svg { width: 16px; height: 16px; fill: none; stroke: rgba(255, 255, 255, 0.5); stroke-width: 1.5px; }
.social-btn:hover { border-color: var(--gold); background-color: rgba(201, 168, 76, 0.05); }
.social-btn:hover svg { stroke: var(--gold); }
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255, 255, 255, 0.4); transition: var(--transition-fast); }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 36px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255, 255, 255, 0.22); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: white; }

/* --- [ RESPONSIVE MEDIA QUERIES ] --- */
@media (max-width: 1200px) {
  :root { --section-padding: 100px 40px; }
  .manifesto-cols, .investor-cols, .cta-cols { gap: 40px; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .hero-cols { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .manifesto-cols, .why-header, .investor-cols, .cta-cols { grid-template-columns: 1fr; }
  .why-header { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-block:nth-child(2)::after { display: none; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  nav.nav-links, .nav-right .bse-badge { display: none; }
  .hamburger { display: flex; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  :root { --section-padding: 80px 20px; }
  .container { padding: 0 24px; }
  .stats-grid, .leadership-grid, .segments-grid, .why-grid { grid-template-columns: 1fr; }
  .stat-block::after { display: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .investor-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}