/* ============================================
   GREENHOUSE CONSTRUCTION CO. - DESIGN SYSTEM
   ============================================ */
/* CSS VERSION: 2026-05-30-cpanel-fix */
/* FONT OPTIONS (swap by editing --font-display / --font-body below)
   A) Inter (recommended): modern, neutral corporate sans
   B) Source Sans 3: slightly warmer, very readable
   C) IBM Plex Sans: technical / enterprise feel
   D) System UI: no network request (fastest)
*/

/* Option A (active) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Option B */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700;800&display=swap'); */

/* Option C */
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap'); */

:root {
  --bg-dark: #0D1A0E;
  --primary: #1E4D2B;
  --accent: #7EC85A;
  --cream: #F5F0E8;
  --soil: #8B6F4E;
  --bg-card: #142117;
  --bg-section-alt: #0f1f11;
  --border: rgba(126,200,90,.12);
  --text-muted: rgba(245,240,232,.55);
  /* Option A: Inter (recommended) */
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Option B: Source Sans 3 */
  /* --font-display: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */
  /* --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */

  /* Option C: IBM Plex Sans */
  /* --font-display: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */
  /* --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */

  /* Option D: System UI (no import) */
  /* --font-display: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */
  /* --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; */
  --ease: cubic-bezier(.23,1,.32,1);
  --container: 1240px;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::before {
  content:'';
  position:fixed; inset:0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none; z-index:9999; opacity:.4;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

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

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-family:var(--font-display); font-weight:700; line-height:1.15; }
h1 { font-size:clamp(2.6rem,5.5vw,4.8rem); letter-spacing:-.02em; }
h2 { font-size:clamp(2rem,4vw,3.2rem); letter-spacing:-.015em; }
h3 { font-size:clamp(1.3rem,2.2vw,1.7rem); }
h4 { font-size:1.15rem; }

.label {
  display:inline-block;
  font-family:var(--font-body);
  font-size:.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--accent);
  margin-bottom:16px;
  padding:6px 14px;
  border:1px solid rgba(126,200,90,.25);
  border-radius:40px;
}

.section-sub {
  color:var(--text-muted);
  max-width:620px;
  font-size:1.05rem;
  margin-top:12px;
}

/* --- LIGHT (CREAM) SECTION OVERRIDES --- */
.light-section {
  background:var(--cream) !important;
  color:var(--bg-dark);
}
.light-section h2,
.light-section h3,
.light-section h4 { color:var(--bg-dark); }
.light-section p,
.light-section .section-sub { color:rgba(13,26,14,.6); }
.light-section .label {
  color:var(--primary);
  border-color:rgba(30,77,43,.25);
}
.light-section .btn-link { color:var(--primary); }
.light-section .btn-link:hover { color:var(--accent); }

/* --- BUTTONS --- */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body);
  font-weight:600; font-size:.95rem;
  padding:14px 32px;
  border-radius:60px;
  border:none; cursor:pointer;
  transition: all .35s var(--ease);
  position:relative; overflow:hidden;
}
.btn-primary {
  background:var(--accent);
  color:var(--bg-dark);
}
.btn-primary:hover { background:#92d86e; transform:translateY(-2px); box-shadow:0 8px 30px rgba(126,200,90,.25); }

.btn-secondary {
  background:transparent;
  color:var(--cream);
  border:1.5px solid rgba(245,240,232,.25);
}
.btn-secondary:hover { border-color:var(--accent); color:var(--accent); }

.btn-link {
  background:none; border:none; color:var(--accent);
  font-weight:600; padding:0; font-size:.95rem; cursor:pointer;
  transition:gap .3s var(--ease);
}
.btn-link:hover { gap:12px; }
.btn-link::after { content:'->'; }

/* --- NAVIGATION --- */
.navbar {
  position:fixed; top:0; left:0; width:100%;
  z-index:1000;
  padding:18px 0;
  transition: all .4s var(--ease);
  background:transparent;
}
.navbar.scrolled {
  background:rgba(13,26,14,.92);
  backdrop-filter:blur(16px);
  padding:12px 0;
  border-bottom:1px solid var(--border);
}
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo {
  font-family:var(--font-display);
  font-weight:700; font-size:1.25rem;
  color:var(--cream);
}
.nav-logo span { color:var(--accent); }
.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a {
  font-size:.9rem; font-weight:500;
  color:rgba(245,240,232,.7);
  transition:color .3s;
}
.nav-links a:hover { color:var(--cream); }
.nav-cta { margin-left:8px; }

.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(--cream); border-radius:2px; transition:all .3s; }

