:root {
    --bg-dark: #050505;
    --text-main: #f5f5f5;
    --text-muted: #999;
    --accent-red: #ff3333;
    --accent-red-hover: #e00000;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    line-height: normal; /* Fix default button alignments */
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background-image: url('images/dragon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    filter: blur(5px);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, .logo, .badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Background Glows */
.bg-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}
.red-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,51,51,0.5) 0%, rgba(5,5,5,0) 70%);
    top: -200px;
    right: 15%;
}
.red-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,51,51,0.3) 0%, rgba(5,5,5,0) 70%);
    top: 40%;
    left: -200px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-dot {
    width: 14px;
    height: 14px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 40px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent-red);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}
.menu-btn {
    display: none; /* Hidden on desktop */
}

@media (max-width: 1024px) {
    .menu-btn {
        display: block;
        background: var(--accent-red);
        color: white;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 0 15px rgba(255,51,51,0.3);
    }
}

/* Hero */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 5% 50px 5%;
    position: relative;
}
.hero-bg {
    position: absolute;
    top: -100px;
    right: 5%;
    width: 1000px;
    height: 1000px;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.dragon-img {
    height: 110%;
    object-fit: cover;
    mask-image: radial-gradient(circle, black 50%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 80%);
    opacity: 0.95;
}

.hero-left {
    width: 55%;
    z-index: 10;
    margin-top: 40px;
}
.hero-lead-form {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-lead-form.show {
    opacity: 1;
    transform: translateY(0);
}
.hero-lead-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 20px;
}
.hero-left h1 {
    font-size: 92px;
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -3px;
}
.sub-headline {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 90%;
    margin-bottom: 40px;
    font-weight: 400;
}
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    min-width: 180px; /* Ensure centering works well */
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent-red);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
    animation: ctaGlow 3s infinite alternate;
}
@keyframes ctaGlow {
    0% { box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3); }
    100% { box-shadow: 0 10px 40px rgba(255, 51, 51, 0.6); transform: scale(1.02); }
}
.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
    background: var(--card-bg);
    color: white;
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    box-shadow: 0 6px 25px rgba(255,51,51,0.6);
    transform: translateY(-2px);
}

.stats-row {
    display: flex;
    gap: 15px;
}
.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}
.stat-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,51,51,0.2);
    transform: translateY(-5px) scale(1.05); /* Zoom effect */
}
.stat-val {
    font-size: 32px;
    font-weight: 500;
    font-family: 'Montserrat';
    margin-bottom: 5px;
}
.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-right {
    width: 35%;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 50px;
}

/* Glass Card Slider */
.cards-slider {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding-bottom: 40px;
    padding-top: 10px;
}
.cards-slider::-webkit-scrollbar {
    display: none;
}
.cards-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glass Card styles */
.glass-card {
    background: linear-gradient(180deg, rgba(30,30,30,0.6), rgba(10,10,10,0.8));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    color: white;
}
.stat-card-floating {
    min-width: 250px;
    width: 250px;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.card-image-small {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
}
.card-image-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-large-stat h2 {
    font-size: 40px;
    margin-bottom: 2px;
    font-weight: 600;
}
.card-large-stat p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.trusted-by p {
    font-size: 11px;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.icon {
    font-size: 10px;
    margin-right: 10px;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
}
.full-width {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 12px 20px;
    font-size: 13px;
    background: var(--accent-red);
    box-shadow: 0 4px 15px rgba(255,51,51,0.3);
}

/* Problem Section */
.problem-section {
    padding: 120px 5% 100px 5%;
    display: flex;
    justify-content: center;
}
.problem-text {
    width: 85%;
    max-width: 900px;
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.5px;
    text-align: center;
}
.highlight-red {
    color: var(--accent-red);
}

/* Solution Grid */
.solution-grid {
    display: flex;
    gap: 20px;
    padding: 0 5%;
    margin-bottom: 60px;
}
.grid-left {
    flex: 6;
}
.grid-right {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.card-large {
    height: 100%;
}
.card-large.flex-col {
    display: flex;
    flex-direction: column;
}
.card-pre-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red), 0 0 15px var(--accent-red);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
.card-large h3 {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
}
.card-large .desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 90%;
}
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.feature-tags .tag {
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 11px;
    color: #ccc;
    white-space: nowrap;
}

.mockup-img {
    background: linear-gradient(135deg, #111, #050505);
    border-radius: 16px;
    width: 100%;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    padding: 15px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}
.dashboard-charts {
    display: flex;
    gap: 20px;
    height: 100%;
}
.growth-chart {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 15px 12px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.chart-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: auto;
}
.chart-title {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.chart-badge {
    background: rgba(255,51,51,0.15);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,51,51,0.5);
    box-shadow: 0 0 15px rgba(255,51,51,0.25);
    text-align: center;
}
.bars-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    justify-content: center;
    height: 140px;
    margin-top: 25px;
}
.bar-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 100%;
    justify-content: flex-end;
}
.bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: growUp 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    transform-origin: bottom;
}
@keyframes growUp {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}
.bar-old {
    background-color: #333;
    border: 1px solid #444;
    border-bottom: none;
    transition: none !important; /* Lock the height */
}
.bar-new {
    background: linear-gradient(180deg, var(--accent-red) 0%, rgba(180,0,0,0.6) 100%);
    box-shadow: 0 0 25px rgba(255,51,51,0.5), inset 0px 4px 8px rgba(255,255,255,0.4);
    border-top: 1px solid #ffaaaa;
    transition: none !important; /* Lock the height */
}
.bar-label {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    height: 26px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
    margin-top: 8px;
    width: 100%;
}
.bar-static-val {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 4px;
}
.bar-static-val.highlight {
    color: var(--accent-red);
}

