/* TAKO-INSPIRED AWWWARDS DESIGN SYSTEM FOR SARK - NON-PIXELATED CRISP ASSET UPDATE */
:root {
  --bg-dark: #0e1214;
  --bg-dark-card: #161b1e;
  --bg-light: #f6f5f1;
  --text-light: #f8f9fa;
  --text-dark: #121416;
  --text-muted-dark: #828a90;
  --text-muted-light: #949da4;
  --brand-purple: #8B83DF;
  --brand-pink: #e5508a;
  --brand-green: #38d996;
  --brand-yellow: #f5d020;
  --border-glass: rgba(255, 255, 255, 0.15);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.logo-link { text-decoration: none; }
.logo-text {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.logo-dot { color: var(--brand-green); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  cursor: pointer;
  z-index: 110;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: #090c0e;
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 2rem 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 2rem; }
.mobile-link {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mobile-menu-footer { display: flex; flex-direction: column; gap: 1.5rem; }
.btn-full { width: 100%; text-align: center; }
.mobile-email { color: var(--text-muted-light); text-decoration: none; font-size: 0.95rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-green);
  color: #000000;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(56, 217, 150, 0.4);
}
.btn-primary-large {
  background: #ffffff;
  color: #000000;
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
}
.btn-primary-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}
.btn-outline-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  color: #ffffff;
  border: 1px solid var(--border-glass);
}
.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* TAKO AWWWARDS HERO DESIGN SYSTEM FOR SARK */
.hero-section {
  position: relative;
  min-height: 95vh;
  padding: 9rem 5rem 5rem 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(139, 131, 223, 0.14) 0%, transparent 60%);
}
.hero-bg-glow {
  position: absolute;
  top: -10%; right: 10%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(229, 80, 138, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  z-index: 2;
}

/* TAKO Mint Green Pill Badge */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(56, 217, 150, 0.2);
  border: 1px solid rgba(56, 217, 150, 0.4);
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.badge-dot-green {
  width: 8px; height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand-green);
}
.badge-pill-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-green);
}

/* TAKO Typography Layout */
.hero-main-title {
  line-height: 0.92;
  margin-bottom: 1.8rem;
}
.title-bold {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.title-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.title-thin {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: #a49ee8;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 0.6rem;
  line-height: 1.5;
  font-weight: 500;
}
.hero-subtext-secondary {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-cue-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 2px solid var(--brand-purple);
  padding-left: 0.8rem;
}
.scroll-cue-text { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; color: var(--brand-purple); }
.scroll-cue-sub { font-size: 0.82rem; color: var(--text-muted-light); }

/* TAKO CAPSULE GLASS LENS WITH 3D CANVAS */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 540px;
}
.hero-rocket-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  min-height: 650px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: block;
  z-index: 10;
  pointer-events: none;
}
#hero2DRocketCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 15;
  pointer-events: auto;
}
#hero2DRocketCanvas {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  min-width: 340px;
  min-height: 480px;
  display: block;
  z-index: 15;
  pointer-events: auto;
}
#hero2DRocketCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 5;
  pointer-events: auto;
}
#hero2DRocketCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 4;
}
.lens-glow-dot {
  position: absolute;
  top: 30px; right: 40px;
  width: 22px; height: 22px;
  background: var(--brand-yellow);
  border-radius: 50%;
  box-shadow: 0 0 22px var(--brand-yellow);
  z-index: 5;
}
.rocket-launch-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 250px; height: 150px;
  background: radial-gradient(circle, rgba(229, 80, 138, 0.4) 0%, rgba(245, 208, 32, 0.2) 50%, transparent 80%);
  z-index: 3;
  pointer-events: none;
}