.mobile-menu {
  display:none;
  position:fixed; inset:0;
  background:rgba(13,26,14,.97);
  backdrop-filter:blur(20px);
  z-index:999;
  flex-direction:column;
  align-items:center; justify-content:center; gap:32px;
}
.mobile-menu.active { display:flex; }
.mobile-menu a { font-size:1.4rem; font-weight:500; }
.mobile-close { position:absolute; top:24px; right:24px; background:none; border:none; color:var(--cream); font-size:2rem; cursor:pointer; }

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

/* Full-bleed video/image media layer */
.hero-media {
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:var(--bg-dark);
}
.hero-video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.95) contrast(1.05) brightness(.75);
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,0,0,.15) 0%, rgba(0,0,0,.6) 70%),
    linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.55) 100%);
}

.hero .container {
  position:relative;
  z-index:1;
}
.hero-container {
  padding-left:clamp(24px, 6vw, 96px);
  padding-right:clamp(24px, 3vw, 56px);
}

.hero-content { max-width:920px; }
.hero h1 {
  margin-bottom:22px;
  font-family:var(--font-body);
  font-weight:600;
  letter-spacing:-.035em;
  line-height:1.03;
  font-size:clamp(2.3rem, 4.8vw, 4.2rem);
}
.hero h1 em {
  font-style:normal;
  color:rgba(245,240,232,.95);
}
.hero-sub {
  font-size:1.1rem;
  color:rgba(245,240,232,.78);
  max-width:60ch;
  margin-bottom:34px;
  line-height:1.75;
}
.hero-ctas { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px; }
.trust-badges { display:flex; gap:28px; flex-wrap:wrap; }
.trust-badges span {
  display:flex; align-items:center; gap:8px;
  font-size:.85rem; color:rgba(245,240,232,.72);
}
.trust-badges .check { color:var(--accent); font-weight:700; }

/* Social proof ticker */
.ticker-wrap {
  background:var(--primary);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:14px 0;
  overflow:hidden;
}
.ticker {
  display:flex; gap:60px;
  animation:ticker 30s linear infinite;
  white-space:nowrap;
  width:max-content;
}
.ticker span { font-size:.85rem; font-weight:500; color:var(--cream); opacity:.7; letter-spacing:.05em; }
.ticker .dot { color:var(--accent); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* --- STATS --- */
.stats {
  padding:80px 0;
  background:var(--primary);
  position:relative;
}
.stats::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(126,200,90,.08), transparent 60%);
}
.stats .container { position:relative; }
.stats-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  text-align:center;
}
.stat-item h3 {
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:900;
  color:var(--accent);
  font-family:var(--font-display);
}
.stat-item p {
  font-size:.85rem;
  color:rgba(245,240,232,.6);
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:500;
}