.card-medium .subtitle {
    font-size: 14px;
    color: var(--text-muted);
}
.gradient-text {
    background: linear-gradient(90deg, #fff 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
    font-family: 'Montserrat';
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}
.metric-label {
    font-size: 13px;
    color: #ffd0d0;
    margin-bottom: 15px;
    font-weight: 500;
}
.stars {
    color: #ffd700;
    font-size: 20px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}
.rating-text {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter';
    letter-spacing: 0;
    margin-left: 10px;
}
.proof-box {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.15);
}
.avatar-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.avatars-stack {
    display: flex;
}
.avatars-stack img, .avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #111;
    object-fit: cover;
    margin-left: -12px;
}
.avatars-stack img:first-child {
    margin-left: 0;
    z-index: 4;
}
.avatars-stack img:nth-child(2) { z-index: 3; }
.avatars-stack img:nth-child(3) { z-index: 2; }
.avatar-more {
    z-index: 1;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
}
.proof-text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}
.proof-text strong {
    color: #fff;
    font-weight: 600;
}
.split-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

/* Split Card Implementation */
.split-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.split-left {
    flex: 1.2;
    padding-right: 40px;
    border-right: 1px dashed rgba(255,255,255,0.08);
}
.split-right {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.circular-chart {
    width: 100%;
    height: 100%;
}
@keyframes progressRing {
    0% { stroke-dasharray: 0, 100; }
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}
.info-card p {
    font-size: 13px;
    color: var(--text-muted);
}
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.team-img-wrapper {
    flex: 0 0 64px; /* Fixed width for alignment */
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,51,51,0.2);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.1);
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; /* Allow alignment */
}
.team-info strong {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.team-info span {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
}
.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-section {
    padding: 100px 5%;
    border-top: 1px solid var(--card-border);
}
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.pricing-content h2 {
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.cta-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,51,51,0.3);
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(40,10,10,0.6));
    box-shadow: 0 20px 50px rgba(255,51,51,0.05);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,51,51,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.cta-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    font-size: 14px;
    color: #ccc;
}
.cta-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.price-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.badge-saving {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px dashed rgba(46, 204, 113, 0.4);
}
.compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
}
.webpro-row {
    background: rgba(255,51,51,0.1);
    border: 1px solid rgba(255,51,51,0.3);
}
.other-row {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}
/* Hero Section Fixes */
.hero {
    position: relative;
    z-index: 1;
    overflow: visible;
}
.hero-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 60%;
    height: 100%;
    transform: translateY(-50%);
    z-index: -1; /* Behind everything */
    opacity: 0.4;
    pointer-events: none;
}
.dragon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255,51,51,0.2));
}
.hero-content {
    position: relative;
    z-index: 10; /* Above dragon */
    flex: 1;
    max-width: 700px;
}
.hero-content h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 40%, #ff8888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8); /* Maximum clarity */
}
.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #cecece;
    margin-bottom: 40px;
    max-width: 500px; /* Constrain subtext */
}
.hero-content h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 40%, #ff8888 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Lint fix */
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
.hero-left p {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px; /* Constrain subtext */
}
.hero-content h1 .highlight-red {
    background: linear-gradient(to right, #ff3333, #ff7777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 51, 51, 0.4));
    display: inline-block;
}
.brand strong {
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}
.brand .stars {
    font-size: 10px;
}
.cost {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.webpro-row .cost {
    color: var(--accent-red);
}
.price-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Reviews Marquee Implementation */
.reviews-marquee-container {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.reviews-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeReverse 40s linear infinite;
    padding: 20px 0;
}
@keyframes marqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.review-item {
    width: 320px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30,30,30,0.5), rgba(15,15,15,0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.6;
    transform: scale(0.85);
}
.review-item.center-focus {
    opacity: 1;
    transform: scale(1.1);
    border-color: rgba(255, 51, 51, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(255, 51, 51, 0.1);
    z-index: 2;
}
.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
    flex-grow: 1;
    margin-bottom: 25px;
    font-style: italic;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-info {
    display: flex;
    flex-direction: column;
}
.reviewer-info strong {
    font-size: 14px;
    color: #fff;
    font-family: 'Outfit';
}
.reviewer-info span {
    font-size: 11px;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Industry Marquee Section */
.clients-ticker {
    display: flex;
    align-items: center;
    padding: 25px 5%;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: rgba(10, 10, 10, 0.3);
    margin: 40px 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.ticker-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 40px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.ticker-label::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: var(--card-border);
}
.marquee-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: scrollMarquee 25s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-track span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
    white-space: nowrap; /* Prevent overlap/wrap */
}
.marquee-track span:hover {
    color: var(--accent-red);
    cursor: default;
}
.marquee-track span .icon {
    color: var(--accent-red);
    font-style: normal;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); } /* 50% shift to reset seamlessly, 30px = half gap */
}

/* Services Bento Grid Section */
.services-section {
    padding: 80px 0 40px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 25px;
}
.bento-box {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.bento-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.08);
}
.bento-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.bento-box:hover::before { opacity: 1; }

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 10, 10, 0.6));
    border-color: rgba(255, 51, 51, 0.15);
}
.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}
.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}
.bento-long {
    grid-column: span 2;
    grid-row: span 1;
}
.glass-special {
    background: linear-gradient(145deg, rgba(10, 30, 20, 0.4), rgba(5, 15, 10, 0.8));
    border-color: rgba(46, 204, 113, 0.15);
}