/* TAKO Hot Pink Accent Card */
.accent-color-card {
  position: absolute;
  bottom: 10px; left: -25px;
  width: 280px;
  background: linear-gradient(135deg, #e5508a, #c43872);
  border-radius: 24px;
  padding: 1.8rem;
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(229, 80, 138, 0.4);
  z-index: 10;
}
.accent-card-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px; border-radius: 99px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.badge-dot-white { width: 5px; height: 5px; background: #ffffff; border-radius: 50%; }
.accent-card-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.accent-card-desc { font-size: 0.8rem; opacity: 0.9; line-height: 1.4; margin-bottom: 1.2rem; }
.accent-card-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffffff; color: #e5508a; text-decoration: none; font-size: 1.1rem; font-weight: 800;
}
/* PRODUCT ANCHOR BAR */
.product-anchor-bar-wrapper {
  position: sticky; top: 0; z-index: 90;
  background: rgba(14, 18, 20, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5rem;
}
.product-bar-label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; color: var(--brand-green);
  white-space: nowrap; margin-right: 2rem;
}
.product-anchor-bar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 1rem 0; overflow-x: auto; white-space: nowrap;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 2rem; width: 100%;
}
.product-anchor-bar::-webkit-scrollbar { display: none; }
.anchor-item { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; transition: opacity 0.2s; flex-shrink: 0; }
.anchor-item:hover { opacity: 0.7; }
.anchor-num { font-size: 0.72rem; font-weight: 800; color: var(--brand-purple); }
.anchor-name { font-size: 0.85rem; font-weight: 600; color: #ffffff; }

/* SECTION 1 — THE SIGNAL (SHARP COMPACT BALL/SPHERE IMAGE) */
.growth-story { padding: 9rem 5rem; background: var(--bg-light); color: var(--text-dark); }
.growth-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: flex-start; }
.growth-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  background: transparent; /* Seamless blend with light section background */
  border: none;
  margin: 0 auto;
}
.plant-grow-status {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.grow-status-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #121416;
  letter-spacing: 0.05em;
}
#plantGrowCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}
.plant-grow-status {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(10, 14, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 217, 150, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}
.grow-pulse-dot {
  width: 7px; height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-green);
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.grow-status-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.growth-img-badge { position: absolute; top: 20px; left: 20px; background: rgba(18, 20, 22, 0.88); backdrop-filter: blur(10px); color: #ffffff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; padding: 6px 14px; border-radius: 99px; }

.section-eyebrow { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; margin-bottom: 1rem; color: var(--brand-purple); }
.dark-mode .section-eyebrow { color: var(--brand-green); }
.section-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 2rem; }

.story-paragraphs { margin-bottom: 3rem; }
.story-paragraphs p { font-size: 1.05rem; color: #3a3d42; margin-bottom: 0.6rem; line-height: 1.5; }
.story-quote { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-dark); margin: 1.5rem 0 !important; }
.story-highlight { font-size: 1.1rem; color: #121416; line-height: 1.6; border-left: 3px solid var(--brand-purple); padding-left: 1rem; margin-top: 1.5rem !important; }

.growth-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.growth-step { border-top: 2px solid rgba(0,0,0,0.1); padding-top: 1rem; }
.step-num { font-size: 0.72rem; font-weight: 800; color: var(--brand-purple); margin-bottom: 0.3rem; letter-spacing: 0.1em; }
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.88rem; color: #55585d; line-height: 1.5; }
.story-closing { font-size: 1.25rem; font-family: var(--font-serif); color: var(--text-dark); border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.5rem; }

/* SECTION 2 — PRODUCTS */
.products-section { padding: 9rem 5rem; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; gap: 2rem; }
.products-header-right p { font-size: 0.95rem; color: var(--text-muted-light); text-align: right; line-height: 1.6; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: var(--bg-dark-card); border: 1px solid var(--border-glass); border-radius: 26px; padding: 2.4rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 25px 50px rgba(0,0,0,0.7); }

.status-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 99px; margin-bottom: 1.2rem; }
.status-live { background: rgba(56, 217, 150, 0.15); color: var(--brand-green); border: 1px solid rgba(56, 217, 150, 0.3); }
.badge-dot { width: 6px; height: 6px; background: var(--brand-green); border-radius: 50%; }
.status-dev { background: rgba(139, 131, 223, 0.15); color: #a49ee8; border: 1px solid rgba(139, 131, 223, 0.3); }
.status-exp { background: rgba(229, 80, 138, 0.15); color: #e5508a; border: 1px solid rgba(229, 80, 138, 0.3); }
.status-concept { background: rgba(245, 208, 32, 0.15); color: var(--brand-yellow); border: 1px solid rgba(245, 208, 32, 0.3); }

.card-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.card-subtitle-headline { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.9); margin-bottom: 0.8rem; }
.card-desc { font-size: 0.88rem; color: var(--text-muted-light); line-height: 1.5; }

/* ORBIT EVENT UI WIDGET */
.event-metrics-row { display: flex; gap: 0.6rem; margin: 0.6rem 0; }
.e-metric { flex: 1; background: rgba(255,255,255,0.04); padding: 0.5rem; border-radius: 10px; text-align: center; }
.e-val { display: block; font-size: 1.2rem; font-weight: 800; color: var(--brand-green); }
.e-lbl { font-size: 0.65rem; color: var(--text-muted-light); }
.w-event-next { background: rgba(139,131,223,0.12); padding: 0.6rem 0.8rem; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.next-lbl { font-size: 0.62rem; font-weight: 800; color: var(--brand-purple); letter-spacing: 0.08em; }
.next-val { font-weight: 600; color: #ffffff; }

.card-footer { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 0.5rem; }
.card-link { font-size: 0.9rem; color: #ffffff; text-decoration: none; font-weight: 700; transition: color 0.2s; }
.card-link:hover { color: var(--brand-green); }
.card-supporting-line { font-size: 0.78rem; color: var(--text-muted-light); font-style: italic; }

/* Product Section Closing Editorial Statement */
.product-closing-block { text-align: center; margin-top: 6rem; padding: 4rem 2rem; border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.closing-lead { font-size: 1.1rem; color: var(--text-muted-light); margin-bottom: 0.5rem; }
.closing-instinct { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; margin-bottom: 0.8rem; }
.closing-final { font-size: 1rem; color: var(--brand-green); font-weight: 700; letter-spacing: 0.05em; }

/* SECTION 3 — CAPABILITIES */
.capabilities-section { padding: 9rem 5rem; border-top: 1px solid var(--border-glass); }
.cap-header { text-align: left; margin-bottom: 5rem; }
.cap-header .section-title { max-width: 900px; }
.cap-supporting-copy { font-size: 1.05rem; color: var(--text-muted-light); line-height: 1.7; max-width: 800px; margin-top: 1.5rem; }

.capabilities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.8rem; }
.cap-card { padding-top: 1.8rem; border-top: 1px solid var(--border-glass); transition: border-color 0.3s; }
.cap-card:hover { border-color: var(--brand-green); }
.cap-num { font-size: 0.75rem; font-weight: 800; color: var(--brand-green); margin-bottom: 1rem; }
.cap-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.8rem; line-height: 1.3; }
.cap-desc { font-size: 0.85rem; color: var(--text-muted-light); line-height: 1.55; }

.cap-closing-statement { display: flex; justify-content: space-between; margin-top: 5rem; padding-top: 2rem; border-top: 1px solid var(--border-glass); font-family: var(--font-serif); font-size: 1.1rem; color: rgba(255,255,255,0.85); flex-wrap: wrap; gap: 1rem; }

/* SECTION 4 — HOW WE THINK */
.philosophy-section { padding: 9rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; background: #f4f2ed; color: var(--text-dark); }
.philosophy-text-container { display: flex; flex-direction: column; justify-content: space-between; }
.philosophy-body { font-size: 1.05rem; color: #3a3a3c; line-height: 1.65; margin-bottom: 2.5rem; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.principle-item { border-top: 2px solid rgba(0,0,0,0.1); padding-top: 0.8rem; }
.principle-item h5 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; color: #121416; }
.principle-item p { font-size: 0.85rem; color: #55585d; line-height: 1.45; }
.phil-img { width: 100%; height: 540px; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* SECTION 5 — WHY SARK */
.why-sark-section { padding: 9rem 5rem; background: #0e1214; color: #ffffff; border-top: 1px solid var(--border-glass); }
.why-sark-container { max-width: 900px; margin: 0 auto; }
.why-sark-body p { font-size: 1.15rem; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; }
.why-sark-bullets { display: flex; flex-direction: column; gap: 0.5rem; margin: 2rem 0; border-left: 2px solid var(--brand-green); padding-left: 1rem; }
.why-sark-bullets span { font-size: 1.05rem; font-weight: 600; color: #ffffff; }
.why-sark-highlight-block { background: rgba(255,255,255,0.04); border: 1px solid var(--border-glass); border-radius: 24px; padding: 2.5rem; margin-top: 3rem; }
.why-highlight-title { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; line-height: 1.2; margin-bottom: 1rem; }
.why-highlight-desc { font-size: 0.95rem; color: var(--text-muted-light); line-height: 1.6; }

/* CLIENT WORK SECTION */
.client-work-section { padding: 8rem 5rem; background: #121618; text-align: center; border-top: 1px solid var(--border-glass); }
.client-work-container { max-width: 750px; margin: 0 auto; }
.client-work-body { font-size: 1.1rem; color: var(--text-muted-light); line-height: 1.65; margin-bottom: 2.5rem; }

/* FINAL CTA & FOOTER */
.cta-footer-section { position: relative; min-height: 85vh; display: flex; flex-direction: column; justify-content: space-between; background-color: #050505; color: #ffffff; overflow: hidden; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; z-index: 0; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.95) 100%); z-index: 1; }
.cta-content { position: relative; z-index: 2; padding: 9rem 5rem 5rem 5rem; max-width: 800px; }
.section-eyebrow-light { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; color: var(--brand-green); display: block; margin-bottom: 1rem; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1.05; margin-bottom: 1.5rem; font-weight: 300; font-style: italic; }
.cta-body { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1.2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cta-supporting-line { font-size: 0.85rem; color: var(--text-muted-light); font-style: italic; }

/* FOOTER */
.footer { position: relative; z-index: 2; background: #ffffff; color: var(--text-dark); padding: 5rem; display: flex; justify-content: space-between; }
.footer-left { max-width: 300px; }
.footer-logo { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; color: var(--text-dark); }
.footer-tagline { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.footer-subline { font-size: 0.82rem; color: var(--text-muted-dark); margin-bottom: 3rem; line-height: 1.45; }
.copyright { font-size: 0.78rem; color: var(--text-muted-dark); opacity: 0.8; }

.footer-links { display: flex; gap: 4.5rem; }
.footer-col { display: flex; flex-direction: column; font-size: 0.82rem; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--text-muted-dark); margin-bottom: 1.2rem; font-weight: 800; }
.footer-col a, .footer-col p { color: var(--text-dark); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.2s; opacity: 0.88; }
.footer-col a:hover { opacity: 1; color: var(--brand-purple); }

/* MOBILE RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .navbar { padding: 1.2rem 3rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero-section { padding: 7.5rem 3rem 4rem 3rem; }
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-glass-card { padding: 2rem; border-radius: 24px; }
  .hero-right { justify-content: center; }
  .hero-image-frame { max-width: 100%; height: 350px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-container { grid-template-columns: 1fr; gap: 3rem; }
  .growth-image-container { max-width: 100%; height: 320px; }
  .philosophy-section { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 3rem; }
  .footer { padding: 4rem 3rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .logo-text { font-size: 1.8rem; }
  .hero-section { padding: 6.5rem 1.5rem 3.5rem 1.5rem; }
  .hero-glass-card { padding: 1.5rem; }

  .product-anchor-bar-wrapper { padding: 0 1.2rem; }

  .growth-story { padding: 5rem 1.5rem; }
  .growth-image-container { height: 280px; }
  .growth-steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .products-section { padding: 5rem 1.5rem; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .products-header-right p { text-align: left; }
  .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .capabilities-section { padding: 5rem 1.5rem; }
  .capabilities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cap-closing-statement { flex-direction: column; gap: 0.5rem; }

  .philosophy-section { padding: 5rem 1.5rem; }
  .principles-grid { grid-template-columns: 1fr; }
  .phil-img { height: 320px; border-radius: 20px; }

  .why-sark-section { padding: 5rem 1.5rem; }
  .client-work-section { padding: 5rem 1.5rem; }
  .cta-content { padding: 6rem 1.5rem 4rem 1.5rem; }
  
  .footer { flex-direction: column; gap: 3rem; padding: 3.5rem 1.5rem; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
}
