/* ============================================================
   MAKTRONICS PVT. LTD. — MASTER STYLESHEET
   Color palette derived from the MT logo (sky blue / navy)
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  /* Background */
  --bg-primary: #060e1a;
  --bg-secondary: #0a1628;
  --bg-card: #0d1f3c;
  --bg-elevated: #112240;

  /* Logo-matched blues */
  --accent: #4fc3f7;
  --accent-dark: #1976d2;
  --accent-mid: #29b6f6;
  --accent-light: #81d4fa;
  --accent-pale: #b3e5fc;
  --accent-glow: rgba(79, 195, 247, 0.35);
  --accent-subtle: rgba(79, 195, 247, 0.08);

  /* Complementary */
  --purple: #7c4dff;
  --green: #00e676;
  --orange: #ffab40;

  /* Text */
  --text-primary: #e8edf5;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(79, 195, 247, 0.3);

  /* Shapes */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(79, 195, 247, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(79, 195, 247, 0.2);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Orbitron', sans-serif;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #060e1a 0%, #0a1628 30%, #0d1f3c 60%, #0a1628 100%);
  --gradient-accent: linear-gradient(135deg, #1976d2, #4fc3f7, #81d4fa);
  --gradient-accent-reverse: linear-gradient(135deg, #81d4fa, #4fc3f7, #1976d2);
  --gradient-card: linear-gradient(145deg, rgba(79, 195, 247, 0.08), rgba(25, 118, 210, 0.04));
  --gradient-btn: linear-gradient(135deg, #1976d2, #29b6f6);
  --gradient-btn-hover: linear-gradient(135deg, #29b6f6, #4fc3f7);
  --gradient-text: linear-gradient(135deg, #4fc3f7, #81d4fa, #29b6f6);

  /* Layout */
  --container-max: 1280px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

ul, ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: var(--radius-pill);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   5. ANIMATED BACKGROUND
   ============================================================ */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(79, 195, 247, 0.03) 1px, transparent 0);
  background-size: 60px 60px;
}

.bg-gradient-orbs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-orbs::before,
.bg-gradient-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-gradient-orbs::before {
  width: 600px; height: 600px;
  background: var(--accent-dark);
  top: -200px; right: -200px;
}

.bg-gradient-orbs::after {
  width: 500px; height: 500px;
  background: var(--accent);
  bottom: -150px; left: -150px;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, 80px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(60px, -40px) scale(1.05); }
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(6, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(6, 14, 26, 0.95);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-subtle);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  transition: var(--transition);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(13, 31, 60, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.dropdown-menu a:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(30px);
  padding: 100px 30px 40px;
  transition: var(--transition-slow);
  z-index: 999;
  border-left: 1px solid var(--glass-border);
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  padding-left: 12px;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-btn);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.4);
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 6px 30px rgba(41, 182, 246, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ============================================================
   8. GLASS CARD
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Card icon container */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--gradient-card);
  border: 1px solid rgba(79, 195, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.glass-card:hover .card-icon {
  background: var(--accent-subtle);
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.15);
}

.glass-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.glass-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-hero);
  z-index: 0;
}

/* Animated circuit lines on hero */
.hero-circuits {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.15;
  background-image:
    linear-gradient(var(--accent-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent-dark) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content .section-label {
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating shapes on hero */
.hero-float {
  position: absolute;
  z-index: 1;
  opacity: 0.3;
}

.hero-float-1 {
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  animation: floatSpin 15s linear infinite;
}

.hero-float-2 {
  bottom: 20%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: var(--accent-subtle);
  border-radius: 50%;
  animation: floatUpDown 6s ease-in-out infinite;
}

.hero-float-3 {
  top: 40%;
  right: 5%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(79, 195, 247, 0.1);
  border-radius: 50%;
  animation: floatUpDown 8s ease-in-out infinite reverse;
}

@keyframes floatSpin {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0); }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Page hero (shorter, for sub-pages) */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-circuits {
  opacity: 0.08;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text-muted);
}


/* ============================================================
   11. FEATURE / HIGHLIGHT CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
}

.feature-card .card-icon {
  margin: 0 auto 20px;
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
}

/* ============================================================
   12. PRODUCT CARDS
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: var(--gradient-btn);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.product-img {
  height: 220px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--gradient-btn);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
}

/* Hidden class for filter */
.product-card.hidden {
  display: none;
}

/* ============================================================
   13. PROGRAM CARDS
   ============================================================ */
.program-card {
  padding: 0;
  overflow: hidden;
}

.program-card-header {
  padding: 24px 28px;
  background: var(--gradient-card);
  border-bottom: 1px solid var(--glass-border);
}

.program-card-header .program-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(79, 195, 247, 0.15);
  margin-bottom: 12px;
}

.program-card-body {
  padding: 24px 28px;
}

.program-card-body ul {
  margin-bottom: 20px;
}

.program-card-body li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-card-body li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.7rem;
}

