/* ========================================
   TRENDIE MEDIA - MAIN STYLESHEET
   ========================================
   Organized by:
   1. CSS Variables
   2. Global Reset & Base Styles
   3. Typography
   4. Buttons
   5. Navigation
   6. Hero Section
   7. Features/Tabs Section
   8. Case Studies/Testimonials
   9. Stats Section
   10. Sections (General)
   11. About Section
   12. Vision Section
   13. Services Section
   14. Process Section
   15. Why Us Section
   16. Footer
   17. Responsive Media Queries
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: rgba(255, 255, 255, 0.02);
    
    --accent-start: #ff6b35;
    --accent-end: #ff8c42;
    --accent-orange: #ff7a00;
    
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-light: rgba(255, 255, 255, 0.4);
    
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(255, 107, 53, 0.3);
    
    --gradient-primary: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    --gradient-purple: linear-gradient(135deg, #ff6b35, #ff9500);
    
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ========================================
   GLOBAL RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
  background: #fff5f0;
  background-image: 
    linear-gradient(rgba(255, 107, 53, 0.12) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.12) 2px, transparent 2px),
    linear-gradient(rgba(255, 140, 66, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 66, 0.08) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  animation: robotGridMove 20s linear infinite;
}

@keyframes robotGridMove {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, -100px -100px, 20px 20px, -20px -20px;
  }
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(255, 107, 53, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 140, 66, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 245, 240, 0.85) 0%, rgba(255, 250, 240, 0.9) 50%, rgba(255, 248, 240, 0.85) 100%);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    animation: robotPulse 8s ease-in-out infinite;
}

@keyframes robotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.01);
  }
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY - CLEAR 3D EFFECT
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a0a2e;
    text-shadow: 
        3px 3px 0px rgba(255, 107, 53, 0.4),
        6px 6px 0px rgba(255, 140, 66, 0.3),
        9px 9px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 107, 53, 0.1);
    letter-spacing: -0.02em;
    transform: perspective(500px) rotateX(2deg);
    transform-style: preserve-3d;
    position: relative;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-shadow: 
        4px 4px 0px rgba(255, 107, 53, 0.5),
        8px 8px 0px rgba(255, 140, 66, 0.4),
        12px 12px 20px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(255, 107, 53, 0.15);
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 
        3px 3px 0px rgba(255, 107, 53, 0.45),
        6px 6px 0px rgba(255, 140, 66, 0.35),
        9px 9px 18px rgba(0, 0, 0, 0.22),
        0 0 25px rgba(255, 107, 53, 0.12);
}

.orange-text {
    color: #ff6b35 !important;
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.4),
        3px 3px 2px rgba(0, 0, 0, 0.3) !important;
}

.orange-text.black-text {
    color: #000000 !important;
    text-shadow: 
        2px 2px 4px rgba(255, 107, 53, 0.5),
        4px 4px 8px rgba(255, 87, 34, 0.4),
        6px 6px 12px rgba(230, 81, 0, 0.3) !important;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-shadow: 
        2px 2px 0px rgba(255, 107, 53, 0.4),
        5px 5px 0px rgba(255, 140, 66, 0.3),
        7px 7px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 107, 53, 0.1);
}

h4 { 
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    text-shadow: 
        2px 2px 0px rgba(255, 107, 53, 0.35),
        4px 4px 0px rgba(255, 140, 66, 0.25),
        6px 6px 12px rgba(0, 0, 0, 0.18),
        0 0 15px rgba(255, 107, 53, 0.08);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.accent {
    color: #ff6b35;
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.4),
        3px 3px 2px rgba(0, 0, 0, 0.3);
}

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

.text-center {
    text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    background: #ffd54f;
    color: #000000;
}

.btn-primary {
    background: #ffd54f;
    color: #000000;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: none;
    border: none;
  }
  

.btn-primary:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: none;
    filter: none;
}

.btn-ghost {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  background: #ffd54f;
  color: #000000;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost:hover {
  background: #ffc107;
    transform: translateY(-2px);
  box-shadow: none;
  filter: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    will-change: background;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px 18px 12px; /* remove vertical padding */
    height: 80px; /* fixed navbar height */
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 180px;
    will-change: transform;
}

.logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
        max-width: 180px;
    }      
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
        max-width: 160px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 8px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

 /* Bigger pill-style Try Now button (drop-in — paste at end of styles.css) */
 .nav .nav-links .btn-try {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  background: #ffd54f;
  color: #000000;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}

.btn-try {
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  background: #ffd54f;
  color: #000000;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
}
 
 /* Hover Effect — smooth and elegant */
.btn-try:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: none;
  filter: none;
}

/* Optional focus ring for accessibility */
.btn-try:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35);
}

/* Dark mode or dark background variation */
.dark .btn-try {
  color: #111;
  background: linear-gradient(135deg, #ffcc33, #ff7a00);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    overflow: hidden;
}

/* Octane-like hero */
.hero-octane{padding-top:60px}
.hero-octane-inner{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:32px;
    align-items:center;
    background:rgba(255,255,255,.15);
    border:2px solid rgba(255, 107, 53, 0.3);
    border-radius:36px;
    padding:36px;
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.3),
        0 0 60px rgba(255, 140, 66, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hero-octane-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 36px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 66, 0.5));
    -webkit-mask: linear-gradient(#9e2929 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        filter: blur(0px);
    }
    50% {
        opacity: 0.9;
        filter: blur(2px);
    }
}
.hero-copy .hero-heading{
    font-size:clamp(2.2rem,5vw,3.6rem);
    line-height:1.05;
    margin:0 0 14px;
    color: #ff6b35;
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.4),
        3px 3px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}
.hero-copy .hero-tag{color:#903131;margin:0 0 18px;font-weight:500}
.hero-actions{display:flex;gap:12px;margin:8px 0 16px}
.hero-trust{font-size:.95rem}
.hero-visual{display:flex;justify-content:center}
.hero-card{
    position:relative;
    background:rgba(15, 19, 32, 0.9);
    border:2px solid rgba(255, 107, 53, 0.4);
    border-radius:24px;
    padding:24px;
    min-height:280px;
    width:100%;
    max-width:460px;
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.4),
        0 0 80px rgba(255, 140, 66, 0.3),
        0 20px 50px rgba(0,0,0,.4),
        inset 0 0 30px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(255, 140, 66, 0.6));
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
    animation: heroCardGlow 3.5s ease-in-out infinite;
}

@keyframes heroCardGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}
.quiz-head{color:#ffd166;font-weight:700;margin-bottom:14px}
.quiz-scale{display:flex;gap:10px}
.quiz-scale span{display:inline-flex;width:36px;height:36px;border-radius:10px;background:rgba(255,255,255,.06);align-items:center;justify-content:center;border:1px solid var(--border-color)}
.quiz-scale .active{background:#ff6b35}
.profile-card{position:absolute;right:-18px;top:-18px;background:#fff;color:#111;border-radius:18px;padding:12px 14px;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.profile-card .profile-name{font-weight:800;margin-bottom:4px}
.profile-card .dot{display:inline-block;width:8px;height:8px;background:#ff6b35;border-radius:50%;margin-right:6px}
.hero-badge-stat{position:absolute;right:-18px;bottom:-18px;background:#ffd166;color:#111;border-radius:22px;padding:16px 18px;font-weight:900;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.hero-badge-stat small{display:block;font-weight:600;font-size:.7rem}

/* Clients strip */
.clients-strip-inner{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
    background:rgba(255,255,255,.25);
    border:2px solid rgba(255, 107, 53, 0.4);
    border-radius:24px;
    padding:20px 24px;
    margin-bottom: 80px;
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.3),
        0 0 80px rgba(255, 140, 66, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.clients-strip-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 66, 0.5));
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    animation: clientsStripGlow 4s ease-in-out infinite;
}

@keyframes clientsStripGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.01);
    }
}

