/* 
   Thapar Labs - Premium CSS Design System
   Visual Style: Futuristic, Tech-focused, Glassmorphism, Minimal, Dark Mode
   Design Cues: Stripe, Linear, Vercel, Apple
*/

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

/* Reset and Core Variables */
:root {
    /* Color Palette */
    --bg-primary: hsl(225, 60%, 3%);
    --bg-secondary: hsl(224, 50%, 6%);
    --bg-tertiary: hsl(224, 45%, 10%);
    --bg-card: rgba(8, 15, 30, 0.65);
    
    --accent-electric: hsl(224, 100%, 55%);
    --accent-tech: hsl(195, 100%, 48%);
    --accent-electric-glow: rgba(0, 82, 255, 0.15);
    --accent-tech-glow: rgba(0, 210, 255, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: hsl(215, 20%, 75%);
    --text-muted: hsl(215, 15%, 50%);
    --text-glow: rgba(255, 255, 255, 0.1);
    
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-hover: rgba(0, 82, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-electric);
}

/* Background Ambient Glows */
.ambient-glow-1 {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-2 {
    position: absolute;
    top: 45%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-3 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

/* Grid & Layout System */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

/* Glassmorphic Components */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 8px 32px 0 rgba(0, 82, 255, 0.08), 
                0 0 1px 1px rgba(0, 82, 255, 0.1) inset;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-electric) 0%, #003db3 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5), 0 0 12px var(--accent-tech);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background: rgba(0, 210, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0, 82, 255, 0.1);
    border: 1px solid rgba(0, 82, 255, 0.25);
    color: var(--accent-tech);
    margin-bottom: 1.5rem;
}

.badge-expanding {
    background: rgba(0, 210, 255, 0.07);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--accent-tech);
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* STICKY HEADER & NAVBAR */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar-wrapper.scrolled {
    background: rgba(4, 8, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.nav-brand-text span {
    background: linear-gradient(135deg, var(--accent-electric), var(--accent-tech));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-electric), var(--accent-tech));
    transition: var(--transition-fast);
}

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

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.nav-mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* SECTION 1: HERO SECTION */
.hero-section {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

/* LEFT SIDE: Image Wrapper & Layout */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    padding: 0.75rem;
    background: rgba(4, 8, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    border-color: var(--accent-tech-glow);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 82, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-struggling-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    filter: brightness(0.8) contrast(1.05) saturate(0.85);
    transition: var(--transition-smooth);
    background: var(--bg-tertiary);
}

.hero-image-card:hover .hero-struggling-image {
    filter: brightness(0.9) contrast(1.05) saturate(0.95);
}

.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: status-ping 1.8s infinite ease-in-out;
}

/* RIGHT SIDE: Content & Headline */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT TICKER */
.ticker-container {
    height: 42px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.ticker-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-electric), var(--accent-tech));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.ticker-text.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-text.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* SECTION 2: INTERACTIVE CHALLENGE FINDER */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.challenge-card {
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.challenge-card-icon {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.challenge-card:hover .challenge-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.challenge-card h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
}

.challenge-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.challenge-card-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-tech);
    margin-top: auto;
    transition: var(--transition-fast);
}

.challenge-card:hover .challenge-card-arrow {
    gap: 12px;
    color: var(--text-primary);
}

/* Challenge Modal Glassmorphism */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content-container {
    width: 100%;
    max-width: 600px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.modal-overlay.active .modal-content-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.modal-header-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--accent-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-problem-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.modal-list li svg {
    color: var(--accent-tech);
    flex-shrink: 0;
}

.modal-benefits-list li svg {
    color: #27c93f;
}

.modal-footer-cta {
    display: flex;
    justify-content: flex-end;
}

/* SECTION 3: THE DIGITAL GAP */
.gap-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent-electric), var(--accent-tech));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Growth Journey Visual */
.journey-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.journey-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.journey-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    position: relative;
    z-index: 2;
}

.journey-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(8, 15, 30, 0.8);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.journey-step:hover .journey-step-circle {
    border-color: var(--accent-tech);
    background: var(--bg-tertiary);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.25), inset 0 0 10px rgba(0, 210, 255, 0.2);
    transform: translateY(-5px);
}

.journey-step-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.journey-step:hover .journey-step-label {
    color: var(--accent-tech);
}

.journey-connector-svg {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 1;
    pointer-events: none;
}

.journey-path {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2;
    fill: none;
}

.journey-path-fill {
    stroke: var(--accent-electric);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 10 10;
    animation: journey-flow-anim 15s linear infinite;
}

/* SECTION 4: SOLUTIONS WE CREATE */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.solution-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.solution-info h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 82, 255, 0.06);
    border: 1px solid rgba(0, 82, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-tech);
}

