/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
}

.gold-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 20%, #ffed4a 50%, #ffd700 80%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

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

.logo-symbol svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
    transition: all 0.2s ease;
}

.logo:hover .logo-symbol {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.logo:hover .logo-text {
    color: #667eea;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-symbol svg {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        gap: 8px;
    }
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.mobile-cta {
    display: none;
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); }
}

.cta-button.secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 50%, #dce7ff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #667eea;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 0.95;
}

.hero-static {
    display: block;
    color: #1a1a1a;
    margin-bottom: -0.05em;
    font-size: 1em;
}

.hero-typing {
    display: block;
    font-size: 0.65em;
    font-weight: 600;
    line-height: 1.2;
    color: #2d3748;
}

.hero-cycling-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transition: all 0.5s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pain-points {
    display: grid;
    gap: 16px;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.pain-point i {
    color: #ff4757;
    font-size: 18px;
    flex-shrink: 0;
}

.pain-point span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-proof {
    margin-top: 40px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Before/After Section */
.before-after-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 60px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card.bad {
    border-color: #ff4757;
}

.comparison-card.good {
    border-color: #2ed573;
    transform: scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 24px;
}

.comparison-card.bad .card-header i {
    color: #ff4757;
}

.comparison-card.good .card-header i {
    color: #2ed573;
}

.quality-badge {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quality-badge.bad {
    background: #ff4757;
    color: white;
}

.quality-badge.good {
    background: #2ed573;
    color: white;
}

.prompt-example {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.prompt-text {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #666;
}

.output-example {
    margin-bottom: 20px;
}

.output-example h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.output-text {
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.result-stats .stat {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    background: #f8f9fa;
}

.result-stats .stat-number.bad {
    color: #ff4757;
}

.result-stats .stat-number.good {
    color: #2ed573;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.comparison-footer {
    text-align: center;
    margin-top: 60px;
}

.impact-text {
    font-size: 24px;
    color: #2ed573;
    margin-bottom: 30px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    margin-bottom: 40px;
}

.story-text {
    display: grid;
    gap: 24px;
}

/* Features/Offer Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

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

.section-title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.tier-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tier-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.tier-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.tier-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.user-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-info p {
    font-size: 14px;
    color: #666;
}

.rating {
    margin-left: auto;
    color: #ffd700;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

.results {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.result-item {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.trust-item i {
    font-size: 24px;
    color: #667eea;
}

.trust-item span {
    font-weight: 600;
    color: #1a1a1a;
}

.social-proof-footer {
    text-align: center;
    margin-top: 40px;
}

.large-text {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Who It's For Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.demo-section .section-title,
.demo-section .section-subtitle {
    color: white;
}

.demo-section .cta-button.primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.demo-section .cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.audience-container {
    margin-top: 60px;
    text-align: center;
}

.audience-spotlight {
    max-width: 800px;
    margin: 0 auto 60px;
}

.spotlight-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.95;
}

.highlight-word {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
}

.static-text {
    opacity: 0.9;
}

.audience-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.audience-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.audience-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: white;
}

.audience-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hub-icon {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 8px;
    animation: pulse 2s infinite;
}

.center-hub span {
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.orbiting-roles {
    position: relative;
    width: 100%;
    height: 100%;
}

.role-orbit {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: orbit 20s linear infinite;
}

.role-orbit:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.1);
}

.role-orbit i {
    font-size: 24px;
    color: white;
}

.role-orbit.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Position orbiting elements */
.role-orbit:nth-child(1) { 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 0s;
}
.role-orbit:nth-child(2) { 
    top: 15%; 
    right: 15%; 
    animation-delay: -3.33s;
}
.role-orbit:nth-child(3) { 
    top: 50%; 
    right: 0; 
    transform: translateY(-50%);
    animation-delay: -6.66s;
}
.role-orbit:nth-child(4) { 
    bottom: 15%; 
    right: 15%; 
    animation-delay: -10s;
}
.role-orbit:nth-child(5) { 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: -13.33s;
}
.role-orbit:nth-child(6) { 
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    animation-delay: -16.66s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.demo-input, .demo-output {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-input h3, .demo-output h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.input-simulator, .output-simulator {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    min-height: 120px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.typing-demo {
    color: #00ff88;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.output-preview {
    color: white;
}

.output-preview .highlight {
    background: rgba(255, 255, 0, 0.3);
    padding: 2px 4px;
    border-radius: 4px;
}

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

.arrow-container {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.arrow-container i {
    font-size: 32px;
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
}

.arrow-container span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.magic-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 80%;
    right: 20%;
    animation-delay: 0.7s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 1.4s;
}

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

.demo-cta {
    text-align: center;
    margin-top: 60px;
}

.demo-results {
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.demo-results i {
    color: #2ed573;
    font-size: 20px;
}

/* Stack Section */
.stack-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stack-section .section-title,
.stack-section .section-subtitle {
    color: white;
}

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

.stack-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stack-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stack-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stack-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: white;
}

.stack-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 100px 0;
    background: white;
}

.urgency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    margin-bottom: 40px;
}

.urgency-text {
    display: grid;
    gap: 24px;
}

.highlight-text {
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 60px;
    animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.special-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Countdown styles removed - using static launch week messaging */

.value-explanation {
    margin: 30px 0;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: center;
}

.value-item {
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 15px;
    line-height: 1.4;
}

.value-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 4px;
}

/* Mobile Responsive Fixes for New Sections */
@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-explanation {
        margin: 20px 0;
        padding: 20px;
    }
    
    /* Methodology Section Mobile */
    .methodology-section {
        padding: 60px 0;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .methodology-number {
        font-size: 36px;
    }
    
    /* Framework Preview Mobile */
    .preview-section {
        padding: 60px 0;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .preview-content {
        padding: 20px;
    }
    
    /* Enhanced Social Proof Mobile */
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-post {
        padding: 20px;
    }
    
    /* ROI Calculator Mobile */
    .roi-section {
        padding: 60px 0;
    }
    
    .roi-scenarios {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .roi-card.featured {
        transform: none;
    }
    
    /* Comparison Table Mobile - Card Layout */
    .comparison-section {
        padding: 60px 0;
    }
    
    /* Table handled by dedicated media queries below */
    

    

}

.risk-reversal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2ed573 0%, #26d0ce 100%);
    color: white;
    border-radius: 50px;
    font-size: 16px;
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-5px); }
    60% { transform: translateX(-50%) translateY(-3px); }
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.savings-badge {
    background: #2ed573;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

.guarantee-section {
    margin: 40px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #2ed573;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge i {
    font-size: 48px;
    color: #2ed573;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.guarantee-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.urgency-footer {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.urgency-footer p {
    margin: 4px 0;
    color: #ff6b6b;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: #666;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.pricing-features {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

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

.feature i {
    color: #667eea;
    font-size: 18px;
    width: 20px;
}

.pricing-button {
    width: 100%;
    padding: 16px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.cta-title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-tagline {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 20px;
    font-style: italic;
}

.cta-section .cta-button.primary {
    background: white;
    color: #667eea;
}

.cta-section .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.tagline {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    font-style: italic;
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

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

.methodology-intro {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

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

.methodology-item {
    text-align: center;
    padding-bottom: 20px;
}

.methodology-number {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 12px;
}

.methodology-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.methodology-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
}

.methodology-proof {
    max-width: 800px;
    margin: 0 auto;
}

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

.proof-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    font-size: 14px;
    font-weight: 500;
}

.proof-badge i {
    color: #667eea;
    font-size: 16px;
}

/* Framework Preview Section */
.preview-section {
    padding: 80px 0;
    background: #fafafa;
}

.preview-container {
    max-width: 800px;
    margin: 0 auto;
}

.preview-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.preview-header {
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.preview-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.preview-content {
    padding: 30px;
}

.preview-subsection h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.preview-fields {
    display: grid;
    gap: 16px;
}

.preview-field {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    font-size: 14px;
    line-height: 1.5;
}

.preview-field strong {
    color: #667eea;
}

.preview-note {
    margin-top: 24px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.preview-note i {
    color: #667eea;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Enhanced Social Proof */
.enhanced-social-proof {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.enterprise-logos {
    text-align: center;
    margin-bottom: 60px;
}

.enterprise-logos h3 {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.client-logo {
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
    color: #999;
    text-align: center;
    font-size: 14px;
}

.linkedin-social-proof h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.social-post {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.post-header i {
    font-size: 16px;
    color: #0077b5;
}

.post-author {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.social-post p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 12px;
}

.post-engagement {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* ROI Calculator Section */
.roi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.roi-section .section-title,
.roi-section .section-subtitle {
    color: white;
}

.roi-calculator {
    margin-top: 50px;
}

.roi-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.roi-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-card.featured {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.roi-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.roi-calculation {
    display: grid;
    gap: 16px;
}

.roi-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.roi-line.total {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 16px;
    margin-top: 8px;
    font-weight: 600;
}

.roi-label {
    font-size: 14px;
}

.roi-value {
    font-weight: 600;
    font-size: 16px;
}

.roi-result {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.roi-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.roi-cta {
    margin-top: 24px;
}

.roi-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background: #fafafa;
}

.comparison-table-container {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Comparison Cards Styles (Global) */
.mobile-comparison-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid transparent;
}

.mobile-comparison-card.highlight {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.mobile-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.mobile-card-header.winner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.mobile-card-content {
    padding: 20px;
}

.mobile-feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-feature-row:last-child {
    border-bottom: none;
}

.mobile-feature-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    flex: 1;
}

.mobile-feature-value {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
    margin-left: 12px;
}

.mobile-feature-value.price {
    font-size: 16px;
}

.mobile-feature-value.high-price {
    color: #dc3545;
}

.mobile-feature-value.low-price {
    color: #28a745;
}

.mobile-feature-value.check {
    color: #28a745;
    font-size: 18px;
}

.mobile-feature-value.x {
    color: #dc3545;
    font-size: 18px;
}

.mobile-feature-value.winner-check {
    color: #667eea;
    font-size: 18px;
}

/* Default: Hide mobile cards */
.comparison-mobile-cards {
    display: none;
}

/* Mobile: Show cards, hide table */
@media (max-width: 768px) {
    .comparison-mobile-cards {
        display: block !important;
        margin-top: 30px;
    }
    
    .comparison-table-container {
        display: none !important;
    }
}

/* Desktop: Show table, hide cards */  
@media (min-width: 769px) {
    .comparison-table-container {
        display: block !important;
    }
    
    .comparison-mobile-cards {
        display: none !important;
    }
}



.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.feature-col {
    text-align: left !important;
    min-width: 200px;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
}

.competitor-price {
    color: #dc3545;
    font-weight: 600;
}

.us-price {
    color: #28a745;
    font-weight: 600;
    font-size: 18px;
}

.competitor-check,
.us-check {
    font-size: 18px;
    font-weight: bold;
}

.competitor-check {
    color: #28a745;
}

.us-check {
    color: #667eea;
}

.competitor-x {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
}

td.us-col {
    background: rgba(102, 126, 234, 0.05) !important;
}

.comparison-footer {
    text-align: center;
    margin-top: 40px;
}

.comparison-result {
    font-size: 18px;
    color: #1a1a1a;
    max-width: 600px;
    margin: 0 auto;
}



/* Visual Polish & Consistency */
.preview-card,
.roi-card,
.social-post,
.methodology-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preview-card:hover,
.social-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.roi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

/* Consistent border radius */
.preview-card,
.roi-card,
.comparison-table-container,
.value-explanation {
    border-radius: 16px;
}

.social-post,
.client-logo,
.preview-field {
    border-radius: 12px;
}

.preview-note,
.proof-badge {
    border-radius: 8px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #1a1a1a;
    color: white;
}

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

.footer-content p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pain-points {
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        margin: 20px 0;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stack-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .special-badge {
        margin-top: 10px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .features-section,
    .audience-section,
    .process-section,
    .philosophy-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .orb-1, .orb-2, .orb-3 {
        width: 200px;
        height: 200px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}