.bento-icon {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1;
}
.bento-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}
.bento-large h3 { font-size: 32px; }
.bento-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.bento-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}
.bento-features li {
    font-size: 14px;
    color: #ccc;
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.bento-features li::before {
    content: '✓';
    color: var(--accent-red);
    margin-right: 12px;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 5%;
}
.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.portfolio-header h2 {
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.portfolio-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.portfolio-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, background 0.3s;
}
.portfolio-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255,51,51,0.3);
    box-shadow: 0 15px 40px rgba(255,51,51,0.15);
}
.portfolio-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(145deg, #111, #222); /* Placeholder for missing image */
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9; /* Slight opacity to look better with background */
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: all 0.4s;
}
.portfolio-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-card:hover .portfolio-overlay .btn {
    transform: translateY(0);
}
.portfolio-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.portfolio-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-red);
}
.portfolio-info h3 {
    font-size: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.portfolio-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
.portfolio-action {
    display: block;
    text-align: center;
    width: 100%;
    border-color: rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 12px;
    padding: 10px 0;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s;
}
.portfolio-card:hover .portfolio-action {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
    box-shadow: 0 5px 15px rgba(255,51,51,0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 40px 5% 100px 5%;
}
.benefits-container {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}
.benefits-text {
    width: 30%;
}
.benefits-text h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
}
.benefits-text p {
    font-size: 14px;
    color: var(--text-muted);
}
.benefits-cards {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.benefit-item {
    flex: 1;
    background: linear-gradient(135deg, rgba(30,30,30,0.3), rgba(10,10,10,0.5));
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-item:hover {
    transform: scale(1.03);
    border-color: rgba(255,51,51,0.2);
    box-shadow: 0 10px 30px rgba(255,51,51,0.1);
}
.benefit-item.full {
    flex: 100%;
}
.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}
.benefit-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Responsive Design (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    .navbar { padding: 20px 5%; }
    .hero-left h1 { font-size: 70px; }
    .hero-bg { width: 800px; height: 800px; top: 0; right: -10%; opacity: 0.6; }
    .solution-grid { flex-direction: column; }
    .grid-left, .grid-right { flex: none; width: 100%; }
    .dashboard-charts { height: 260px; }
    .benefits-container { flex-direction: column; }
    .benefits-text, .benefits-cards { width: 100%; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { padding: 8px 15px; font-size: 13px; }
    
    .hero { flex-direction: column; padding: 100px 5% 40px; }
    .hero-bg { top: 100px; left: -20%; opacity: 0.4; }
    .hero-left { width: 100%; margin-top: 0; position: relative; z-index: 20; background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0) 100%); padding-bottom: 20px; border-radius: 0 0 40px 40px; }
    .hero-left h1 { font-size: 48px; letter-spacing: -1.5px; text-shadow: 0 2px 10px rgba(0,0,0,1); }
    .sub-headline { max-width: 100%; font-size: 14px; line-height: 1.5; color: #eee; }
    .action-buttons { flex-direction: column; width: 100%; }
    .action-buttons .btn { width: 100%; text-align: center; }
    .stats-row { flex-direction: column; gap: 10px; }
    .hero-right { width: 100%; padding-top: 40px; justify-content: center; overflow: visible; }
    .hero-lead-form { width: 100%; max-width: 450px; margin: 0 auto; }
    .stat-item { flex: 1; padding: 15px; min-width: 0; }
    .stat-val { font-size: 24px; }
    
    .problem-section { padding: 80px 5%; }
    .problem-text { width: 100%; font-size: 26px; }
    
    .card-large h3 { font-size: 32px; }
    .mockup-img { height: auto; padding: 10px; }
    .dashboard-charts { flex-direction: column; height: auto; gap: 15px; }
    .growth-chart { min-height: 250px; }
    .gradient-text { font-size: 56px; }
    .testimonial { flex-direction: column; align-items: flex-start; }
    
    .split-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .split-left { padding-right: 0; border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 25px; width: 100%; }
    .split-right { width: 100%; flex-direction: row; justify-content: flex-start; align-items: center; gap: 20px; }
    .split-right span { margin-top: 0 !important; text-align: left !important; }
    
    .team-card { flex-direction: column; align-items: flex-start; }
    .team-grid { display: flex; flex-wrap: wrap; }
    
    .reviews-header { flex-direction: column; align-items: flex-start !important; gap: 15px; margin-bottom: 40px; }
    .reviews-header h2 { max-width: 100% !important; font-size: 28px !important; }
    .review-item { width: 280px; padding: 20px; }
    .review-content { font-size: 13px; line-height: 1.5; }
    
    .pricing-section { padding: 60px 5%; }
    .pricing-container { grid-template-columns: 1fr; gap: 40px; }
    .pricing-content h2 { font-size: 36px; }
    .cta-card { padding: 30px 20px; }
    .price-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .compare-row { flex-direction: column; align-items: flex-start; padding: 15px !important; gap: 10px; }
    
    .clients-ticker { flex-direction: column; gap: 15px; padding: 25px 5%; align-items: stretch; }
    .ticker-label { text-align: center; margin-right: 0; }
    .ticker-label::after { display: none; }
    
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-large, .bento-medium, .bento-small, .bento-long { grid-column: span 1; grid-row: span 1; }
    .services-section { padding: 60px 0 20px; }
    
    .portfolio-section { padding: 80px 5%; }
    .portfolio-header h2 { font-size: 36px; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .portfolio-info h3 { font-size: 18px; }
    
    .benefits-section { padding: 40px 5% 80px; }
    .benefits-text h2 { font-size: 32px; }
    .benefits-cards { flex-direction: column; }
    .benefit-item { width: 100%; }
    
    /* Better section connections */
    section {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    border-top: 1px solid var(--card-border);
    position: relative;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-info h2 {
    font-size: 48px;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 1.2;
}
.contact-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.method {
    display: flex;
    align-items: center;
    gap: 20px;
}
.method .icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: rgba(255, 51, 51, 0.05);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 51, 51, 0.2);
}
.method strong {
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.method p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Glass Form */
.glass-form {
    background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(40,10,10,0.5));
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.glass-form::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px; width: 150px; height: 150px;
    background: var(--accent-red);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.glass-form h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box; 
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.2);
    background: rgba(20, 20, 20, 0.8);
    outline: none;
}
.form-group select {
    appearance: none;
    cursor: pointer;
}
.form-group select option {
    background: #111;
    color: #fff;
}
.privacy-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/* Footer Section */
.footer {
    padding: 80px 5% 40px;
    border-top: 1px solid var(--card-border);
    background: #000;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 350px;
}
.footer-links h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent-red);
}