.solution-card:hover .solution-icon {
    background: var(--accent-electric);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
    transform: scale(1.05);
}

.solution-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.solution-features-list li svg {
    color: var(--accent-tech);
}

/* SECTION 5: OUR PROCESS */
.timeline-outer {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-track {
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-progress {
    position: absolute;
    left: 40px;
    top: 20px;
    width: 2px;
    height: 0%;
    background: linear-gradient(180deg, var(--accent-electric), var(--accent-tech));
    transition: height 0.3s ease-out;
}

.timeline-steps-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
}

.timeline-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-left: 19px;
    transition: var(--transition-smooth);
}

.timeline-item.active .timeline-node {
    border-color: var(--accent-tech);
    background: var(--bg-tertiary);
    color: var(--accent-tech);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
    transform: scale(1.1);
}

.timeline-item.completed .timeline-node {
    border-color: var(--accent-electric);
    background: var(--accent-electric-glow);
    color: var(--accent-electric);
}

.timeline-content {
    margin-left: 1.5rem;
}

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

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.timeline-item.active .timeline-content h3 {
    color: var(--text-primary);
}

.timeline-step-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.timeline-item.active .timeline-step-tag {
    color: var(--accent-tech);
}

.timeline-body-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.timeline-item.active .timeline-body-details {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.75rem;
}

.timeline-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.timeline-deliverables {
    font-size: 0.85rem;
    color: var(--accent-tech);
    font-weight: 600;
}

/* SECTION: INDUSTRIES WE EMPOWER */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-emoji {
    font-size: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-emoji {
    background: rgba(0, 82, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
}

.industry-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.industry-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 3rem;
}

.industry-card-wide .industry-header {
    justify-content: center;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
}

/* SECTION 7: WHY THAPAR LABS */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-tech);
}

.why-card:hover .why-icon-container {
    background: var(--accent-electric);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* SECTION 8: FOUNDING CLIENT PROGRAM */
.founding-section {
    position: relative;
    z-index: 2;
}

.founding-panel {
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.8) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid rgba(0, 82, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(0, 82, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.founding-panel::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.founding-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.founding-spots-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.founding-spots-tag span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: status-ping 1.5s infinite ease-in-out;
}

.founding-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 40%, var(--accent-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founding-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.founding-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founding-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.founding-checklist li svg {
    color: var(--accent-tech);
    flex-shrink: 0;
}

.founding-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* spots circular tracker visual */
.spots-tracker {
    width: 220px;
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spots-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.spots-bg-circle {
    fill: none;
    stroke: rgba(255,255,255,0.03);
    stroke-width: 8;
}

.spots-fill-circle {
    fill: none;
    stroke: linear-gradient(to right, var(--accent-electric), var(--accent-tech));
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 628;
    stroke-dashoffset: 251.2; /* (20-12)/20 = 40% filled, so 60% offset = 376.8 */
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.spots-text-overlay {
    text-align: center;
    position: relative;
    z-index: 2;
}

.spots-count {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
}

.spots-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.spots-alert-text {
    font-size: 0.9rem;
    color: var(--accent-tech);
    margin-top: 2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

/* SECTION 9: THE FUTURE OF THAPAR LABS */
.roadmap-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.roadmap-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.roadmap-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roadmap-card {
    position: relative;
    z-index: 2;
}

.roadmap-phase-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-tech);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.roadmap-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.roadmap-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.roadmap-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.roadmap-features li svg {
    color: var(--accent-tech);
    flex-shrink: 0;
}

.roadmap-icon-node {
    position: absolute;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 5;
    transition: var(--transition-smooth);
}

.roadmap-column-left .roadmap-icon-node {
    right: -2.7rem;
}

.roadmap-column-right .roadmap-icon-node {
    left: -2.7rem;
}

.roadmap-card:hover .roadmap-icon-node {
    background: var(--accent-tech);
    border-color: var(--accent-tech);
    box-shadow: 0 0 10px var(--accent-tech);
}

/* SECTION: BUSINESS GROWTH CORNER */
.growth-corner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.growth-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.growth-card-icon {
    font-size: 2.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.growth-card:hover .growth-card-icon {
    background: var(--accent-electric-glow);
    border-color: var(--border-glass-hover);
    transform: scale(1.05);
}

.growth-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.growth-card-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* EXPANDABLE SECTION */
.growth-card-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    width: 100%;
}

.growth-card.expanded .growth-card-expandable {
    opacity: 1;
}

.expandable-inner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.growth-card-full {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* READ MORE BUTTON */
.btn-read-more {
    background: transparent;
    border: none;
    color: var(--accent-tech);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-top: auto;
    transition: var(--transition-fast);
}

.btn-read-more:hover {
    color: var(--text-primary);
}

.btn-read-more svg.chevron-icon {
    transition: transform 0.3s ease;
}

.growth-card.expanded .btn-read-more svg.chevron-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .growth-corner-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION: DIGITAL PRESENCE ASSESSMENT */
.assessment-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
}

/* PROGRESS BAR */
.assessment-progress-wrapper {
    margin-bottom: 3rem;
}

.assessment-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.assessment-step-count {
    color: var(--accent-tech);
}

.assessment-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow: hidden;
}

.assessment-progress-bar {
    height: 100%;
    width: 16.66%;
    background: linear-gradient(90deg, var(--accent-electric), var(--accent-tech));
    border-radius: 99px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

/* STEPS VIEW TRANSITIONS */
.assessment-step-view {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.assessment-step-view.active {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.step-question-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-num-badge {
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-tech);
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-question-header h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    line-height: 1.3;
}

/* FORMS LARGE */
.text-input-large {
    font-size: 1.25rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
}

.select-input-large {
    font-size: 1.25rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.25rem;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.input-error-msg {
    color: #f87171;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: none;
    animation: slide-up-lead 0.3s ease;
}

/* CARDS GRID FOR BINARY */
.step-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.selection-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.selection-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.selection-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.selection-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.selection-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glass-hover);
    background: rgba(255,255,255,0.02);
}

.selection-card.selected {
    border-color: var(--accent-tech);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15), inset 0 0 8px rgba(0, 210, 255, 0.1);
}

.selection-card.selected .selection-card-icon {
    transform: scale(1.1);
}

.step-nav-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* LOADER SPIN */
.assessment-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--accent-tech);
    border-radius: 50%;
}

@keyframes spin-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-spinner {
    animation: spin-loader 1s infinite linear;
}

.loader-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* RESULTS SECTION */
.assessment-results-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: slide-up-lead 0.5s ease-out forwards;
}

.results-layout-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.results-score-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.results-score-circle-container {
    width: 200px;
    height: 200px;
    position: relative;
}

.score-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 10;
}