.clients-logos{display:flex;gap:12px;flex-wrap:wrap}
.client-pill{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.2);
    border:1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.client-pill:hover {
    background:rgba(255,255,255,.3);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Increase brand text size only */
.clients-logos .brand {
    font-size: 1.1rem;
    color: #1a0a2e;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  }
  
/* Brand wordmarks */
.brands-row{display:flex;gap:28px;row-gap:14px;flex-wrap:wrap;align-items:center}
.brand{color:#fff;opacity:.9;letter-spacing:.04em;white-space:nowrap}
.brand-loom{font-family:'Cinzel', serif;font-weight:800;letter-spacing:.08em}
.brand-wander{font-family:'Poppins', sans-serif;font-weight:500;text-transform:lowercase;letter-spacing:.06em}
.brand-keser{font-family:'Playfair Display', serif;font-weight:800;letter-spacing:.08em}
.brand-burnout{font-family:'Bebas Neue', sans-serif;font-weight:700;letter-spacing:.12em}
.brand-caffeine{font-family:'Dancing Script', cursive;font-weight:700;letter-spacing:.02em}
.brand-nuve{font-family:'Cormorant Garamond', serif;font-weight:600;letter-spacing:.06em}
.brand-throttlex{font-family:'Oswald', sans-serif;font-weight:700;letter-spacing:.14em;text-transform:uppercase}
.brand-urbanbrew{font-family:'Raleway', sans-serif;font-weight:800;letter-spacing:.08em}
.brand-restiq{font-family:'Inter', sans-serif;font-weight:800;letter-spacing:.12em}
.brand-rideon{font-family:'Montserrat', sans-serif;font-weight:800;letter-spacing:.1em}
.brand-barebloom{font-family:'Libre Baskerville', serif;font-weight:700;letter-spacing:.06em}
.brand-haus{font-family:'Space Grotesk', sans-serif;font-weight:800;letter-spacing:.1em}
.brand-mist{font-family:'Cinzel', serif;font-weight:700;letter-spacing:.12em}
.brand-peakfuel{font-family:'Playfair Display', serif;font-weight:800;letter-spacing:.08em}
.brand-snoozelane{font-family:'Raleway', sans-serif;font-weight:800;letter-spacing:.08em}
.brand-dripkart{font-family:'Dancing Script', cursive;font-weight:700;letter-spacing:.02em}
.brand-drip{font-family:'Dancing Script', serif;font-weight:700;letter-spacing:.02em}
.brand-thrift{font-family:'Dancing Script', serif;font-weight:700;letter-spacing:.02em}

/* === FEATURES SECTION  Build once/ features tab section === */ 


.trendie-tabs {
  padding: 100px 0 60px;
}

.trendie-tabs .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a0a2e;
  line-height: 1.25;
  margin-bottom: 40px;
  text-align: center;
}

/* Card (pad area) */
.trendie-card {
  border-radius: 24px;
  overflow: hidden;
  padding: 50px 40px;
  background: linear-gradient(180deg, #fff8e1 0%, #fff6d3 100%);
  max-width: 1100px;
  margin: 0 auto;
  transition: all 0.6s ease;
  box-shadow: 
    0 0 40px rgba(255, 107, 53, 0.25),
    0 0 80px rgba(255, 140, 66, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 40px rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.2);
  position: relative;
}

.trendie-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(255, 140, 66, 0.4));
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Background states */
.trendie-tabs.active-insights .trendie-card {
  background: linear-gradient(180deg, #fff8e1 0%, #fff2c1 100%);
}
.trendie-tabs.active-conversion .trendie-card {
  background: linear-gradient(180deg, #f5e6ff 0%, #e4d4ff 100%);
}
.trendie-tabs.active-engagement .trendie-card {
  background: linear-gradient(180deg, #ffe3eb 0%, #ffd9e4 100%);
}
.trendie-tabs.active-loyalty .trendie-card {
  background: linear-gradient(180deg, #e0f7fa 0%, #b2ebf2 100%);
}

/* Tabs */
.tab-buttons {
  position: relative;
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.tab-btn.active {
  color: #0b1230;
  font-weight: 700;
}

/* Underline */
.tab-underline {
  position: absolute;
  bottom: -2px;
  height: 3px;
  background: #ffd54f;
  border-radius: 3px;
  width: 0;
  left: 0;
  transition: all 0.35s cubic-bezier(0.25, 1.5, 0.5, 1);
}

/* Tab content */
.tab-content {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  transition: all 0.4s ease;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layout */
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 40px;
}

.tab-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tab-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1230;
}
.tab-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-top: 10px;
  margin-bottom: 5px;
}
.tab-text p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Active underline colors */
.trendie-tabs.active-conversion .tab-underline {
  background: #d1a8ff;
}
.trendie-tabs.active-engagement .tab-underline {
  background: #ffb6c1;
}
.trendie-tabs.active-loyalty .tab-underline {
  background: #4dd0e1;
}

/* Responsive */
@media (max-width: 900px) {
  .tab-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tab-image img {
    margin: 0 auto 20px;
  }
  .trendie-card {
    padding: 30px 20px;
  }
}

  


/* === CASE STUDY SECTION testimonials === */
/* Font import removed - loaded in HTML for better performance */

.case-studies {
    background: #b8c8e8;
    padding: 80px 0; /* reduced from 120px */
  }
  
  .case-studies .section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a0a2e;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .case-study-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px; /* reduced from 50px */
    max-width: 1100px; /* prevents it from stretching too wide */
    margin: 60px auto 0 auto;
    border-radius: 24px;
    padding: 50px 40px;
    background: linear-gradient(180deg, #fff8e1 0%, #fff6d3 100%);
    box-shadow: 
      0 0 40px rgba(255, 107, 53, 0.25),
      0 0 80px rgba(255, 140, 66, 0.15),
      0 20px 60px rgba(0, 0, 0, 0.1),
      inset 0 0 40px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.6s ease;
  }
  
  .case-study-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(255, 140, 66, 0.4));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    animation: cardGlow 4s ease-in-out infinite;
  }
  
  .case-study-tabs {
    flex: 0 0 230px; /* fixed width to control sidebar size */
    display: flex;
    flex-direction: column;
    gap: 10px; /* tighter spacing between tabs */
  }
  
  .case-tab {
    background: none;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 10px 18px; /* reduced padding */
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0b1230;
    font-size: 1.2rem; /* slightly smaller font */
  }
  
  .case-tab.active {
    border-color: #ff7a00; /* Trendie accent */
    color: #020202;
    background: rgba(16, 191, 34, 0.08);
  }
  
  .case-tab:hover {
    border-color: #ff7a00;
  }
  
  .case-study-content {
    flex: 1;
    max-width: 800px; /* keeps content compact */
    position: relative;
  }
  
  .case-item {
    display: none;
    grid-template-columns: 1fr 1fr; /* balanced image to text ratio */
    gap: 40px; /* increased gap for larger images */
    align-items: center;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
  }
  
  .case-item.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
  }
  
  .case-img img {
    width: 100%;
    max-width: 500px; /* increased image size */
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  }
  
  .case-text h3 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0b1230;
  }
  
  .case-text h4 {
    font-size: 1.2rem;
    color: #ff3d00;
    margin-bottom: 12px;
  }
  
  .case-text ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .case-text li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 14px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1a0a2e;
  }
  
  .case-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff7a00;
  }
  
  .quote {
    font-style: italic;
    color: #1a0a2e;
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .author {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a0a2e;
    font-size: 0.95rem;
  }
  
  .case-link {
    display: inline-block;
    background: none;
    color: #000000;
    padding: 0;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
  }
  
  .case-link:hover {
    background: none;
    transform: none;
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .case-study-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      padding: 40px 30px;
    }
  
    .case-study-tabs {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }
  
    .case-item {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .case-img img {
      margin: 0 auto;
      max-width: 400px;
    }
  
    .case-text {
      text-align: center;
    }
  }
  



/* === PERFORMANCE STATS SECTION === */
.stats {
    background: linear-gradient(135deg, #141625, #2e1f37, #4b1f1f);
    padding: 100px 0;
    color: #fff;
    text-align: center;
  }
  
  .stats .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a0a2e;
    text-shadow: 
        3px 3px 0px rgba(255, 107, 53, 0.45),
        6px 6px 0px rgba(255, 140, 66, 0.35),
        9px 9px 18px rgba(0, 0, 0, 0.22),
        0 0 25px rgba(255, 107, 53, 0.12);
    letter-spacing: -0.02em;
    transform: perspective(500px) rotateX(2deg);
    transform-style: preserve-3d;
    position: relative;
  }
  
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
  }
  
  .stat {
    min-width: 200px;
    text-align: center;
  }
  
  .counter {
    font-size: 4rem;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
  }
  
  .percent {
    font-size: 2rem;
    vertical-align: super;
  }
  
  .label {
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
  }
  
  .subtext {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 4px;
  }
  
  /* ✅ Responsive */
  @media (max-width: 768px) {
    .stats-grid {
      gap: 50px;
    }
  
    .counter {
      font-size: 3rem;
    }
  }
  

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 100px;
    content-visibility: auto;
    contain-intrinsic-size: 200px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    position: relative;
}