/* Section Spacing Consistency */
section {
    padding: 100px 5%;
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }
    .footer-container {
        text-align: center;
        gap: 40px;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 13px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .contact-container, .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info h2 { font-size: 36px; }
}

/* --- Added Missing Hero Right & Slider Styles --- */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}
.cards-slider {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    overflow-x: auto;
    width: 600px;
    cursor: grab;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.cards-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}
.cards-slider .glass-card {
    min-width: 300px;
    flex-shrink: 0;
    transition: transform 0.4s;
}
.cards-slider.active {
    cursor: grabbing;
}
.card-large-stat h2 {
    font-size: 56px;
    color: var(--accent-red);
    margin-bottom: 10px;
}
.card-large-stat p {
    font-size: 14px;
    color: var(--text-muted);
}
.hero-chart-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.circular-chart {
    max-width: 100%;
    max-height: 100%;
}

/* --- Added Missing Team & Expert Section Styles --- */
.split-card {
    display: flex;
    gap: 30px;
    min-height: 400px;
}
.split-left {
    flex: 1.5;
    padding-right: 30px;
    border-right: 1px dashed rgba(255,255,255,0.1);
}
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.split-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
}
.team-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 51, 51, 0.3);
    flex-shrink: 0;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}
.team-info strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}
.team-info span {
    font-size: 13px;
    color: var(--text-muted);
}
.circular-stat-wrapper {
    text-align: center;
}