/* ============================================================
   14. GALLERY
   ============================================================ */
.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  filter: brightness(0.7);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   15. TESTIMONIAL CAROUSEL
   ============================================================ */
.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.carousel-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.carousel-slide .quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.8;
}

.carousel-slide .author {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.carousel-slide .role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-arrow.prev { left: -10px; }
.carousel-arrow.next { right: -10px; }

/* ============================================================
   16. TABS (Innovation Lab)
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--accent);
  border-color: var(--glass-border-hover);
}

.tab-btn.active {
  background: var(--gradient-btn);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.4);
}

.tab-panel {
  display: none;
  animation: fadeInUp 0.4s var(--ease);
}

.tab-panel.active {
  display: block;
}

/* ============================================================
   17. PROCESS / STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.4);
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
}

/* ============================================================
   18. PRICING / PACKAGE CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-card-hover);
}

.pricing-header {
  padding: 32px 28px;
  background: var(--gradient-card);
  border-bottom: 1px solid var(--glass-border);
}

.pricing-card.featured .pricing-header {
  background: var(--gradient-btn);
}

.pricing-header h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-header .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
}

.pricing-card.featured .pricing-header .price {
  color: var(--white);
}

.pricing-body {
  padding: 28px;
}

.pricing-body ul {
  margin-bottom: 24px;
}

.pricing-body li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-body li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   19. TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 1;
}

.timeline-content {
  padding: 20px 24px;
}

.timeline-content h4 {
  font-family: var(--font-body);
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
}

.timeline-content p {
  font-size: 0.88rem;
}

/* ============================================================
   20. FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: #ff5252;
  margin-top: 6px;
  display: none;
}

.form-group.error .form-control {
  border-color: #ff5252;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  padding: 16px 20px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius);
  color: var(--green);
  font-weight: 500;
  display: none;
  margin-top: 16px;
}

/* ============================================================
   21. PARTNER LOGOS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-card:hover {
  color: var(--accent);
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-about p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact li span:first-child {
  color: var(--accent);
  min-width: 20px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   23. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   24. ENQUIRY MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 82, 82, 0.15);
  border-color: rgba(255, 82, 82, 0.3);
  color: #ff5252;
}

.modal h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.modal > p {
  margin-bottom: 24px;
}

/* ============================================================
   25. ABOUT PAGE SPECIFICS
   ============================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.founder-section {
  display: flex;
  gap: 50px;
  align-items: center;
}

.founder-image {
  width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--glass-border);
  position: relative;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(6, 14, 26, 0.8));
}

.founder-info h3 {
  font-family: var(--font-body);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.founder-info .founder-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
}

.founder-info p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 28px 16px;
}

.value-card .card-icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
}

/* ============================================================
   26. INNOVATION LAB SPECIFICS
   ============================================================ */
.lab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lab-content .lab-visual {
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid var(--glass-border);
}

.lab-content .lab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-details h3 {
  margin-bottom: 16px;
}

.lab-details p {
  margin-bottom: 16px;
}

.lab-features {
  margin-top: 16px;
}

.lab-features li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lab-features li::before {
  content: '◆';
  color: var(--accent);
  font-size: 0.6rem;
}

/* ============================================================
   27. MARKETPLACE SPECIFICS
   ============================================================ */
.marketplace-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  text-align: center;
  padding: 28px 12px;
  cursor: pointer;
}