.section-number {
    display: block;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    font-weight: 600;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 400;
}

/* ========================================
   WHO WE ARE
   ======================================== */
/* === ABOUT / WHO WE ARE === */

.about-trendie {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border-radius: 30px;
    padding: 100px 80px;
    max-width: 1200px;
    margin: 100px auto;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.3),
        0 0 100px rgba(255, 140, 66, 0.2),
        0 25px 70px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 107, 53, 0.25);
    position: relative;
    transition: all 0.3s ease;
}

.about-trendie::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 66, 0.5));
    z-index: -1;
    opacity: 0.6;
    filter: blur(10px);
    animation: aboutGlow 5s ease-in-out infinite;
}

@keyframes aboutGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.01);
    }
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
  }
  
  .about-title {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.25;
    color: #1a0a2e;
    margin-bottom: 24px;
  }
  
  .about-desc {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 600px;
  }
  
  .about-link {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #0b1230;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 2px solid #0b1230;
    transition: all 0.3s ease;
  }
  
  .about-link:hover {
    opacity: 0.7;
  }
  
  .about-quote {
    font-family: Georgia, serif;
    font-style: italic;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .about-author {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
  }
  
  .about-image {
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-trendie {
      padding: 60px 30px;
    }
  
    .about-image img {
      max-width: 300px;
      margin: 20px auto;
    }
  
    .about-title {
      font-size: 2rem;
    }
  }
  
/* ========================================
   VISION
   ======================================== */
/* === Vision Section: Octane-Style with Trendie Branding === */

.vision-block {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Subtle grid overlay */
.vision-block::before {
  display: none;
}

/* Cream inner card */
.vision-container {
  background: #fff5e9;
  border-radius: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  box-shadow: 
      0 0 50px rgba(255, 107, 53, 0.3),
      0 0 100px rgba(255, 140, 66, 0.2),
      0 25px 70px rgba(0, 0, 0, 0.15),
      inset 0 0 50px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.vision-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 66, 0.5));
    z-index: -1;
    opacity: 0.6;
    filter: blur(12px);
    animation: visionGlow 4.5s ease-in-out infinite;
}