/* --- WHO WE ARE (Split) --- */
.who-we-are { padding:120px 0; }
.split { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.split-text h2 { margin-bottom:24px; }
.light-section .split-text p { color:rgba(13,26,14,.6); margin-bottom:16px; font-size:1.05rem; }
.split-visual {
  aspect-ratio:4/3;
  border-radius:16px;
  background: url('images/who-we-are.png') no-repeat center center / cover;
  border:1px solid rgba(30,77,43,.15);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; position:relative;
  box-shadow:0 20px 60px rgba(13,26,14,.15);
}
.split-visual::before {
  display: none;
}

/* --- SERVICE CARDS --- */
.services { padding:120px 0; background:var(--bg-section-alt); }
.services header { text-align:center; margin-bottom:64px; }
.services .section-sub { margin:12px auto 0; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.service-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px 32px;
  transition:all .4s var(--ease);
  position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--accent), transparent);
  opacity:0; transition:opacity .4s;
}
.service-card:hover { transform:translateY(-4px); border-color:rgba(126,200,90,.3); }
.service-card:hover::before { opacity:1; }
.service-card .icon { font-size:2.4rem; margin-bottom:20px; }
.service-card h3 { margin-bottom:12px; }
.service-card p { color:var(--text-muted); font-size:.95rem; margin-bottom:20px; }
.service-card ul { margin-bottom:24px; }
.service-card li {
  font-size:.85rem; color:var(--text-muted);
  padding:4px 0 4px 18px; position:relative;
}
.service-card li::before { content:'\2713'; position:absolute; left:0; color:var(--accent); }

/* --- FULL SCOPE (Grid) --- */
.full-scope { padding:120px 0; }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scope-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:36px 28px;
  transition:all .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scope-card:hover {
  border-color:rgba(126,200,90,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13,26,14,.15);
}
.scope-num {
  font-family:var(--font-display);
  font-size:2.2rem; font-weight:900;
  color:rgba(126,200,90,.15);
  line-height: 1;
}
.scope-card h4 { color:var(--cream); font-size: 1.15rem; }
.scope-card p { font-size:.88rem; color:var(--text-muted); line-height:1.6; }


/* --- WHY US --- */
.why-us { padding:120px 0; }
.why-us header { text-align:center; margin-bottom:64px; }
.why-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.why-card {
  background:white;
  border:1px solid rgba(13,26,14,.08);
  border-radius:16px;
  padding:40px 36px;
  transition:all .35s var(--ease);
  box-shadow:0 4px 24px rgba(13,26,14,.06);
}
.why-card:hover { border-color:rgba(30,77,43,.2); transform:translateY(-3px); box-shadow:0 12px 40px rgba(13,26,14,.1); }
.why-card .icon { font-size:2rem; margin-bottom:16px; }
.why-card h3 { margin-bottom:10px; }
.why-card p { font-size:.95rem; }

/* --- AGRICULTURAL BENEFITS --- */
.benefits-section { padding:120px 0; }
.benefits-section header { margin-bottom:56px; }
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.benefit-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:40px 32px;
  transition:all .35s var(--ease);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.benefit-card:hover {
  border-color:rgba(126,200,90,.25);
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(13,26,14,.15);
}
.benefit-icon-wrap {
  width:56px; height:56px;
  border-radius:12px;
  background:rgba(126,200,90,.08);
  border:1px solid rgba(126,200,90,.15);
  color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  transition:all .35s var(--ease);
}
.benefit-card:hover .benefit-icon-wrap {
  background:var(--accent);
  color:var(--bg-dark);
  box-shadow:0 0 16px rgba(126,200,90,.4);
}
.benefit-icon-wrap svg { width:24px; height:24px; }
.benefit-content h3 { margin-bottom:12px; font-size:1.35rem; }
.benefit-content p { font-size:.95rem; color:var(--text-muted); line-height:1.7; margin-bottom:20px; }
.benefit-content p strong { color:var(--cream); }
.benefit-features { display:flex; flex-direction:column; gap:8px; }
.benefit-features li { display:flex; align-items:center; gap:8px; font-size:.85rem; color:var(--text-muted); }
.benefit-features li span { color:var(--accent); font-weight:700; margin-right:4px; }

/* --- PROJECT SCALE --- */
.project-scale { padding:120px 0; background:var(--bg-section-alt); }
.scale-content { max-width:700px; margin-bottom:48px; }
.scale-content p { color:var(--text-muted); margin-top:16px; font-size:1.05rem; }
.scale-tiers { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:40px; }
.scale-tier {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:36px 28px;
  text-align:center;
  transition:all .35s var(--ease);
}
.scale-tier:hover { border-color:rgba(126,200,90,.35); transform:translateY(-3px); }
.scale-tier .tier-icon { font-size:2.4rem; margin-bottom:16px; }
.scale-tier h4 { margin-bottom:6px; color:var(--accent); }
.scale-tier .range { font-size:1.1rem; font-weight:600; margin-bottom:6px; color:var(--cream); }
.scale-tier p { font-size:.85rem; color:var(--text-muted); }