.score-fill-circle {
    fill: none;
    stroke: url(#blueGrad);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-inner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number-display {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}

.score-display-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.score-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

/* Dynamic badge colors */
.score-badge-red {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.score-badge-orange {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.score-badge-blue {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.score-badge-green {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* SUMMARY DETAILS CARD LIST */
.results-summary-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.results-summary-card {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-glass);
}

.results-summary-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.strengths-card {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.1);
}
.strengths-card h4 { color: #34d399; }

.improvement-card {
    background: rgba(239, 68, 68, 0.02);
    border-color: rgba(239, 68, 68, 0.1);
}
.improvement-card h4 { color: #f87171; }

.opportunities-card {
    background: rgba(0, 210, 255, 0.02);
    border-color: rgba(0, 210, 255, 0.1);
}
.opportunities-card h4 { color: var(--accent-tech); }

.summary-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-list-items li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.summary-list-items li.strength-item { color: hsl(150, 20%, 80%); }
.summary-list-items li.improvement-item { color: hsl(0, 20%, 80%); }
.summary-list-items li.opportunity-item { color: hsl(195, 20%, 80%); }

/* PREMIUM INSIGHT BOX */
.premium-insight-box {
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.8) 0%, rgba(3, 7, 18, 0.95) 100%);
    border: 1px solid rgba(0, 82, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 10px rgba(0, 82, 255, 0.05);
}

.insight-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-tech);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.insight-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* LEAD GENERATION AUDIT FORM */
.results-audit-form-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 1rem;
}

.audit-form-header {
    margin-bottom: 2rem;
}

.audit-form-header h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.audit-form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.audit-leads-form .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.audit-submit-btn {
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
}

.audit-submit-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5), 0 0 12px var(--accent-tech);
}

@media (max-width: 1024px) {
    .results-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .results-score-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .assessment-container {
        padding: 1.5rem;
    }
    .step-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .selection-card {
        padding: 1.5rem;
    }
    .step-question-header h3 {
        font-size: 1.35rem;
    }
    .results-audit-form-wrapper {
        padding: 1.5rem;
    }
    .results-audit-form-wrapper .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .results-audit-form-wrapper .form-row:nth-child(2) {
        margin-top: 1rem;
    }
}

/* SECTION 10: FAQ SECTION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(8, 15, 30, 0.85);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-tech);
    border-color: var(--accent-tech);
    color: #fff;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel-content {
    padding: 0 2rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 11: CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 40%, var(--accent-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-tech);
}

.contact-method-details span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

.contact-method-details a,
.contact-method-details p {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-method-details a:hover {
    color: var(--accent-tech);
}

.contact-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Form Styling */
.contact-form-glass {
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-tech);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

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

/* Form Success State Screen */
.form-success-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    height: 100%;
    min-height: 400px;
}