@keyframes visionGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.01);
    }
}

.vision-content {
  flex: 1;
  color: #0b1230;
}

.vision-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1a0a2e;
}

.vision-content .accent {
  color: #ff2aa0;
}

.vision-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #1b1b1b;
}

.vision-content .intro {
  font-weight: 600;
  color: #222;
}

.learn-more {
  display: inline-block;
  font-weight: 600;
  color: #0b1230;
  border-bottom: 2px solid #0b1230;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: #ff4d00;
  border-color: #ff4d00;
}

blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.5;
  margin: 10px 0 5px;
}

.author {
  font-weight: 700;
  color: #111;
  margin-top: 5px;
}

.vision-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.vision-image img {
  width: 90%;
  max-width: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff3dc, #ffe5ba);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }

  .vision-content {
    order: 2;
  }

  .vision-image {
    order: 1;
  }

  .vision-image img {
    max-width: 300px;
  }

  .vision-content h2 {
    font-size: 2rem;
  }
}



/* ========================================
   CHATBOT WIDGET
   ======================================== */
.chatbot-launcher{position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#ff6b35,#ff8c42);color:#fff;display:flex;align-items:center;justify-content:center;border:1px solid var(--border-color);box-shadow:0 10px 30px rgba(0,0,0,.35);cursor:pointer;z-index:9999}
.chatbot-launcher:hover{transform:translateY(-2px)}

.chatbot-teaser{position:fixed;right:86px;bottom:28px;max-width:260px;background:#fff;color:#111;border-radius:14px;padding:12px 14px 12px 14px;box-shadow:0 10px 30px rgba(0,0,0,.2);z-index:9999;display:flex;gap:8px;align-items:flex-start}
.chatbot-teaser::after{content:'';position:absolute;right:-8px;bottom:12px;border-width:8px;border-style:solid;border-color:transparent transparent transparent #fff}
.chatbot-teaser .teaser-close{position:absolute;left:-10px;top:-10px;width:22px;height:22px;border-radius:50%;border:none;background:#e5e7eb;color:#111;cursor:pointer;display:flex;align-items:center;justify-content:center;font-weight:700}
.chatbot-teaser .teaser-text{font-size:.95rem;line-height:1.3}
.chatbot-teaser.hide{display:none}

.chatbot-window{position:fixed;right:20px;bottom:88px;width:340px;max-width:calc(100vw - 40px);height:480px;border-radius:16px;background:rgba(10,10,15,.98);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid var(--border-color);box-shadow:0 20px 60px rgba(0,0,0,.45);display:flex;flex-direction:column;overflow:hidden;z-index:9999;transform:translateZ(0)}
.chatbot-hidden{display:none}

.chatbot-header{display:flex;align-items:center;justify-content:space-between;padding:12px 14px;border-bottom:1px solid var(--border-color)}
.chatbot-title{font-weight:700}
.chatbot-actions{display:flex;gap:8px}
.chatbot-icon-btn{background:transparent;border:1px solid var(--border-color);color:var(--text-primary);width:32px;height:32px;border-radius:8px;cursor:pointer}

.chatbot-messages{flex:1;overflow:auto;padding:14px;display:flex;flex-direction:column;gap:10px}
.chatbot-input{display:flex;gap:8px;padding:12px;border-top:1px solid var(--border-color);background:rgba(255,255,255,.02)}
.chatbot-input input{flex:1;border:1px solid var(--border-color);background:transparent;color:#fff;border-radius:10px;padding:10px}
.chatbot-input button{border-radius:10px;padding:10px 14px}

.chat-bubble{max-width:80%;padding:10px 12px;border-radius:12px;line-height:1.4;border:1px solid var(--border-color)}
.chat-bubble.user{align-self:flex-end;background:rgba(255,255,255,.06)}
.chat-bubble.bot{align-self:flex-start;background:rgba(255,255,255,.03)}

@media (max-width: 480px){
  .chatbot-window{right:10px;left:10px;bottom:80px;width:auto}
  .chatbot-launcher{right:10px;bottom:10px}
}

.mission-box h3 {
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.mission-box p {
    font-size: 1.1rem;
}


/* ========================================
   SERVICES
   ======================================== */
/* SERVICES SECTION */
.services-octane {
  background: #b2bdc0;
  padding: 140px 0;
  text-align: center;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem; /* tighter gap to subtitle */
  line-height: 1.2; /* compact heading */
}

.section-title .accent {
  color: #6c47ff;
  
}

.muted {
  color: #777;
  font-size: 1.15rem;
  margin-bottom: 4rem;
  
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  justify-items: center;
}

.service-card {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 
    0 0 30px rgba(255, 107, 53, 0.3),
    0 0 60px rgba(255, 140, 66, 0.2),
    0 6px 20px rgba(0,0,0,0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 66, 0.5));
  z-index: -1;
  opacity: 0.6;
  filter: blur(6px);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 0 50px rgba(255, 107, 53, 0.5),
    0 0 100px rgba(255, 140, 66, 0.4),
    0 12px 30px rgba(0,0,0,0.2),
    inset 0 0 30px rgba(255, 255, 255, 0.15);
}

.service-card:hover::before {
  opacity: 0.9;
  filter: blur(10px);
}

.service-card video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}


/* Overlay content */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

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

.overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
}


/* ========================================
   PROCESS
   ======================================== */

.process {
    padding: 100px 0;
    background: transparent;
    scroll-margin-top: 100px;
}

.clients-section {
    scroll-margin-top: 100px;
    padding: 100px 0;
}

.why-us {
    scroll-margin-top: 100px;
}

.about-trendie {
    scroll-margin-top: 100px;
}

.process-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #000000 !important;
}

.process-inner {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transform: translateZ(0);
    position: relative;
}

.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateX(10px);
}

.step-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    opacity: 0.2;
    z-index: -1;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #000000 !important;
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.step-details li {
    font-size: 0.95rem;
    color: #000000 !important;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-footer {
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 500;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: #000000 !important;
}

@media (max-width: 768px) {
    .process-line {
        left: 50px;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.5rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
    }
    
    .process-inner {
        padding: 40px 24px;
    }
}

/* ========================================
   WHY US
   ======================================== */
/* === WHY US SECTION === */
.why-us {
  background: #fff;
  padding: 100px 0;
}

.why-header {
  margin-bottom: 60px;
}

.why-header .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
}

