/* ==========================================================================
   GROWVIA - GLASSMORPHIC BRAND DESIGN SYSTEM & STYLESHEET
   Brand Colors: Vibrant Growth Orange (#E85D04) & Slate Charcoal (#1E293B)
   ========================================================================== */

/* --- CSS Variables & Design Tokens (GROWVIA BY MANUJ OFFICIAL BRAND KIT 2026) --- */
:root {
  --primary-orange: #F36A10;
  --primary-orange-hover: #D85800;
  --primary-orange-light: #FFF3EB;
  --primary-orange-glow: rgba(243, 106, 16, 0.28);
  
  --slate-darker: #2F2F2F;
  --slate-dark: #3A3A3A;
  --slate-medium: #494949;
  --slate-muted: #6B6B6B;
  --slate-light: #D7D4CF;

  --bg-light: #F8F8F8;
  --bg-white: #FFFFFF;
  --bg-surface: #F1F0ED;

  --border-color: #E2DFDA;
  --border-dark: #494949;
  --border-glass: rgba(255, 255, 255, 0.8);

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Bebas Neue', cursive, sans-serif;

  --shadow-sm: 0 2px 8px rgba(47, 47, 47, 0.04);
  --shadow-md: 0 12px 30px -5px rgba(47, 47, 47, 0.08);
  --shadow-lg: 0 24px 48px -10px rgba(47, 47, 47, 0.12);
  --shadow-orange: 0 14px 35px -8px rgba(243, 106, 16, 0.4);
  --shadow-glass: 0 10px 40px 0 rgba(47, 47, 47, 0.06);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(232, 93, 4, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
    radial-gradient(rgba(232, 93, 4, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  color: var(--slate-medium);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-darker);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Glassmorphic Containers & Cards --- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 25px 50px -10px rgba(232, 93, 4, 0.18);
}

/* --- 3D Glossy Metallic Orange Text Effect (Matches Official 3D Logo Finish) --- */
.gradient-text,
.highlight-glossy-orange {
  background: linear-gradient(180deg, #FFC499 0%, #FF8D3B 22%, #F36A10 52%, #B53E00 82%, #692200 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(243, 106, 16, 0.4)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9));
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background-color: var(--primary-orange-light);
  border: 1px solid rgba(232, 93, 4, 0.25);
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.12);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.5);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(232, 93, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

@keyframes auto-sheen {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

.section-tagline {
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.18rem;
  color: var(--slate-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Buttons & Sheen Effect --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* --- LightBeam Button Component (Rotating Light Beam Border Effect) --- */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  from { --gradient-angle: 0deg; }
  to { --gradient-angle: 360deg; }
}

.btn-primary,
.btn-whatsapp,
a.btn-whatsapp,
.dock-cta-pill,
.btn-lightbeam {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  border-radius: 9999px !important;
  background: #2F2F2F !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 25px -4px rgba(243, 106, 16, 0.45) !important;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease !important;
}

.btn-primary::before,
.btn-whatsapp::before,
a.btn-whatsapp::before,
.dock-cta-pill::before,
.btn-lightbeam::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: 9999px;
  background: conic-gradient(from var(--gradient-angle), transparent 0%, #FFA767 35%, #F36A10 50%, #FF8D3B 65%, transparent 80%, transparent 100%);
  animation: border-spin 2.2s linear infinite;
  pointer-events: none;
}

.btn-primary::after,
.btn-whatsapp::after,
a.btn-whatsapp::after,
.dock-cta-pill::after,
.btn-lightbeam::after {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 9999px;
  background: linear-gradient(180deg, #FFA767 0%, #F36A10 40%, #D85800 80%, #8A3000 100%);
  transition: background 0.3s ease;
}

.btn-primary:hover,
.btn-whatsapp:hover,
a.btn-whatsapp:hover,
.dock-cta-pill:hover,
.btn-lightbeam:hover {
  transform: scale(1.05) translateY(-2px) !important;
  box-shadow: 0 0 35px 4px rgba(243, 106, 16, 0.7) !important;
  color: #FFFFFF !important;
}

.btn-primary:hover::after,
.btn-whatsapp:hover::after,
a.btn-whatsapp:hover::after,
.dock-cta-pill:hover::after,
.btn-lightbeam:hover::after {
  background: linear-gradient(180deg, #FFB67E 0%, #FF781E 40%, #E05800 80%, #9E3800 100%);
}

.btn-secondary {
  background: linear-gradient(180deg, #4A4A4A 0%, #2F2F2F 50%, #1A1A1A 100%);
  color: var(--bg-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(47, 47, 47, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #5A5A5A 0%, #3A3A3A 50%, #2F2F2F 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 12px 25px rgba(47, 47, 47, 0.4);
}

.btn-outline {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F8F8 45%, #E5E2DC 100%) !important;
  color: #2F2F2F !important;
  font-weight: 800 !important;
  border: 1px solid #D7D4CF !important;
  box-shadow: inset 0 1px 0 #FFFFFF, 0 6px 16px rgba(47, 47, 47, 0.08);
}

.btn-outline:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF3EB 45%, #FFE2CF 100%) !important;
  border-color: #F36A10 !important;
  color: #F36A10 !important;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 #FFFFFF, 0 10px 20px rgba(243, 106, 16, 0.15);
}

/* --- Header / Navigation (Official Brand Kit Charcoal #2F2F2F - 100% Solid Solid Black-Charcoal, NO BROWN BLED) --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #2F2F2F !important;
  background: #2F2F2F !important;
  border-bottom: 1px solid rgba(215, 212, 207, 0.25);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* --- macOS Text Magnification Dock Component --- */
.magnification-dock-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.magnification-dock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(47, 47, 47, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(215, 212, 207, 0.3);
  border-radius: 9999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dock-text-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: #FFFFFF !important;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.dock-text-item:hover {
  transform: scale(1.12) translateY(-2px) !important;
  color: #FFB076 !important;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.dock-text-item.active {
  background: rgba(243, 106, 16, 0.25);
  color: #F36A10 !important;
  border: 1px solid #F36A10;
}

.dock-cta-pill {
  background: linear-gradient(180deg, #FFA767 0%, #F36A10 38%, #D85800 75%, #8A3000 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(243, 106, 16, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.dock-cta-pill:hover {
  transform: scale(1.12) translateY(-2px) !important;
  background: linear-gradient(180deg, #FFB67E 0%, #FF781E 38%, #E05800 75%, #9E3800 100%) !important;
  color: #FFFFFF !important;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--slate-darker);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--slate-darker);
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-darker);
}

.drawer-link:hover {
  color: var(--primary-orange);
}

/* --- Hero Section --- */
.hero-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 1.25rem 0;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--slate-muted);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--slate-darker);
}

.stat-item-label {
  font-size: 0.85rem;
  color: var(--slate-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.hero-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-orange), var(--slate-dark));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.25;
  filter: blur(8px);
}

.niche-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.niche-pill {
  padding: 0.4rem 0.9rem;
  background-color: var(--bg-surface);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-medium);
  transition: var(--transition);
  cursor: pointer;
}

.niche-pill:hover, .niche-pill.active {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-orange);
}

/* --- Interactive Niche Calculator Widget --- */
.calculator-box {
  background: var(--slate-darker);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.calculator-title {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calculator-group {
  margin-bottom: 1.25rem;
}

.calculator-label {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 0.5rem;
}

.calculator-select, .calculator-slider {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--slate-dark);
  border: 1px solid var(--border-dark);
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.calculator-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.output-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-orange);
}

/* --- Marquee Section (High-Contrast Clean Brand Kit Charcoal #2F2F2F with Edge Fade & Hover Pause) --- */
.marquee-section {
  padding: 3rem 0;
  background-color: #2F2F2F;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(215, 212, 207, 0.25);
  border-bottom: 1px solid rgba(215, 212, 207, 0.25);
  /* Gradient Edge Fade Mask */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-title {
  text-align: center;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 25s linear infinite;
  transition: animation-play-state 0.3s ease;
}

/* Pause ticker animation on hover */
.marquee-track:hover,
.marquee-section:hover .marquee-track {
  animation-play-state: paused !important;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 1.0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
}

.marquee-item:hover {
  transform: scale(1.08) translateY(-2px) !important;
  color: #FFB076 !important;
}

.marquee-item span {
  color: #F36A10 !important;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 4px rgba(243, 106, 16, 0.6));
}

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

/* --- Services Grid --- */
.services-section {
  padding: 7rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px -10px rgba(232, 93, 4, 0.18);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-orange-light);
  color: var(--primary-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.15);
}

.service-card:hover .service-icon {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-orange);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.service-desc {
  color: var(--slate-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.service-features li {
  font-size: 0.9rem;
  color: var(--slate-medium);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.service-features li svg {
  color: var(--primary-orange);
  flex-shrink: 0;
}

/* --- Team Section --- */
.team-section {
  padding: 7rem 0;
  background-color: var(--bg-surface);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  width: calc(33.333% - 1.35rem);
  min-width: 270px;
  max-width: 330px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-orange);
}

.team-img-wrapper {
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 106, 16, 0.04) 0%, rgba(241, 240, 237, 0.95) 100%);
  position: relative;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 1rem;
}

.team-img-wrapper img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.04);
}

.team-id-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(47, 47, 47, 0.88);
  color: #FFFFFF;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-darker);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 9:16 Instagram Story / Reel Testimonial Mockup --- */
.story-testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.story-card-wrapper {
  width: 280px;
  flex-shrink: 0;
}

.story-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.story-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(232, 93, 4, 0.25);
  border-color: var(--primary-orange);
}

.story-header-bars {
  display: flex;
  gap: 4px;
  width: 100%;
}

.story-bar {
  height: 3px;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.story-bar.active {
  background: var(--primary-orange);
}

.story-client-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.story-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #FFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid #FFF;
  flex-shrink: 0;
}

.story-play-btn {
  width: 64px;
  height: 64px;
  background: rgba(232, 93, 4, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.6rem;
  margin: auto;
  box-shadow: 0 10px 25px rgba(232, 93, 4, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
  padding-left: 4px;
}

.story-frame:hover .story-play-btn {
  transform: scale(1.15);
  background: var(--primary-orange);
}

.story-overlay-content {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  text-align: left;
}

/* --- Portfolio / Case Studies --- */
.portfolio-section {
  padding: 7rem 0;
}

/* --- Fiverr Authentic Review Component Styles --- */
.fiverr-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E4E5E7;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  flex-wrap: wrap;
  gap: 1rem;
}

.fiverr-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #404145;
}

.fiverr-logo-badge span.green-dot {
  width: 10px;
  height: 10px;
  background-color: #1DBF73;
  border-radius: 50%;
  display: inline-block;
}

.fiverr-score-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #F7F7F7;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid #E4E5E7;
}

