/* ==========================================================================
   GROWTH HAWK AUSTRALIA - DESIGN SYSTEM & STYLING
   ========================================================================== */

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

/* CSS Variables / Design System Tokens */
:root {
    --bg-color: #05070f;
    --bg-surface: #0a0e1c;
    --bg-card: rgba(13, 22, 47, 0.5);
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 242, 254, 0.4);
    
    --primary: #00f2fe; /* Neon Cyan */
    --primary-rgb: 0, 242, 254;
    --secondary: #7c3aed; /* Vibrant Purple */
    --secondary-rgb: 124, 58, 237;
    --accent: #10b981; /* Emerald Green */
    --accent-rgb: 16, 185, 129;
    --danger: #ef4444;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    
    --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
    --purple-glow: 0 0 25px rgba(124, 58, 237, 0.2);
}

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

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

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

/* Glowing Background Decors */
.gradient-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(124, 58, 237, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.glow-top-left { top: -10%; left: -10%; }
.glow-bottom-right { bottom: 10%; right: -10%; }
.glow-middle { top: 40%; left: 50%; transform: translate(-50%, -50%); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #34d399 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4), var(--glow-shadow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   1. HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 7, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(95deg, var(--primary), var(--secondary));
    transition: width var(--transition-normal);
}

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

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

.nav-cta-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Open Menu Styling */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 11rem 0 7rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.badge-tag i {
    animation: pulse-glow 2s infinite;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sp-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.sp-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
}

.sp-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

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

.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--purple-glow);
    transition: var(--transition-slow);
}

.hero-img-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), var(--glow-shadow);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Metrics overlay */
.metric-overlay {
    position: absolute;
    background: rgba(10, 14, 28, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.mo-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.mo-2 {
    bottom: 12%;
    right: -5%;
    animation-delay: 2s;
}

.mo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.mo-details h5 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.mo-details p {
    font-size: 0.75rem;
    margin-bottom: 0;
}

/* ==========================================================================
   3. CLIENTS LOGO MARQUEE
   ========================================================================== */
.clients-section {
    padding: 3rem 0;
    background: rgba(6, 9, 21, 0.5);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.clients-title {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3.5rem;
    min-width: 100%;
    animation: scroll-left 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* =text style for custom clients */
.marquee-item i {
    font-size: 1.6rem;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 6rem 0;
    position: relative;
}

.section-intro {
    max-width: 650px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-intro p {
    font-size: 1.1rem;
}

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

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: var(--glow-shadow);
    border-color: transparent;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-learn-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.service-learn-more i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-learn-more i {
    transform: translateX(4px);
}

/* ==========================================================================
   5. INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.roi-section {
    padding: 6rem 0;
    position: relative;
}

.roi-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

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

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

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-label-wrapper {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 600;
}

.label-title {
    color: var(--text-primary);
}

.label-value {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Custom Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
    transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-results {
    background: rgba(5, 7, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
}

.result-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.result-card.roi-multiplier .result-value {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   6. PORTFOLIO SHOWCASE
   ========================================================================== */
.portfolio-section {
    padding: 6rem 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

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

.portfolio-item-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-glass);
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(5, 7, 15, 0.95) 0%, rgba(5, 7, 15, 0.3) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.portfolio-item-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.portfolio-tag {
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ==========================================================================
   7. THE HAWK BLUEPRINT TIMELINE
   ========================================================================== */
.blueprint-section {
    padding: 6rem 0;
    background: rgba(6, 9, 21, 0.3);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-container {
    padding: 1.5rem 2.5rem;
    position: relative;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--bg-color);
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 2rem;
    z-index: 1;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-left::after {
    right: -8px;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -8px;
}

.timeline-card {
    padding: 1.5rem 1.75rem;
}

.timeline-step {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   8. PRICING & PACKAGES
   ========================================================================== */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.pricing-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Toggle Switch Styling */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.switch-wrapper {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.switch-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    transition: .4s;
    border: 1px solid var(--border-glass);
}

.slider-toggle::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: .3s;
}

.switch-wrapper input:checked + .slider-toggle {
    background-color: var(--primary);
}

.switch-wrapper input:checked + .slider-toggle::before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.25rem;
}

.pricing-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    padding: 0.4rem;
    border-radius: 50px;
}

.pricing-tab-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pricing-tab-btn.active {
    background: var(--bg-surface);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(124,58,237,0.3);
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pricing-card-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-card-price span {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features-list li i {
    color: var(--accent);
}

.pricing-features-list li.disabled {
    color: var(--text-muted);
}

.pricing-features-list li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================================================
   9. STATS & WHY CHOOSE US
   ========================================================================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 6rem 0;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
    width: 100%;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 3rem;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 242, 254, 0.15);
    margin-bottom: 1.5rem;
}

.testimonial-slide p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.client-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.client-company {
    font-size: 0.85rem;
    color: var(--primary);
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24; /* Amber star */
}

/* Nav buttons for Testimonial */
.test-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.test-nav-btn:hover {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: var(--glow-shadow);
    border-color: transparent;
}

.test-prev-btn { left: -3rem; }
.test-next-btn { right: -3rem; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   11. CONTACT & LEAD GENERATION
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-intro h2 {
    text-align: left;
    margin-bottom: 1.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.cd-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.cd-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cd-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.cd-text p, .cd-text a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.contact-form-panel {
    padding: 3rem;
}

.form-title {
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0,242,254,0.15);
    background: rgba(255, 255, 255, 0.05);
}

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

.contact-form-panel .btn {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--danger);
    color: var(--danger);
    display: block;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.main-footer {
    background: #030409;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.social-link {
    width: 38px;
    height: 38px;
    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);
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-color);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    flex-grow: 1;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form .btn {
    padding: 0.6rem 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-bottom-links a {
    color: var(--text-muted);
}

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

/* ==========================================================================
   13. ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .mo-1 { left: 0%; }
    .mo-2 { right: 0%; }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .timeline::after {
        left: 2rem;
    }
    
    .timeline-container {
        width: 100%;
        text-align: left;
        padding-left: 4rem;
    }
    
    .timeline-container::after {
        left: calc(2rem - 8px);
    }
    
    .timeline-left {
        text-align: left;
    }
    
    .timeline-right {
        left: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 7, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--border-glass);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-cta-btn {
        margin-top: 1rem;
        display: inline-block;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .test-prev-btn { left: -1rem; }
    .test-next-btn { right: -1rem; }
    
    .testimonial-slide {
        padding: 2rem 1rem;
    }
}