.why-header .accent {
  color: #ff4d00; /* Trendie orange */
}

.why-header .subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* Layout */
.why-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left image */
.why-image {
  flex: 1;
  min-width: 350px;
  display: flex;
  justify-content: center;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  border: 6px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ff4d00, #ff00aa) border-box;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* Right side boxes */
.why-features {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.15);
}

/* Checkmark Box */
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid #ff4d00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(255, 77, 0, 0.1);
}

.checkmark {
  font-size: 1.2rem;
  color: #ff4d00;
  font-weight: 800;
}

/* Text inside boxes */
.why-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .why-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .why-features {
    width: 100%;
  }

  .why-image img {
    max-width: 420px;
  }

  .why-header .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .why-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .why-icon {
    margin-bottom: 10px;
  }
}

/* ========================================
   CONTACT
   ======================================== */
/* FOOTER - Octane AI Style */
.footer {
  background-color: #0f1a3b; /* deep navy blue */
  color: #f3f3f3;
  padding: 100px 0 40px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Brand */
.footer-brand {
  flex: 1 1 320px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 320px;
}

/* Columns */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 2 1 600px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffd43b;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 40px;
}

/* Social Icons */
.social-icons a {
  color: #d6d6d6;
  font-size: 1.2rem;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd43b;
}