.success-icon-anim {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(39, 201, 63, 0.08);
    border: 2px solid #27c93f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27c93f;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.success-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 320px;
}



/* SECTION 12: FOOTER */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background: var(--accent-electric);
    color: #fff;
    border-color: var(--accent-electric);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-tech);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-tech);
}

/* SCROLL REVEAL ENGINE CLASSES */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ANIMATIONS & KEYFRAMES */

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 210, 255, 0.2), 
                    inset 0 0 1px 1px rgba(0, 210, 255, 0.1);
        opacity: 0.9;
    }
    50% {
        box-shadow: 0 0 18px rgba(0, 210, 255, 0.4), 
                    inset 0 0 1px 1px rgba(0, 210, 255, 0.2);
        opacity: 1;
    }
}

@keyframes status-ping {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.5);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(0, 210, 255, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

@keyframes flow-run {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -40;
    }
}

@keyframes pulse-width {
    0%, 100% { width: 65%; }
    50% { width: 85%; }
}

@keyframes slide-up-lead {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chat-bubble-pop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes success-pop {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes journey-flow-anim {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* RESPONSIVE DESIGN - BREAKPOINTS */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: 2;
    }
    
    .hero-content-wrapper {
        order: 1;
        align-items: center;
    }
    
    .ticker-container {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gap-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founding-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .founding-checklist {
        align-items: center;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-grid::after {
        left: 30px;
    }
    
    .roadmap-column-left .roadmap-icon-node,
    .roadmap-column-right .roadmap-icon-node {
        left: 20px;
        right: auto;
    }
    
    .roadmap-card {
        padding-left: 4.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .ticker-text {
        font-size: 1.4rem;
    }
    
    .nav-links, .nav-cta {
        display: none !important; /* Hide desktop links and CTA button on mobile/tablet */
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    

    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-flow {
        flex-direction: column;
        gap: 2.5rem;
        position: relative;
        padding: 1.5rem 0;
    }
    
    .journey-flow::before {
        content: '';
        position: absolute;
        top: 2rem;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: linear-gradient(to bottom, var(--accent-electric) 0%, var(--accent-tech) 100%);
        box-shadow: 0 0 8px rgba(0, 82, 255, 0.4);
        z-index: 1;
    }
    
    .journey-step {
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .journey-step-circle {
        background: #080f1e !important;
        border: 2px solid var(--accent-tech) !important;
        box-shadow: 0 0 15px rgba(0, 210, 255, 0.3) !important;
    }
    
    .journey-step-label {
        color: var(--text-primary) !important;
        font-weight: 700;
        font-size: 1.05rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        margin-top: 0.5rem;
    }
    
    .journey-connector-svg {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-nav-links a.btn {
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
    color: var(--text-primary) !important;
    background: linear-gradient(135deg, var(--accent-electric) 0%, #003db3 100%) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3) !important;
    text-transform: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-nav-links a.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5), 0 0 12px var(--accent-tech) !important;
}

/* ==========================================================================
   SECTION: SMART DIGITAL CARDS (THAPAR LABS V5)
   ========================================================================== */
.smart-cards-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.04) 0%, var(--bg-primary) 80%);
    overflow: hidden;
}

.smart-cards-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 60%, var(--accent-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smart-cards-subheading {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.smart-cards-bullet-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bullet-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.bullet-icon {
    font-size: 1.1rem;
}

/* 3D Interactive Card Scene */
.card-3d-experience-container {
    max-width: 900px;
    margin: 5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.card-scale-wrapper {
    transform-style: preserve-3d;
}

.card-3d-scene {
    width: 440px;
    height: 270px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.smart-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smart-card-float-wrapper {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: card-float 6s ease-in-out infinite;
}

.smart-card-inner.flipped {
    transform: rotateY(180deg);
}

/* Disable floating animation when hovering/tilting so they do not conflict */
.card-3d-scene:hover .smart-card-float-wrapper {
    animation-play-state: paused;
}

/* Card Faces */
.smart-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 24px;
    background: rgba(8, 15, 30, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 1px 1px rgba(255, 255, 255, 0.05) inset,
                0 0 25px rgba(0, 82, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.smart-card-face:hover {
    border-color: rgba(0, 82, 255, 0.4);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 
                0 0 1px 1px rgba(0, 82, 255, 0.2) inset,
                0 0 35px rgba(0, 82, 255, 0.25);
}

/* Back face starts rotated */
.smart-card-back {
    transform: rotateY(180deg);
}

/* Premium Card Ambient Glow Behind */
.card-glow, .card-glow-back {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
    z-index: 0;
}

.card-glow-back {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, rgba(0, 0, 0, 0) 55%);
}

/* FRONT CARD STYLING */
.card-front-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.card-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-logo-img {
    height: 26px;
    width: auto;
}

.card-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.card-logo-text span {
    background: linear-gradient(135deg, var(--accent-electric), var(--accent-tech));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-nfc-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 82, 255, 0.08);
    border: 1px solid rgba(0, 82, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
}

.nfc-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-tech);
}

.nfc-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-tech);
}

.card-front-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.card-profile-info {
    text-align: left;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.card-title {
    font-size: 0.85rem;
    color: var(--accent-tech);
    font-weight: 600;
    margin-bottom: 0;
}

.card-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    max-width: 55%;
}

.contact-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.card-front-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.card-action-buttons {
    display: flex;
    gap: 8px;
}

.card-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.card-action-btn:hover {
    background: var(--accent-electric-glow);
    border-color: rgba(0, 82, 255, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 82, 255, 0.2);
}

.card-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qr-dots-matrix {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3) radial-gradient(rgba(0, 82, 255, 0.15) 1px, transparent 1px);
    background-size: 4px 4px;
    border-radius: 6px;
    position: relative;
}

.qr-finder-pattern {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent-tech);
    background: #000;
    border-radius: 2px;
}

.qr-fp-tl { top: 3px; left: 3px; }
.qr-fp-tr { top: 3px; right: 3px; }
.qr-fp-bl { bottom: 3px; left: 3px; }

.qr-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-tech);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.7;
    animation: pulse-glow 2s infinite ease-in-out;
}

.qr-scan-text {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.card-flip-hint {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    position: absolute;
    bottom: 8px;
    width: calc(100% - 48px);
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* BACK CARD STYLING */
.card-back-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-back-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--accent-tech);
    padding: 3px 8px;
    border-radius: 4px;
}

.card-back-nfc-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.card-back-nfc-indicator svg {
    color: var(--accent-electric);
}

.card-back-body {
    text-align: left;
    margin: 0.5rem 0;
}

.card-back-body h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.card-back-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.card-back-checklist li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.check-icon {
    color: var(--accent-tech);
    font-weight: 700;
}

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

.card-back-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 55%;
    text-align: left;
    line-height: 1.3;
}

.card-back-cta-btn.btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

/* Float Keyframe */
@keyframes card-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ADDITIONAL INFO PANEL: BENEFITS */
.why-smart-cards-panel {
    max-width: var(--max-width);
    margin: 5rem auto 3rem;
    text-align: center;
}

.why-smart-cards-panel .panel-heading {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 40%, var(--accent-electric) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    padding: 2rem;
    background: rgba(8, 15, 30, 0.45);
}

.benefit-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-tech);
}