.fiverr-exact-card {
  background: #FFFFFF;
  border: 1px solid #E4E5E7;
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-align: left;
}

.fiverr-exact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: #1DBF73;
}

.fiverr-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.fiverr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #404145;
  color: #FFFFFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.fiverr-author-meta {
  display: flex;
  flex-direction: column;
}

.fiverr-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: #222325;
}

.fiverr-country {
  font-size: 0.8rem;
  color: #74767E;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.fiverr-stars-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.fiverr-stars {
  color: #FFB800;
  font-size: 1rem;
  letter-spacing: 1px;
}

.fiverr-val-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: #222325;
}

.fiverr-review-text {
  color: #404145;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.fiverr-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1DBF73;
  background: rgba(29, 191, 115, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-medium);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-orange);
  color: var(--bg-white);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px -10px rgba(232, 93, 4, 0.18);
}

.portfolio-img {
  width: 100%;
  height: 220px;
  background-color: var(--slate-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
}

.portfolio-body {
  padding: 1.75rem;
}

.portfolio-niche {
  color: var(--primary-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.portfolio-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.stat-badge {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--slate-darker);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--slate-muted);
}

/* --- Call to Action Banner (Clean Charcoal #2F2F2F - NO BROWN TINT) --- */
.cta-banner {
  background: #2F2F2F !important;
  color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem auto;
  border: 1px solid rgba(215, 212, 207, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.cta-banner::before {
  display: none !important;
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: var(--slate-light);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- Contact Form --- */
.contact-section {
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.contact-info-box {
  background: var(--slate-darker);
  color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 1px solid var(--border-dark);
}

.contact-info-box h3 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(232, 93, 4, 0.2);
  border: 1px solid rgba(232, 93, 4, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
}

.form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-darker);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-darker);
  background-color: rgba(248, 250, 252, 0.8);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

/* --- Footer --- */
.footer {
  background-color: var(--slate-darker);
  color: var(--slate-light);
  padding: 5.5rem 0 3rem;
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

/* --- Floating Sticky WhatsApp Button (Brand Kit Orange #F36A10) --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background-color: #F36A10 !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(243, 106, 16, 0.5);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 40px rgba(243, 106, 16, 0.7);
  background-color: #D85800 !important;
  color: #FFFFFF !important;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: rgba(243, 106, 16, 0.4);
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* --- FAQ Accordion Component --- */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 25px rgba(232, 93, 4, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--slate-darker);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary-orange);
  color: #FFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--slate-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* --- Infinite Marquee Logo Ticker --- */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-y: 1px solid var(--border-color);
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--slate-medium);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--primary-orange);
}

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

