/* Brain.fm-inspired design for SproutMedia */

/* Root Variables - Dark theme inspired by Brain.fm */
:root {
    --bg-dark: #0D0C11;
    --bg-darker: #080709;
    --bg-card: #1a1922;
    --bg-card-hover: #252331;
    
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-green: #10B981;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    
    --blur-gradient-1: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.4) 0%, transparent 50%);
    --blur-gradient-2: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    --blur-gradient-3: radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    
    --max-width: 1280px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.7);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        var(--blur-gradient-1),
        var(--blur-gradient-2),
        var(--blur-gradient-3);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

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

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

/* Animated gradient text */
.gradient-text {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #667eea 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navigation - Dark theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 12, 17, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 12, 17, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 26px;
    font-weight: 800;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}

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

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-green);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Social Proof Bar */
.social-proof {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(13, 12, 17, 0.6);
    overflow: hidden;
}

.proof-track {
    display: flex;
    gap: 60px;
    min-width: 200%;
    padding: 12px 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.proof-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

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

/* Hide hamburger by default, show on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section - Brain.fm style */
.hero {
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 560px;
    margin: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title span {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 100%;
}

/* Hero CTA Buttons - Brain.fm style */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.badge-item i {
    color: var(--accent-green);
    font-size: 20px;
}

.hero-highlights {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-highlights i {
    color: var(--accent-green);
    margin-top: 3px;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-media-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-2xl);
    max-width: 540px;
}

.hero-media-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-media-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(13, 12, 17, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.hero-media-card p {
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-media-card span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

/* Service Cards - Brain.fm style */
.services {
    padding: 100px 0;
    position: relative;
}

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

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 25, 34, 0.9) 0%, rgba(37, 35, 49, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Gradient backgrounds for each service card */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(245, 87, 108, 0.15) 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(252, 165, 165, 0.15) 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(196, 181, 253, 0.15) 100%);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
}

/* Decorative shape overlays */
.service-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    opacity: 0.08;
    pointer-events: none;
    transition: var(--transition);
}

.service-card:nth-child(1)::after {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(240, 147, 251, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(3)::after {
    background: radial-gradient(circle, rgba(79, 172, 254, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(4)::after {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(5)::after {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(6)::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(16, 185, 129, 0.3);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 2;
}

/* Update icon backgrounds to match card gradients */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.8) 0%, rgba(0, 242, 254, 0.8) 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.8) 0%, rgba(252, 165, 165, 0.8) 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(196, 181, 253, 0.8) 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8) 0%, rgba(52, 211, 153, 0.8) 100%);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    font-size: 18px;
}

.service-link {
    color: var(--accent-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-link:hover {
    gap: 12px;
}

/* Feature Sections - Alternating layout like Brain.fm */
.feature-section {
    padding: 100px 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent-green);
    font-size: 20px;
    margin-top: 2px;
}

.about-highlights {
    margin-top: 40px;
}

.about-highlights__title {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.feature-icon-display i {
    font-size: 160px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(236, 72, 153, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-figure {
    margin: 0;
    width: 100%;
}

.feature-figure figcaption {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.process {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
    background: linear-gradient(145deg, rgba(26, 25, 34, 0.92) 0%, rgba(37, 35, 49, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 36px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.45);
}

.process-step h3 {
    margin-bottom: 16px;
}

.process-step p {
    color: var(--text-secondary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.results {
    padding: 110px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: center;
}

.results-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 20px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 999px;
}

.results-metrics {
    list-style: none;
    margin: 32px 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.results-metrics li {
    color: var(--text-secondary);
    font-size: 1rem;
}

.results-metrics strong {
    color: #fff;
}

.results-quote {
    margin: 32px 0 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    border-left: 3px solid rgba(16, 185, 129, 0.45);
    padding-left: 20px;
}

.results-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.results-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.results-media-frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.results-media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-highlight {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(13, 12, 17, 0.85);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    min-width: 120px;
}

.result-highlight span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.result-highlight p {
    margin: 4px 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Results/Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 25, 34, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.faq-item {
    background: rgba(26, 25, 34, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:focus-within,
.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Cards - Brain.fm style */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(26, 25, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    margin: 40px auto 0;
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-note a {
    color: var(--accent-green);
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 25, 34, 0.3) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    background: rgba(26, 25, 34, 0.6);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 10px;
}

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

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

.btn-consultation {
    width: 100%;
    padding: 18px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.contact-hours {
    margin-top: 40px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-hours__title {
    margin-bottom: 12px;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.contact-hours p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.info-item i {
    color: var(--accent-green);
    font-size: 24px;
    margin-top: 4px;
}

.info-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-secondary);
}

/* Footer */
/* Footer Styles - Comprehensive Design */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.footer-company-info h4 {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-company-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.company-details {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

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

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

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

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-highlights {
        align-items: flex-start;
    }

    .trust-badges {
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-main {
        gap: 35px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    .proof-track {
        animation: none;
        transform: none !important;
    }

    .gradient-text {
        animation: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 12, 17, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-highlights {
        align-items: center;
    }

    .hero-highlights li {
        justify-content: center;
        text-align: left;
    }

    .hero-media {
        justify-content: center;
    }

    .hero-media-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        text-align: center;
    }

    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-grid.reverse {
        direction: ltr;
    }
    
    .pricing-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Hide elements from old design */
.social-proof-bar,
.urgency-banner,
.hero-features,
.problem-solution,
.target-audience,
.warning-section,
.detailed-case-studies {
    display: none;
}