.benefit-item:hover .benefit-icon-container {
    background: var(--accent-electric);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.3);
}

.benefit-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* DEMO EXPERIENCE TRIGGER */
.demo-experience-trigger {
    text-align: center;
    margin: 3rem 0;
}

.demo-experience-trigger .btn {
    gap: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* SERVICE CTA */
.smart-card-cta-wrapper {
    max-width: var(--max-width);
    margin: 5rem auto 1rem;
}

.smart-card-cta-panel {
    background: linear-gradient(135deg, rgba(8, 15, 30, 0.75) 0%, rgba(3, 7, 18, 0.9) 100%);
    border: 1px solid rgba(0, 82, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
}

.cta-content {
    text-align: left;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--accent-tech) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.btn-cta-whats {
    gap: 8px;
    padding: 1rem 2.2rem;
}

/* ==========================================================================
   MOCKUP SMART DIGITAL PROFILE (BUSINESS HUB OVERLAY)
   ========================================================================== */
.profile-hub-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.profile-hub-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.profile-hub-close-zone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.profile-hub-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.profile-hub-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.phone-mockup-wrapper {
    position: relative;
    z-index: 2;
    transform: scale(0.9) translateY(40px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-hub-overlay.active .phone-mockup-wrapper {
    transform: scale(1) translateY(0);
}

/* Bezelless Smartphone Frame */
.phone-mockup-frame {
    width: 375px;
    height: 800px;
    border: 12px solid #1a2238;
    border-radius: 44px;
    background: #040814;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 35px rgba(0, 82, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    z-index: 100;
}

.phone-camera {
    position: absolute;
    top: 10px;
    left: calc(50% + 40px);
    width: 10px;
    height: 10px;
    background: #081022;
    border-radius: 50%;
    z-index: 100;
}

/* Phone screen space */
.phone-screen-content {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbars Firefox */
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-screen-content::-webkit-scrollbar {
    display: none; /* Hide scrollbars Chrome/Safari */
}

/* Phone Status Bar */
.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 99;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(4, 8, 20, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mock Profile Banner & Avatar */
.profile-banner {
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, #001233 0%, #003db3 50%, #00d2ff 100%);
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-wrapper {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    z-index: 3;
}

.profile-avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 82, 255, 0.6), 0 0 40px rgba(0, 210, 255, 0.3);
    pointer-events: none;
}

.profile-avatar-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #081022;
    border: 3px solid #040814;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0 0 10px rgba(0, 82, 255, 0.5);
}

/* Mock Profile Body Content */
.profile-scrollable-body {
    padding: 60px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

/* Profile Bio Card */
.profile-bio-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.profile-title {
    font-size: 0.85rem;
    color: var(--accent-tech);
    font-weight: 600;
    margin-bottom: 1px;
}

.profile-company {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
}

.profile-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 14px;
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.profile-badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 4px 10px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: status-ping 1.5s infinite ease-in-out;
}

.badge-dot.blue {
    background: var(--accent-tech);
    animation-name: pulse-glow;
}

/* Action Contact Buttons Grid */
.profile-contact-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.profile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.profile-action-btn:hover .btn-icon-wrapper {
    background: rgba(0, 82, 255, 0.1);
    border-color: rgba(0, 82, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.profile-btn-call:hover .btn-icon-wrapper { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #22c55e; }
.profile-btn-whatsapp:hover .btn-icon-wrapper { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.3); color: #25d366; }
.profile-btn-email:hover .btn-icon-wrapper { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: #3b82f6; }
.profile-btn-save:hover .btn-icon-wrapper { background: rgba(0, 210, 255, 0.1); border-color: rgba(0, 210, 255, 0.3); color: var(--accent-tech); }

.btn-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}

.profile-action-btn:hover .btn-label {
    color: var(--text-primary);
}

/* Sections Inside Mock Profile */
.profile-section-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 16px;
    text-align: left;
}

.profile-sec-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Social Tile Grid */
.profile-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.profile-social-tile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.profile-social-tile:hover {
    background: rgba(0, 82, 255, 0.06);
    border-color: rgba(0, 82, 255, 0.2);
    color: #fff;
}

.profile-social-tile svg {
    color: var(--text-muted);
}

.profile-social-tile:hover svg {
    color: var(--accent-tech);
}

.profile-social-tile span {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Services Accordion Mock */
.profile-services-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prof-service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 8px;
}

.prof-service-item:last-child {
    border: none;
    padding-bottom: 0;
}

.prof-service-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
}

.prof-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.prof-service-item.active .prof-chevron {
    transform: rotate(180deg);
}

.prof-service-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.prof-service-item.active .prof-service-panel {
    max-height: 100px;
    opacity: 1;
    margin-top: 4px;
}

.prof-service-panel p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Portfolio swipe showcase */
.profile-portfolio-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.profile-portfolio-slider::-webkit-scrollbar {
    display: none;
}

.prof-port-card {
    flex-shrink: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
}

.prof-port-img-placeholder {
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-glass);
}

.prof-port-img-placeholder span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-tech);
}

.prof-port-details {
    padding: 10px;
}

.prof-port-details h4 {
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 2px;
}

.prof-port-details p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Location card */
.profile-location-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-map-placeholder {
    height: 110px;
    background: radial-gradient(circle, #0c1830 0%, #060c18 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-map-placeholder span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2;
}

.map-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(0, 82, 255, 0.3);
    border-radius: 50%;
    animation: map-pulse-anim 2s infinite ease-in-out;
}

@keyframes map-pulse-anim {
    0% { transform: scale(0.6); opacity: 0.8; }
    50% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(0.6); opacity: 0; }
}

.location-details p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.btn-mini-location.btn {
    padding: 4px 10px;
    font-size: 0.65rem;
    margin-top: 6px;
    border-radius: 4px;
}

/* Calendar Booking Widget */
.calendar-intro {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.3;
}

.booking-calendar-widget {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px;
}

.calendar-days-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.calendar-day-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 8px;
    width: 44px;
    transition: var(--transition-fast);
}

