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

:root {
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    --primary: #06b6d4; /* Cyan 500 */
    --primary-hover: #0891b2; /* Cyan 600 */
    --primary-light: #ecfeff; /* Cyan 50 */
    --primary-glow: rgba(6, 182, 212, 0.5);
    
    --secondary: #0f172a; /* Slate 900 */
    --secondary-hover: #1e293b; 
    
    --bg-white: #ffffff;
    --bg-off: #f8fafc;
    --bg-dark: #020617; /* Darker Slate */

    --text-main: #334155;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    --text-light-muted: #94a3b8;

    --border: #e2e8f0;
    --border-dark: #1e293b;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px -10px var(--primary-glow);

    --radius: 0.75rem;
    --radius-lg: 1rem;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95); /* Dark header */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.login-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: rgba(255,255,255,0.2);
}

.login-btn.loading {
    background: rgba(255,255,255,0.15);
    cursor: wait;
    pointer-events: none;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero - Completely Revamped */
.hero {
    padding: 8rem 0 6rem;
    background: var(--secondary); /* Dark Mode Hero */
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-col {
    max-width: 600px;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light-muted);
}

.hero-social-proof {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    margin-right: -10px;
}

.hero-social-proof p {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    margin: 0;
    margin-left: 0.5rem;
}

.hero-social-proof strong {
    color: white;
}

/* Hero Visual */
.hero-visual-col {
    position: relative;
    perspective: 1500px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.glass-card:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.window-controls span:nth-child(1) { background: #ef4444; }
.window-controls span:nth-child(2) { background: #eab308; }
.window-controls span:nth-child(3) { background: #22c55e; }

.address-bar {
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    flex: 1;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 4px;
}

.mockup-body {
    display: flex;
    height: 400px;
    background: rgba(15, 23, 42, 0.8);
}

.sidebar {
    width: 60px;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.nav-item {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
}

.nav-item.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.content-area {
    flex: 1;
    padding: 2rem;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    margin-bottom: 0.25rem;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.text-primary { color: var(--primary); }
.text-green { color: #4ade80; }

.list-mock {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.02);
}

.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.lines {
    flex: 1;
}

.line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 6px;
}
.line.lg { width: 80%; }
.line.sm { width: 40%; }

.status-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    white-space: nowrap;
}

.status-badge.warning {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    right: -20px;
}

.float-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

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

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-off);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.text-box strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-heading);
}

.text-box span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections General */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.03em;
    color: var(--text-heading);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-glow);
    z-index: -1;
    opacity: 0.3;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Problem Section */
.problem {
    background: white;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

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

.problem-item {
    text-align: left;
    padding: 2.5rem;
    background: var(--bg-off);
    border-radius: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--border);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-heading);
}

/* Opportunity */
.opportunity {
    background: var(--bg-off);
}

.opportunity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.stat-item.highlight {
    background: var(--secondary);
    border-color: var(--secondary);
}

.stat-item.highlight .stat-number, 
.stat-item.highlight .stat-label {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-display);
}

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

/* New Modern Tech Banner */
.opportunity-banner {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    color: white;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.5), 0 0 0 1px rgba(6, 182, 212, 0.1) inset;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.opportunity-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15), transparent 70%);
    pointer-events: none;
}

.banner-text-side {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.opportunity-banner h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.opportunity-banner p {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.banner-highlight {
    color: white !important;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    margin-top: 1.5rem;
}

.banner-visual-side {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.process-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.process-node.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
    transform: scale(1.05);
}

.node-icon {
    font-size: 1.25rem;
}

.process-node span {
    font-weight: 600;
    font-size: 0.9rem;
}

.process-line {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.problem-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.problem-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Opportunity */
.opportunity-content {
    margin-top: 3rem;
}

.opportunity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-heading);
    font-weight: 600;
}

.opportunity-text {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-soft);
}

.opportunity-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-heading);
}

.opportunity-text p:last-child {
    margin-bottom: 0;
}

/* What Is */
.what-is {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px -15px rgba(6, 182, 212, 0.15), 0 0 0 1px rgba(6, 182, 212, 0.1);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.value-prop {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.value-prop p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

.value-prop p strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--primary); /* Cyan text on dark bg */
}