/* Corrected Solution Grid Layout */
.solution-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    padding: 0 5% 100px;
}
.grid-left, .grid-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.card-large {
    flex: 1;
}

/* Review Item Alignment Fix */
.review-item {
    width: 400px;
    flex-shrink: 0;
}

/* ===========================
   PRICING CARDS
   =========================== */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: start;
}

.pricing-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-featured {
    border: 1px solid rgba(255, 51, 51, 0.45) !important;
    background: rgba(255, 51, 51, 0.05) !important;
    position: relative;
}

.pricing-badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.pricing-tier-label {
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pricing-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.pricing-name {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-left {
    flex: 1;
    max-width: 680px;
    z-index: 10;
    position: relative;
}
.hero-left p {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.price-unit {
    font-size: 12px;
    color: var(--text-muted);
}

.pricing-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.feat-check {
    color: #2ecc71;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}

.feat-muted {
    color: var(--text-muted);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}

/* ===========================
   CONTACT FORM STEPS
   =========================== */
.form-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background 0.3s, width 0.3s;
}

.form-step-dot.active {
    background: var(--accent-red);
    width: 22px;
    border-radius: 4px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-methods .method {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-methods .method .icon {
    font-size: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,51,51,0.1);
    border: 1px solid rgba(255,51,51,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-methods .method strong {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 2px;
}

.contact-methods .method p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .pricing-featured {
        order: -1;
    }
}

/* ===========================
   HERO LEAD FORM
   =========================== */
.hero-lead-form {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
}

.hero-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-form-avatars {
    position: relative;
    flex-shrink: 0;
}

.hero-form-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    object-fit: cover;
}

.hero-form-online-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    border: 2px solid #050505;
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-form-name {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 3px;
}

.hero-form-status {
    font-size: 12px;
    color: #2ecc71;
}

.hero-form-title {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-form-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.hero-form-cta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px;
    margin-top: 4px;
    box-shadow: 0 8px 28px rgba(255, 51, 51, 0.35);
    letter-spacing: 0.5px;
}

.hero-form-proof {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
    .hero-lead-form {
        max-width: 100%;
    }
}