.calendar-day-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day-btn.active {
    background: var(--accent-electric);
}

.day-lbl {
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--text-muted);
}

.calendar-day-btn.active .day-lbl {
    color: rgba(255, 255, 255, 0.8);
}

.date-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.calendar-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 14px;
}

.calendar-slot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 6px 0;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.calendar-slot-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.calendar-slot-btn.active {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--accent-tech);
    color: var(--accent-tech);
}

.btn-booking-confirm.btn {
    width: 100%;
    padding: 8px;
    font-size: 0.75rem;
    border-radius: 6px;
}

/* Home Indicator (iOS Style) */
.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2.5px;
    pointer-events: none;
    z-index: 100;
}

/* ==========================================================================
   RESPONSIVENESS AND MEDIA QUERIES FOR SMART CARDS
   ========================================================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .smart-cards-bullet-points {
        gap: 1rem;
    }
    
    .card-3d-scene {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    
    .smart-card-face {
        padding: 16px;
    }
    
    .card-name {
        font-size: 1.25rem;
    }
    
    .contact-value {
        font-size: 0.72rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .smart-card-cta-panel {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .profile-hub-overlay {
        padding: 0;
    }
    
    .phone-mockup-frame {
        width: 100vw;
        height: 100vh;
        border: none;
        border-radius: 0;
    }
    
    .phone-screen-content {
        border-radius: 0;
    }
    
    .phone-status-bar {
        padding-top: 8px;
    }
    
    .profile-scrollable-body {
        padding-top: 60px;
    }
    
    .profile-hub-close-btn {
        top: 2.5rem;
        right: 1.5rem;
        background: rgba(4, 8, 20, 0.6);
        backdrop-filter: blur(10px);
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    /* --- General Page Sizing & Spacing --- */
    section {
        padding: 55px 0 !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }
    
    .section-header p {
        font-size: 0.92rem !important;
        margin-bottom: 2rem !important;
    }
    
    .badge {
        font-size: 0.68rem !important;
        padding: 4px 10px !important;
    }
    
    .glass-panel {
        padding: 1.25rem !important;
    }

    /* --- Hero Section Mobile Optimization --- */
    .hero-section {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.75rem !important;
        padding: 0 0.25rem;
    }
    
    .ticker-container {
        margin-bottom: 1.5rem !important;
    }
    
    .ticker-text {
        font-size: 1.15rem !important;
    }
    
    .hero-struggling-image {
        height: 280px !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.85rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        padding: 0.85rem 1.5rem !important;
    }

    /* --- Challenges / Interactive Finder --- */
    .challenges-grid {
        gap: 1rem !important;
    }
    
    .challenge-card {
        padding: 1.25rem !important;
        gap: 0.75rem !important;
    }
    
    .challenge-card-icon {
        font-size: 1.8rem !important;
    }
    
    .challenge-card h3 {
        font-size: 1.15rem !important;
    }
    
    .challenge-card p {
        font-size: 0.88rem !important;
    }
    
    /* Challenge Modal */
    .modal-body {
        padding: 1.5rem !important;
    }
    
    .modal-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .modal-header-icon {
        font-size: 2.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .modal-close-btn {
        top: 1rem !important;
        right: 1rem !important;
    }

    /* --- Solutions We Create --- */
    .solutions-grid {
        gap: 1.25rem !important;
    }
    
    .solution-card {
        padding: 1.5rem !important;
        min-height: auto !important;
    }
    
    .solution-info h3 {
        font-size: 1.25rem !important;
    }
    
    .solution-features-list li {
        font-size: 0.88rem !important;
    }

    /* --- Smart Digital Cards Section --- */
    .card-3d-experience-container {
        width: 100% !important;
        overflow: hidden !important;
        margin: 2rem 0 !important;
        padding: 0 1rem !important;
    }

    .card-scale-wrapper {
        display: block !important;
        width: 440px !important;
        flex-shrink: 0 !important;
        transform-style: preserve-3d;
        transform-origin: center center;
        margin: 1.5rem auto;
        
        /* Default scaling fallback for screens under 480px */
        transform: scale(0.85);
        height: 230px;
        
        /* Modern browsers dynamic scale */
        transform: scale(calc(90vw / 440));
        height: calc(270px * (90vw / 440));
    }
    
    .card-3d-scene {
        display: block !important;
        width: 440px !important;
        height: 270px !important;
        max-width: none !important;
        flex-shrink: 0 !important;
    }
    
    .smart-card-cta-panel {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    .smart-card-cta-panel h3 {
        font-size: 1.35rem !important;
    }
    
    .smart-card-cta-panel p {
        font-size: 0.9rem !important;
    }
    
    .btn-cta-whats {
        width: 100% !important;
    }
    
    .smart-cards-bullet-points {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        padding: 0 1rem !important;
    }
    
    .bullet-item {
        font-size: 0.88rem !important;
    }

    /* --- Industries We Empower --- */
    .industries-grid {
        gap: 1.25rem !important;
    }
    
    .industry-card {
        padding: 1.25rem !important;
        min-height: auto !important;
    }
    
    .industry-card h3 {
        font-size: 1.15rem !important;
    }
    
    .industry-desc {
        font-size: 0.88rem !important;
    }
    
    .industry-emoji {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.8rem !important;
    }
    
    .industry-card-wide {
        padding: 1.25rem !important;
    }

    /* --- Founding Client Program --- */
    .founding-panel {
        padding: 1.5rem !important;
    }
    
    .founding-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .founding-text {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .founding-checklist li {
        font-size: 0.9rem !important;
        gap: 8px !important;
    }
    
    .founding-spots-tag {
        margin-bottom: 1rem !important;
    }

    /* --- Digital Presence Assessment --- */
    .assessment-step-view h3 {
        font-size: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .selection-card {
        padding: 1.25rem !important;
    }
    
    .selection-card h4 {
        font-size: 1.1rem !important;
    }
    
    .selection-card p {
        font-size: 0.85rem !important;
    }
    
    .form-control {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .form-group label {
        font-size: 0.85rem !important;
    }
    
    .results-score-circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    .results-score-number {
        font-size: 2rem !important;
    }
    
    .results-score-label {
        font-size: 0.7rem !important;
    }
    
    .results-summary h3 {
        font-size: 1.35rem !important;
    }
    
    .results-summary p {
        font-size: 0.9rem !important;
    }

    /* --- FAQ Section --- */
    .faq-trigger {
        padding: 1.25rem 1.25rem !important;
    }
    
    .faq-panel-content {
        padding: 0 1.25rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .faq-question {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 410px) {
    .card-scale-wrapper {
        /* Fallback for screens around 375px-390px */
        transform: scale(0.78);
        height: 210px;
        
        transform: scale(calc(90vw / 440));
        height: calc(270px * (90vw / 440));
    }
}

@media (max-width: 360px) {
    .card-scale-wrapper {
        /* Fallback for screen width 320px */
        transform: scale(0.68);
        height: 184px;
        
        transform: scale(calc(90vw / 440));
        height: calc(270px * (90vw / 440));
    }
}


.mobile-nav-links a:hover {
    color: var(--accent-tech);
}

/* --- INTEGRATED DIGITAL CATALOGUE SECTION --- */
.catalogue-section {
    background: radial-gradient(circle at 50% 100%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--accent-electric);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.15);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: translateY(-5px) scale(1.04);
}

.pricing-popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--accent-electric) 0%, var(--accent-tech) 100%);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin: 1rem 0 1.5rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-tech);
    flex-shrink: 0;
}

.pricing-parent-feature {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.select-package-btn {
    width: 100%;
    margin-top: auto;
}

/* Founding Offer Banner */
.catalogue-offer-panel {
    background: rgba(0, 82, 255, 0.03);
    border: 1px dashed rgba(0, 82, 255, 0.3);
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    margin-top: 2rem;
}

.catalogue-offer-panel:hover {
    border-color: var(--accent-electric);
    background: rgba(0, 82, 255, 0.05);
}

.offer-banner-tag {
    display: inline-flex;
    background: rgba(0, 82, 255, 0.15);
    border: 1px solid rgba(0, 82, 255, 0.3);
    color: var(--accent-tech);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
}

.catalogue-offer-panel h3 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.offer-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.offer-benefit-item .icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.offer-benefit-item:hover .icon {
    border-color: var(--accent-tech);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-3px);
}

.offer-benefit-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.offer-badge-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
}

.catalogue-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive catalogue */
@media (max-width: 1024px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .offer-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
    .offer-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalogue-offer-panel {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .offer-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- INTEGRATED INDIVIDUAL SERVICES SECTION --- */
.individual-services-section {
    background: radial-gradient(circle at 50% 0%, var(--bg-secondary) 0%, var(--bg-primary) 70%);
    border-top: 1px solid var(--border-glass);
}

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

.individual-services-grid .pricing-card {
    padding: 2.5rem 1.5rem;
}

.pricing-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.4;
    min-height: 48px; /* ensures uniform description heights */
}

/* Services bottom note panel */
.services-note-panel {
    background: rgba(0, 82, 255, 0.02);
    border: 1px solid rgba(0, 82, 255, 0.15);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.services-note-panel:hover {
    border-color: var(--border-glass-hover);
    background: rgba(0, 82, 255, 0.04);
}

.services-note-panel p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.services-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive individual services */
@media (max-width: 1024px) {
    .individual-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .individual-services-grid .pricing-card.popular {
        transform: none;
    }
    
    .individual-services-grid .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 640px) {
    .individual-services-grid {
        grid-template-columns: 1fr;
    }
    .services-note-panel {
        padding: 1.25rem 1.5rem;
    }
}