/* How It Works - Redesigned */
.how-it-works {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Add a subtle grid pattern background */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.how-it-works .section-title.text-light {
    color: white;
}

.how-it-works .section-intro.text-light-muted {
    color: var(--text-light-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(30, 41, 59, 0.5); /* Slate 800 with opacity */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

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

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: #cbd5e1; /* light gray for step numbers */
    line-height: 1;
}

.step-card:hover .step-num {
    color: #94a3b8; /* slightly darker gray on hover */
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.step-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

/* For Who */
.for-who {
    background: var(--bg-light);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.for-who-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    font-weight: 700;
}

.for-who-title.is {
    border-color: var(--primary);
    color: var(--text-heading);
}

.for-who-title.not {
    border-color: #ef4444;
    color: var(--text-muted);
}

.for-who-list {
    list-style: none;
}

.for-who-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
}

.for-who-list li::before {
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.25rem;
}

.for-who-list:not(.not) li::before {
    content: "✓";
    color: var(--primary);
}

.for-who-list.not li::before {
    content: "✗";
    color: #ef4444;
}

/* Benefits */
.benefits-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary);
    background: var(--primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.benefit-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

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

/* Objections */
.objections {
    background: var(--secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.objections .section-title {
    color: white;
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objection-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.objection-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
}

.objection-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.objection-item p {
    color: var(--text-light-muted);
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    padding-bottom: 8rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.pricing-card.featured {
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    z-index: 10;
    transform: scale(1.05);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

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

.plan-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
    color: #22d3ee;
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
    border: 2px solid #ffffff;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    min-height: 44px; /* Ensure alignment */
}

.plan-price {
    margin: 1.5rem 0 2rem;
    color: var(--text-heading);
    position: relative;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
    color: var(--text-muted);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--secondary);
}

.period {
    font-size: 1rem;
    color: var(--text-light-muted);
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 500;
}

.plan-context {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0 auto; /* Push button to bottom */
    text-align: left;
    background: var(--bg-off);
    padding: 1.5rem;
    border-radius: 16px;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.btn-plan, .btn-plan-featured {
    width: 100%;
    margin-top: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
}

.btn-plan {
    background: white;
    color: var(--secondary);
    border: 2px solid #e2e8f0;
}

.btn-plan:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white;
}

.btn-plan-featured {
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.4);
    border: none;
}

.btn-plan-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(6, 182, 212, 0.5);
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: scale(1);
        padding: 3rem 2rem;
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-heading);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Final CTA Redesign */
.final-cta {
    background: #020617; /* Very dark slate */
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.final-cta-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 0 100px -20px rgba(6, 182, 212, 0.15);
}

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

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.text-highlight-dark {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feat svg {
    color: var(--primary);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -5px rgba(6, 182, 212, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(6, 182, 212, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.final-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile adjustments for new elements */
@media (max-width: 768px) {
    .opportunity-banner {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .banner-visual-side {
        flex: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .process-line {
        width: 20px;
        height: 2px;
    }
    
    .process-node {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.25rem;
        text-align: center;
    }
    
    .node-icon {
        margin-right: 0;
    }
    
    .final-cta-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .btn-primary-large {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 1rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-white);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-text-col {
        text-align: center;
        margin: 0 auto;
    }

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

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual-col {
        perspective: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .glass-card {
        transform: none;
    }
    
    .glass-card:hover {
        transform: none;
    }

    .floating-card {
        display: none; /* Hide floating elements on mobile for cleaner view */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: 9rem;
        padding-bottom: 5rem;
        min-height: auto;
        overflow-x: hidden;
        text-align: center;
    }

    .hero-wrapper {
        display: block;
    }

    .hero-visual-col {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        color: var(--text-light-muted);
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-ctas {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem;
        font-size: 1.1rem;
        height: auto;
    }

    .hero-ctas .btn svg {
        display: none;
    }
    
    .hero-guarantee {
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .btn {
        width: 100%;
    }

    .steps::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .problem-grid,
    .features-grid,
    .objections-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        padding-left: 3.5rem;
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    section {
        padding: 4rem 0;
    }
}