/* --- PROCESS --- */
.process { padding:120px 0; }
.process header { text-align:center; margin-bottom:64px; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-steps::before {
  content:''; position:absolute; top:48px; left:12.5%; right:12.5%;
  height:2px; background:linear-gradient(90deg, var(--accent), rgba(30,77,43,.3));
  z-index:0;
}
.step {
  text-align:center; position:relative; z-index:1;
}
.step-num {
  width:56px; height:56px;
  background:var(--primary);
  border:2px solid var(--accent);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-weight:900; font-size:1.2rem; color:var(--accent);
  margin:0 auto 20px;
}
.step h4 { margin-bottom:8px; font-size:1rem; }
.light-section .step p { font-size:.85rem; color:rgba(13,26,14,.55); }

/* --- CTA BAND --- */
.cta-band {
  padding:100px 0;
  position:relative; overflow:hidden;
  text-align:center;
}
.cta-band-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30,77,43,.8), var(--bg-dark)),
    linear-gradient(180deg, var(--primary), var(--bg-dark));
}
.cta-band-bg::before {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(126,200,90,.04) 1px, transparent 1px),
    linear-gradient(rgba(126,200,90,.04) 1px, transparent 1px);
  background-size:40px 40px;
}
.cta-band .container { position:relative; z-index:1; }
.cta-band h2 { margin-bottom:16px; }
.cta-band p { color:var(--text-muted); max-width:600px; margin:0 auto 36px; font-size:1.1rem; }
.cta-band .hero-ctas { justify-content:center; }

/* --- FAQ --- */
.faq { padding:120px 0; }
.faq header { text-align:center; margin-bottom:56px; }
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
  border-bottom:1px solid rgba(13,26,14,.1);
}
.light-section .faq-q {
  width:100%; background:none; border:none; color:var(--bg-dark);
  font-family:var(--font-body);
  font-size:1.05rem; font-weight:600;
  padding:24px 40px 24px 0;
  text-align:left; cursor:pointer;
  position:relative;
  transition:color .3s;
}
.light-section .faq-q:hover { color:var(--primary); }
.light-section .faq-q::after {
  content:'+'; position:absolute; right:0; top:50%; transform:translateY(-50%);
  font-size:1.5rem; color:var(--primary);
  transition:transform .3s;
}
.light-section .faq-item.active .faq-q::after { transform:translateY(-50%) rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .4s var(--ease), padding .4s;
}
.faq-item.active .faq-a { max-height:200px; padding-bottom:24px; }
.light-section .faq-a p { color:rgba(13,26,14,.55); font-size:.95rem; }

/* --- FOOTER --- */
.footer {
  padding:80px 0 0;
  background:var(--bg-dark);
  border-top:1px solid var(--border);
}
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; }
.footer-brand p { color:var(--text-muted); margin-top:12px; font-size:.9rem; }
.footer h4 {
  font-size:.8rem; text-transform:uppercase; letter-spacing:.12em;
  color:var(--accent); margin-bottom:20px; font-family:var(--font-body); font-weight:600;
}
.footer li { margin-bottom:10px; }
.footer a { font-size:.9rem; color:var(--text-muted); transition:color .3s; }
.footer a:hover { color:var(--cream); }
.footer-bottom {
  margin-top:56px; padding:20px 0;
  border-top:1px solid var(--border);
  text-align:center; font-size:.8rem; color:var(--text-muted);
}
.footer-bottom a {
  color: var(--accent);
  transition: color .3s var(--ease);
  font-weight: 500;
}
.footer-bottom a:hover {
  color: var(--cream);
  text-decoration: underline;
}