.footer-brand p {
  margin-top: 1rem;
  color: var(--slate-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-heading {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--slate-light);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--slate-muted);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   NEO-BRUTALIST GEN-Z VARIATION STYLES (MATCHING GROWVIA BRAND KIT 2026)
   ========================================================================== */

/* Bouncy scale interaction */
.brutalist-card,
.brutalist-btn,
.glass-card,
.btn {
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.glass-card:hover {
  transform: translateY(-6px) rotate(-0.5deg) scale(1.01) !important;
  box-shadow: 6px 8px 0px #2F2F2F, 0 20px 40px rgba(243, 106, 16, 0.15) !important;
  border: 3px solid #2F2F2F !important;
}

/* Wobble Button Animation on Hover */
@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-4deg) scale(1.03); }
  75% { transform: rotate(4deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1.02); }
}

.btn-primary:hover,
.btn-whatsapp:hover,
.wobble-on-hover:hover {
  animation: wobble 0.45s ease-in-out !important;
  box-shadow: 5px 5px 0px #2F2F2F, 0 16px 32px rgba(243, 106, 16, 0.5) !important;
}

/* Floating Sticker Badge System */
.floating-sticker {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #FFFFFF;
  border: 3px solid #2F2F2F;
  box-shadow: 4px 4px 0px #2F2F2F;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #2F2F2F;
  animation: float-sticker 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-sticker {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* Slanted Marquee Ticker */
.slanted-marquee {
  transform: rotate(-1.2deg);
  margin: 3.5rem -2rem;
  box-shadow: 0 10px 30px rgba(47, 47, 47, 0.15);
  border-top: 3px solid #2F2F2F;
  border-bottom: 3px solid #2F2F2F;
}

/* Brutalist Phone / App Preview Frame */
.brutalist-phone-frame {
  border: 4px solid #2F2F2F;
  border-radius: 2rem;
  box-shadow: 8px 10px 0px #2F2F2F;
  background: #2F2F2F;
  overflow: hidden;
  position: relative;
}

/* Bento Grid Spacing */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-col-7 { grid-column: span 7; }
.bento-col-5 { grid-column: span 5; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .bento-col-7, .bento-col-5, .bento-col-12 {
    grid-column: span 12;
  }
}

/* Brutalist Accordion FAQ */
.brutalist-faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.brutalist-faq-item {
  background: #FFFFFF;
  border: 3px solid #2F2F2F;
  box-shadow: 6px 6px 0px #2F2F2F;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brutalist-faq-item:hover {
  transform: translateY(-2px) rotate(-0.3deg);
}

.brutalist-faq-summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #2F2F2F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: #FFFFFF;
  transition: background 0.2s ease;
}

.brutalist-faq-item[open] .brutalist-faq-summary {
  background: #FFF3EB;
  border-bottom: 3px solid #2F2F2F;
}

.brutalist-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F36A10;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 2px 2px 0px #2F2F2F;
}