.category-card .card-icon {
  margin: 0 auto 12px;
  width: 56px;
  height: 56px;
}

.category-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
}

/* ============================================================
   28. PARLIAMENT SPECIFICS
   ============================================================ */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dept-card {
  text-align: center;
  padding: 36px 24px;
}

.dept-card .card-icon {
  margin: 0 auto 20px;
  width: 68px;
  height: 68px;
  font-size: 1.6rem;
}

.org-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.org-card {
  padding: 24px 16px;
  text-align: center;
}

.org-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
}

.org-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.org-card p {
  font-size: 0.82rem;
}

/* ============================================================
   29. EARNSTACK SPECIFICS
   ============================================================ */
.earn-opportunities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.earn-card {
  text-align: center;
  padding: 36px 20px;
}

.earn-card .card-icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.portfolio-mockup {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  min-height: 200px;
}

.mockup-sidebar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mockup-sidebar .bar {
  height: 8px;
  background: var(--accent-subtle);
  border-radius: 4px;
  margin-bottom: 12px;
}

.mockup-sidebar .bar:nth-child(2) { width: 80%; }
.mockup-sidebar .bar:nth-child(3) { width: 60%; }
.mockup-sidebar .bar:nth-child(4) { width: 90%; }

.mockup-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 16px;
  height: 90px;
}

.mockup-card .bar {
  height: 6px;
  background: var(--accent-subtle);
  border-radius: 3px;
  margin-bottom: 8px;
}

.mockup-card .bar:first-child { width: 70%; background: rgba(79, 195, 247, 0.2); }
.mockup-card .bar:last-child { width: 50%; }

/* ============================================================
   30. CONTACT SPECIFICS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-card {
  padding: 24px;
  text-align: center;
}

.contact-card .card-icon {
  margin: 0 auto 12px;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.2);
}

/* ============================================================
   31. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   32. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(79, 195, 247, 0.2); }
  50% { box-shadow: 0 0 40px rgba(79, 195, 247, 0.4); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s var(--ease) forwards; }
.animate-fadeIn { animation: fadeIn 0.6s var(--ease) forwards; }

/* ============================================================
   33. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.15), rgba(79, 195, 247, 0.08));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ============================================================
   34. RESPONSIVE DESIGN
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .marketplace-categories { grid-template-columns: repeat(3, 1fr); }
  .earn-opportunities { grid-template-columns: repeat(2, 1fr); }
  .org-chart { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3; }
}

/* Tablet */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }

  .hero-content { max-width: 100%; }
  .hero-float { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .about-content { grid-template-columns: 1fr; }
  .lab-content { grid-template-columns: 1fr; }
  .founder-section { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline::before { left: 30px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-right: 0;
    padding-left: 70px;
    text-align: left;
  }
  .timeline-dot { left: 30px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
  .marketplace-categories { grid-template-columns: repeat(2, 1fr); }
  .earn-opportunities { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .founder-image { width: 200px; height: 260px; }

  .carousel-arrow { display: none; }

  .tabs-nav { gap: 6px; }
  .tab-btn { padding: 10px 18px; font-size: 0.82rem; }

  .modal { padding: 28px 20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .container { padding: 0 16px; }
  .hero { min-height: 90vh; }
  .page-hero { padding: calc(var(--nav-height) + 40px) 0 40px; }

  .glass-card { padding: 24px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .partners-grid { grid-template-columns: 1fr; }

  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 20px; right: 20px; }
}