/* --- SUBPAGE HERO --- */
.sub-hero {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-dark));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(126,200,90,.06), transparent 60%);
  pointer-events: none;
}
.sub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -.03em;
}
.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.breadcrumbs a {
  transition: color .3s;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs span {
  color: var(--accent);
}

/* --- FILTER CONTROLS --- */
.filter-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(126,200,90,.2);
}

/* --- SERVICE PAGE GROUPING --- */
.services-section {
  padding: 80px 0 120px;
}
.service-group-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--accent);
  margin: 56px 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 600;
}
.service-group-title:first-of-type {
  margin-top: 0;
}

/* --- PORTFOLIO / PROJECTS --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126,200,90,0.3);
}
.portfolio-card h3 {
  margin-bottom: 16px;
}
.portfolio-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(126,200,90,0.1);
  border-bottom: 1px solid rgba(126,200,90,0.1);
}
.portfolio-meta-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.portfolio-meta-item span {
  font-size: 0.95rem;
  color: var(--cream);
}
.portfolio-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* --- TIMELINE PROCESS --- */
.detailed-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
}
.detailed-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(126,200,90,.12);
  z-index: 0;
}
.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
  z-index: 2;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-connector {
  position: absolute;
  left: 40px;
  top: 10px;
  width: 2px;
  background: var(--accent);
  z-index: 1;
  height: 0;
}

/* --- PREMIUM CARD IMAGE PLACEHOLDERS --- */
.card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,77,43,.15), rgba(13,26,14,.4));
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(13,26,14,.6);
  transition: border-color .35s var(--ease);
}
.card-image-wrap::before {
  content: '\2022  ' attr(data-label);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  position: absolute;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  opacity: 0;
}
/* If the image loads successfully, show it */
.card-image[src] {
  opacity: 1;
}
/* Zoom effect on card hover */
.service-card:hover .card-image,
.why-card:hover .card-image,
.portfolio-card:hover .card-image {
  transform: scale(1.05);
}
.service-card:hover .card-image-wrap,
.why-card:hover .card-image-wrap,
.portfolio-card:hover .card-image-wrap {
  border-color: rgba(126,200,90,.3);
}