.brutalist-faq-item[open] .brutalist-faq-icon {
  transform: rotate(45deg);
  background: #2F2F2F;
}

.brutalist-faq-answer {
  padding: 1.25rem 1.5rem;
  color: #2F2F2F;
  font-size: 0.95rem;
  line-height: 1.6;
  background: #FFFFFF;
}

/* --- Editorial Report Deck: Migrating Colour Band, Nine-Layout System --- */
.editorial-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.editorial-header {
  margin-bottom: 4rem;
  border-bottom: 3px solid #2F2F2F;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #2F2F2F;
  line-height: 1.1;
}

.editorial-badge {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: #F36A10;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .editorial-grid-9 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .editorial-grid-9 {
    grid-template-columns: 1fr;
  }
}

/* Base Editorial Card */
.editorial-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D7D4CF;
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  min-height: 280px;
}

/* Migrating Colour Band Pseudo Elements */
.editorial-card::before {
  content: '';
  position: absolute;
  background: #F36A10;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

/* 9 Layout Variants with Distinct Migrating Colour Bands */
/* Layout 1: Top Accent Band */
.editorial-card.band-top::before {
  top: 0; left: 0; right: 0; height: 6px;
}
.editorial-card.band-top:hover::before {
  height: 12px;
}

/* Layout 2: Left Accent Band */
.editorial-card.band-left::before {
  top: 0; left: 0; bottom: 0; width: 6px;
}
.editorial-card.band-left:hover::before {
  width: 12px;
}

/* Layout 3: Right Accent Band */
.editorial-card.band-right::before {
  top: 0; right: 0; bottom: 0; width: 6px;
}
.editorial-card.band-right:hover::before {
  width: 12px;
}

/* Layout 4: Bottom Accent Band */
.editorial-card.band-bottom::before {
  bottom: 0; left: 0; right: 0; height: 6px;
}
.editorial-card.band-bottom:hover::before {
  height: 12px;
}

/* Layout 5: Migrating Corner Band (Top to Right) */
.editorial-card.band-corner-tr::before {
  top: 0; right: 0; width: 50%; height: 6px;
}
.editorial-card.band-corner-tr:hover::before {
  width: 100%;
}

/* Layout 6: Migrating Corner Band (Left to Bottom) */
.editorial-card.band-corner-bl::before {
  bottom: 0; left: 0; width: 6px; height: 50%;
}
.editorial-card.band-corner-bl:hover::before {
  height: 100%;
}

/* Layout 7: Split Edge Band */
.editorial-card.band-split::before {
  top: 0; left: 20%; right: 20%; height: 5px;
}
.editorial-card.band-split:hover::before {
  left: 0; right: 0;
}

/* Layout 8: Vertical Accent Pillar */
.editorial-card.band-pillar::before {
  top: 15%; bottom: 15%; left: 0; width: 6px; border-radius: 0 4px 4px 0;
}
.editorial-card.band-pillar:hover::before {
  top: 0; bottom: 0; width: 8px;
}

/* Layout 9: Full Surround Lightbeam Band */
.editorial-card.band-full {
  border-color: #F36A10;
  box-shadow: inset 0 0 0 1px #F36A10, 0 12px 30px rgba(243, 106, 16, 0.15);
}
.editorial-card.band-full::before {
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid #F36A10;
  border-radius: 16px;
  background: transparent;
}
.editorial-card.band-full:hover::before {
  box-shadow: inset 0 0 20px rgba(243, 106, 16, 0.2);
}

.editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(47, 47, 47, 0.12);
  border-color: #F36A10;
}