/* Legal */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: #999;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

[data-animate].in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
[data-animate]:nth-child(1) { transition-delay: 0.1s; }
[data-animate]:nth-child(2) { transition-delay: 0.2s; }
[data-animate]:nth-child(3) { transition-delay: 0.3s; }
[data-animate]:nth-child(4) { transition-delay: 0.4s; }
[data-animate]:nth-child(5) { transition-delay: 0.5s; }
[data-animate]:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .who .section-grid {
        gap: 40px;
    }
}

/* Mobile & Tablet Optimizations - Only affects screens < 992px (desktop stays unchanged) */
@media (max-width: 991.98px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        display: none !important;
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    /* Mobile menu items styling */
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    /* Hero section - stack on mobile */
    .hero-octane-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 24px !important;
    }
    
    .hero-visual {
        order: -1; /* Show visual first on mobile */
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-heading {
        font-size: clamp(1.8rem, 5vw, 3rem) !important;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-card {
        max-width: 100%;
    }
    
    /* Stats section - responsive grid */
    .stats-grid {
        gap: 40px !important;
        flex-direction: column;
    }
    
    .stat {
        min-width: 100% !important;
        text-align: center;
    }
    
    /* Tab sections - stack on mobile */
    .tab-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .tab-image {
        margin-bottom: 20px;
        order: -1; /* Show image first on mobile */
    }
    
    /* About section - stack on mobile */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .about-image {
        margin-top: 20px;
        text-align: center;
    }
    
    /* Why Us section - stack on mobile */
    .why-content {
        flex-direction: column !important;
        align-items: center;
        gap: 30px !important;
    }
    
    .why-image {
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    
    .why-features {
        width: 100%;
    }
    
    /* Case study sections - stack on mobile */
    .case-study-wrapper {
        flex-direction: column;
    }
    
    .case-study-tabs {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-bottom: 20px;
    }
    
    .case-item {
        flex-direction: column;
    }
    
    .case-img {
        margin-bottom: 20px;
    }
    
    /* Process section - adjust for mobile */
    .process-grid {
        gap: 30px;
    }
    
    /* Footer - stack on mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact section - stack on mobile */
    .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 40px 20px !important;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* General mobile optimizations */
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        line-height: 1.2;
    }
    
    .container {
        padding: 0 20px !important;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Text adjustments for mobile */
    p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.6;
    }
    
    /* Buttons mobile friendly */
    .btn-try,
    .get-started-pad {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
    
    /* Section padding adjustments */
    .section {
        padding: 60px 0 !important;
    }
    
    /* Clients strip - horizontal scroll on mobile */
    .clients-strip-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .brands-row {
        flex-wrap: nowrap;
        min-width: max-content;
    }
}
    
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .who .section-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
    }
    }

/* "Try Now" button - Gradient pill style */
.btn-try {
    background: linear-gradient(90deg, #FFD600, #FF006E);
    color: #1a1a1a;               /* Dark text like your example */
    padding: 120px 300px;
    border-radius: 150px;          /* Full pill shape */
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
  }
  
  .btn-try:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 110, 0.5);
    filter: brightness(1.1);
  }
  
 