.timeline-dot {
  position: absolute;
  left: 17px;
  top: 4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all .4s var(--ease);
}
.timeline-item:hover .timeline-dot,
.timeline-item.active .timeline-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px rgba(126,200,90,.35);
}
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all .35s var(--ease);
}
.timeline-content:hover {
  border-color: rgba(126,200,90,.35);
  transform: translateX(4px);
}
.timeline-content h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.4rem;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}
.timeline-io {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(126,200,90,.08);
  padding-top: 20px;
}
.timeline-io-box h5 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.timeline-io-box ul {
  font-size: .88rem;
  color: var(--text-muted);
}
.timeline-io-box li {
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
}
.timeline-io-box li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* --- CONTACT / FORMS --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-bullet .bullet-icon {
  background: rgba(126,200,90,.08);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(126,200,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-bullet h4 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-bullet p {
  margin-bottom: 0;
  font-size: .9rem;
  color: var(--text-muted);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(13,26,14,.35);
}
.form-card h3 {
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-weight: 600;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  background: rgba(13,26,14,.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: all .3s var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126,200,90,.15);
  background: rgba(13,26,14,.7);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237EC85A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}
select.form-control option {
  background: var(--bg-card);
  color: var(--cream);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-card button {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.active {
  display: block;
}
.form-success .success-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.form-success p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* --- ANIMATIONS --- */
.reveal {
  opacity:0; transform:translateY(40px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* Counter animation handled by JS */

@media(max-width:1024px) {
  .stats-grid { grid-template-columns:repeat(3,1fr); }
  .split { grid-template-columns:1fr; gap:40px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .benefits-grid { grid-template-columns:1fr; gap:24px; }
  .scope-grid { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:repeat(2,1fr); }
  .process-steps::before { display:none; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  
  .portfolio-grid { grid-template-columns:1fr; gap:24px; }
  .contact-layout { grid-template-columns:1fr; gap:48px; }
}

@media(max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero { padding:120px 0 72px; min-height:auto; }
  .hero-container { padding-left:24px; padding-right:24px; }
  .hero h1 { font-size:clamp(2rem, 7.5vw, 2.7rem); letter-spacing:-.03em; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .service-grid { grid-template-columns:1fr; }
  .scope-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .scale-tiers { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
  .btn { width:100%; justify-content:center; }
  
  .form-grid { grid-template-columns:1fr; gap:0; }
  .form-card { padding: 32px 24px; }
  .detailed-timeline::before { left: 24px; }
  .timeline-item { padding-left: 54px; }
  .timeline-dot { left: 0px; width: 44px; height: 44px; }
  .timeline-content { padding: 24px; }
  .timeline-io { grid-template-columns:1fr; gap:20px; }
}

/* --- CARD IMAGE PLACEHOLDERS & FALLBACKS --- */
.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, hsl(135, 30%, 12%) 0%, hsl(145, 20%, 8%) 100%);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrap::before {
  content: '\2022  ' attr(data-label);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  z-index: 1;
}

/* Hover effects for cards containing image wrappers */
.why-card:hover .card-image-wrap,
.service-card:hover .card-image-wrap,
.scale-tier:hover .card-image-wrap,
.portfolio-card:hover .card-image-wrap {
  border-color: rgba(126, 200, 90, 0.4);
  box-shadow: 0 8px 24px rgba(13, 26, 14, 0.5), inset 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-card:hover .card-image,
.service-card:hover .card-image,
.scale-tier:hover .card-image,
.portfolio-card:hover .card-image {
  transform: scale(1.05);
}

.why-card:hover .card-image-wrap::before,
.service-card:hover .card-image-wrap::before,
.scale-tier:hover .card-image-wrap::before,
.portfolio-card:hover .card-image-wrap::before {
  color: var(--cream);
  opacity: 1;
}




/* --- FLOATING ACTION WIDGET --- */
.floating-ctas {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}
.floating-cta {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s var(--ease);
  box-shadow: 0 8px 30px rgba(13,26,14,.3);
  cursor: pointer;
  border: 1px solid rgba(245,240,232,.08);
}
.cta-icon {
  width: 24px;
  height: 24px;
  transition: transform .35s var(--ease);
}
/* Staggered breathing pulse keyframe animations */
@keyframes cta-pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 8px 30px rgba(13,26,14,.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 8px 30px rgba(13,26,14,.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 30px rgba(13,26,14,.3);
  }
}
@keyframes cta-pulse-consult {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 200, 90, 0.45), 0 8px 30px rgba(13,26,14,.3);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(126, 200, 90, 0), 0 8px 30px rgba(13,26,14,.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 200, 90, 0), 0 8px 30px rgba(13,26,14,.3);
  }
}

/* Consultation Button Styling */
.cta-consult {
  background: var(--bg-card);
  color: var(--accent);
  border-color: var(--border);
  animation: cta-pulse-consult 3s infinite 1.5s;
}
.cta-consult:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(126,200,90,.5);
}
/* WhatsApp Button Styling */
.cta-whatsapp {
  background: #25D366;
  color: white;
  border-color: #20BA5A;
  animation: cta-pulse-whatsapp 3s infinite;
}
.cta-whatsapp:hover {
  background: #128C7E;
  border-color: #075E54;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
}
.floating-cta:hover .cta-icon {
  transform: scale(1.15);
}

/* Premium Glassmorphic Tooltip/Label styling */
.cta-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(20, 33, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all .35s var(--ease);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.floating-cta:hover .cta-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media(max-width:768px) {
  .floating-ctas {
    bottom: 24px;
    right: 24px;
    gap: 12px;
  }
  .floating-cta {
    width: 48px;
    height: 48px;
  }
  .cta-icon {
    width: 20px;
    height: 20px;
  }
  .cta-tooltip { display: none; }
}