.editorial-num {
  font-family: var(--font-accent);
  font-size: 2.75rem;
  color: #2F2F2F;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.editorial-num span {
  font-size: 1.25rem;
  color: #F36A10;
}

.editorial-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #2F2F2F;
  margin-bottom: 0.65rem;
}

.editorial-card-desc {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.footer-contact-link {
  color: var(--slate-light) !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.footer-contact-link:hover {
  color: #F36A10 !important;
  text-decoration: underline !important;
}

/* --- 4:5 Rotational Instagram Feed (@growvia.me) --- */
.instagram-section {
  padding: 4rem 0 3.5rem;
  background: #FFFFFF !important;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-title-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instagram-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.25);
  flex-shrink: 0;
}

.instagram-handle-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #2F2F2F !important;
  line-height: 1.2;
}

.instagram-handle-title span {
  color: #F36A10 !important;
}

.instagram-handle-subtitle {
  color: #666666 !important;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* Rotational Infinite Slider Track */
.insta-rotational-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  padding: 1rem 0;
}

.insta-rotational-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: insta-rotate-left 35s linear infinite;
  will-change: transform;
}

.insta-rotational-track:hover {
  animation-play-state: paused;
}

@keyframes insta-rotate-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-310px * 6 - 1.5rem * 6));
  }
}

/* 4:5 Aspect Ratio Post Card */
.insta-4x5-card {
  width: 310px;
  height: 387.5px; /* Strict 4:5 aspect ratio (310 x 387.5) */
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: #2F2F2F;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  text-decoration: none !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: block;
}

.insta-4x5-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(243, 106, 16, 0.25);
  border-color: #F36A10;
}

.insta-4x5-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-4x5-card:hover img {
  transform: scale(1.08);
}

.insta-4x5-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.insta-4x5-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
}

.insta-4x5-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #F36A10;
  object-fit: cover;
}

.insta-4x5-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 3;
  transition: background 0.3s ease;
}

.insta-4x5-caption {
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-4x5-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #F36A10;
  font-weight: 800;
  font-size: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.insta-4x5-tag {
  background: rgba(243, 106, 16, 0.2);
  color: #F36A10;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-instagram-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.45);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #3A3A3A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-card:hover img {
  transform: scale(1.08);
}

.insta-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
}

.insta-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.insta-caption-snippet {
  color: #D7D4CF;
  font-size: 0.78rem;
  margin-top: 0.6rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   2026 COMPLETE MOBILE RESPONSIVE OPTIMIZATION SUITE (ALL SCREENS & MENUS)
   ========================================================================== */

html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  /* Header & Navigation Bar Alignment */
  .header {
    padding: 0.65rem 0 !important;
    background: #2F2F2F !important;
  }

  .header-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .logo-brand img {
    height: 44px !important;
    width: auto !important;
  }

  .nav-desktop {
    display: none !important;
  }

  .mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: var(--radius-md) !important;
    color: #FFFFFF !important;
    cursor: pointer !important;
  }

  /* Mobile Drawer Menu System */
  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 88vw !important;
    max-width: 380px !important;
    height: 100vh !important;
    background: #2F2F2F !important;
    z-index: 10000 !important;
    padding: 2rem 1.5rem !important;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    border-left: 3px solid #F36A10 !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
  }

  .mobile-drawer.active,
  .mobile-drawer.open {
    right: 0 !important;
  }

  .drawer-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    z-index: 9999 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  .drawer-overlay.active,
  .drawer-overlay.open {
    display: block !important;
    opacity: 1 !important;
  }

  .drawer-link {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 0.9rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: block !important;
  }

  .drawer-link:hover, .drawer-link.active {
    color: #F36A10 !important;
    padding-left: 0.5rem !important;
  }

  /* Hero Section Alignment */
  .hero {
    padding: 2.5rem 0 3.5rem !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .btn-hero-group {
    flex-direction: column !important;
    width: 100% !important;
  }

  .btn-hero-group .btn {
    width: 100% !important;
    text-align: center !important;
  }

  /* Calculator Mobile Responsiveness */
  .growth-calculator {
    padding: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .calc-select, .calc-slider {
    width: 100% !important;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }

  .hero-stat-item {
    padding: 0.75rem 0.25rem !important;
  }

  .hero-stat-num {
    font-size: 1.5rem !important;
  }

  .hero-stat-label {
    font-size: 0.65rem !important;
  }

  /* Editorial 9-Pillar Grid Alignment */
  .editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .editorial-card {
    padding: 1.5rem !important;
  }

  /* Services & Portfolio Grid Mobile Alignment */
  .services-grid, .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Modal Popup Mobile Optimization */
  .modal-container {
    padding: 1.25rem !important;
    max-height: 90vh !important;
    width: 94vw !important;
  }

  .modal-body-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .modal-title {
    font-size: 1.35rem !important;
  }

  /* 4:5 Rotational Instagram Feed Mobile Slider */
  .instagram-section {
    padding: 2.5rem 0 2rem !important;
  }

  .instagram-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .instagram-handle-title {
    font-size: 1.4rem !important;
  }

  .insta-4x5-card {
    width: 230px !important;
    height: 287.5px !important;
  }

  @keyframes insta-rotate-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-230px * 6 - 1.5rem * 6)); }
  }

  /* Footer & Floating WhatsApp Alignment */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
  }

  .floating-whatsapp-btn {
    bottom: 1.25rem !important;
    right: 1rem !important;
    padding: 0.65rem 1.1rem !important;
    font-size: 0.85rem !important;
  }
}
