/* ==========================================
   CLIENTCONTACT.AI - MOBILE OPTIMIZED STYLES
   Sin scroll horizontal - Responsive perfecto
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0db2c756c9c896e272d_founders-grotesk-condensed-medium.woff2)format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e39bb63e57bbfe4ab1_founders-grotesk-condensed-regular.woff2)format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e9b73b1390605d01fb_founders-grotesk-condensed-semibold.woff2)format("woff2");font-weight:600;font-style:normal;font-display:swap}

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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #ff5d15;
    --primary-dark: #e54d0a;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray-900: #111111;
    --gray-800: #1f1f1f;
    --gray-700: #2e2e2e;
    --gray-600: #4a4a4a;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Founders Grotesk Condensed', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.container-full {
    width: 100%;
    padding: 0 40px;
    max-width: 100vw;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background: var(--white);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 300;
    font-size: 17px;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

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

.nav-buttons {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 93, 21, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
}

.btn-secondary:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 26px;
  font-size: 16px;
}

.btn-xl {
    padding: 24px 48px;
    font-size: 20px;
}

.full-width {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 93, 21, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 100%;
}

.hero-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-text h1 {
    font-size: clamp(36px, 8vw, 88px);
    line-height: 0.95;
    margin-bottom: 32px;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    word-wrap: break-word;
}

.hero-text p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    margin-bottom: 100px;
    width: 100%;
    max-width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    display: block;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    background: var(--white);
    padding: 32px 48px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   WHY SPEED SECTION
   ========================================== */
.why-speed {
    padding: 140px 0;
    background: var(--dark);
    color: var(--white);
    width: 100%;
    overflow: hidden;
}

.why-speed-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

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

.section-header-alt h2 {
    font-size: clamp(36px, 7vw, 82px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    word-wrap: break-word;
}

.section-header-alt p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-400);
}

.speed-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.speed-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.speed-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 93, 21, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-big-number {
    font-size: clamp(48px, 10vw, 74px);
    font-weight: 800;
    font-family: 'Founders Grotesk Condensed', 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 24px;
}

.speed-stat-card p {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--gray-300);
    line-height: 1.6;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 7vw, 82px);
    line-height: 1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    word-wrap: break-word;
}

.section-header p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-500);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 140px 0;
    background: var(--white);
    width: 100%;
    overflow: hidden;
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.feature-card-pro {
    background: var(--gray-50);
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    width: 100%;
}

.feature-card-pro:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon-pro {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.feature-card-pro h3 {
    font-size: clamp(22px, 3vw, 20px);
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.feature-card-pro p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================
   PERFORMANCE SECTION
   ========================================== */
.performance-section {
    padding: 140px 0;
    background: var(--gray-50);
    width: 100%;
    overflow: hidden;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.performance-text h2 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    color: var(--gray-900);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.performance-text p {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.performance-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

.metrics-card {
    background: var(--dark);
    padding: 48px;
    border-radius: 24px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.metrics-card h3 {
    color: var(--white);
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.metric-row {
    margin-bottom: 32px;
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success) 0%, #059669 100%);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-value {
    font-size: 16px;
    color: var(--success);
    font-weight: 700;
}

.score-circle-animated {
    position: absolute;
    bottom: 48px;
    right: 48px;
}

.score-progress {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.score-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ==========================================
   EXAMPLES SECTION
   ========================================== */
.examples-section {
    padding: 140px 0;
    background: var(--white);
    width: 100%;
    overflow: hidden;
}

.examples-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.example-card-pro {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
}

.example-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.example-image-pro {
    position: relative;
    height: 300px;
    overflow: hidden;
    width: 100%;
}

.example-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.example-card-pro:hover .example-image-pro img {
    transform: scale(1.05);
}

.example-badge-pro {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.example-content-pro {
    padding: 32px;
}

.example-content-pro h3 {
    font-size: clamp(20px, 3vw, 24px);
    color: var(--gray-900);
    margin-bottom: 12px;
}

.example-content-pro p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.example-stats-pro {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
}

.stat-pill.highlight {
    background: rgba(255, 93, 21, 0.1);
    color: var(--primary);
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    padding: 140px 0;
    background: var(--gray-50);
    width: 100%;
    overflow: hidden;
}

.pricing-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    align-items: stretch;
    width: 100%;
}

.pricing-card-pro {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.3s;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.pricing-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pricing-card-pro.featured {
    border-color: var(--primary);
    border-width: 3px;
    background: linear-gradient(180deg, rgba(255, 93, 21, 0.02) 0%, var(--white) 100%);
}

.featured-tag {
    position: absolute;
    top: -16px;
    left: 48px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header h3 {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

.plan-price-pro {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.plan-price-pro .currency {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--gray-900);
}

.plan-price-pro .amount {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin: 0 8px;
}

.plan-price-pro .period {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--gray-500);
    font-weight: 500;
}

.plan-desc {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.5;
}

.plan-features-pro {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features-pro li {
    padding: 16px 0;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    padding-left: 32px;
}

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

.plan-features-pro li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.pricing-card-pro .btn {
    margin-top: auto;
    width: 100%;
}

.pricing-guarantee-pro {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(16, 185, 129, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--success);
}

.guarantee-text h3 {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--gray-900);
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 140px 0;
    background: var(--dark);
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.cta-content h2 {
    font-size: clamp(36px, 7vw, 80px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    word-wrap: break-word;
}

.cta-content p {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 100%;
}

.cta-note {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--gray-400);
    margin-top: 24px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 40px;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo svg {
    max-width: 100%;
    height: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-column h3 {
    font-size: clamp(18px, 3vw, 20px);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

/* VALUE INCLUDED SECTION */
.value-included-section {
    padding: 120px 0;
    background: #0e0e0e;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.value-included-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 77, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 77, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.value-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.value-header h2 {
    font-size: clamp(28px, 6vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.value-amount {
    color: #ff5d15;
    font-size: clamp(36px, 7vw, 3.5rem);
}

.value-subtitle {
    font-size: clamp(14px, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

.value-switcher {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.switch-btn {
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switch-btn:first-child {
    border-radius: 50px 0 0 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.switch-btn:last-child {
    border-radius: 0 50px 50px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.switch-btn.active {
    background: #ff5d15;
    border-color: #ff5d15;
    color: #ffffff;
}

.switch-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    width: 100%;
}

.value-card {
    background: #010101;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5d15, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 93, 21, 0.3);
    transform: translateY(-4px);
}

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

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

.value-card h3 {
    font-size: clamp(18px, 3vw, 1.4rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.value-indicator {
    position: relative;
    min-width: 100px;
    text-align: right;
}

.value-price {
    font-size: clamp(25px, 3vw, 1.5rem);
    font-weight: 700;
    color: #ff5d15;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.value-price span {
    font-size: 0.75rem;
    color: rgba(255, 93, 21, 0.7);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.value-price .one-time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-check {
    width: 32px;
    height: 32px;
    background: #ff5d15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-check svg {
    stroke: #ffffff;
}

.value-grid.show-included .value-price {
    opacity: 0;
    pointer-events: none;
}

.value-grid.show-included .value-check {
    opacity: 1;
}

.value-total {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 93, 21, 0.2);
    border-radius: 20px;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.value-total.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.total-box {
    text-align: center;
}

.total-box.highlight {
    padding: 20px 40px;
    background: rgba(255, 93, 21, 0.1);
    border: 2px solid #ff5d15;
    border-radius: 12px;
}

.total-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.total-amount {
    display: block;
    font-size: clamp(24px, 4vw, 2rem);
    font-weight: 700;
    color: #ffffff;
}

.total-amount.grand-total {
    font-size: clamp(28px, 5vw, 2.5rem);
    color: #ff5d15;
}

/* MODERN HERO STATS - ANIMATED */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    max-width: 100%;
    height: auto;
}

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

.hero-stats-modern {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 10;
}

.stat-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    min-width: 190px;
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 100%;
}

.stat-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card-wide {
    flex: 1;
    min-width: 320px;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 93, 21, 0.2);
    border-color: var(--primary);
}

.stat-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: var(--gray-100);
    stroke-width: 6;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--success);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-number-animated {
    font-size: clamp(32px, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    font-family: 'Founders Grotesk Condensed', 'Inter', sans-serif;
}

.stat-label-modern {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-badge-modern {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.stat-improvement {
    font-size: clamp(16px, 3vw, 1.25rem);
    font-weight: 800;
    color: var(--success);
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-family: 'Founders Grotesk Condensed', 'Inter', sans-serif;
}

.load-time-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.load-time-display .stat-number-animated {
    font-size: clamp(40px, 8vw, 3.5rem);
}

.load-time-display .unit {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.mini-graph {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.line-chart {
    display: block;
    max-width: 100%;
}

.chart-line {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.chart-line-animated {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot {
    fill: var(--primary);
    opacity: 0;
    animation: showDot 0.5s ease-out 2s forwards;
}

@keyframes showDot {
    to {
        opacity: 1;
    }
}

.btn-example {
    background: transparent;
    color: #ff5d1e;
    border: 2px solid #ff5d1e;
    margin-top: 24px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-example:hover {
    background: #ff5d1e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 93, 30, 0.3);
}

.btn-example::after {
    content: "→";
    font-size: 20px;
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn-example:hover::after {
    transform: translateX(4px);
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

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

.faq-section .section-header h2 {
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    color: #010101;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.faq-section .section-header p {
    font-size: clamp(16px, 3vw, 20px);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    border-color: #ff5d15;
    box-shadow: 0 4px 16px rgba(255, 93, 21, 0.1);
}

.faq-item.active {
    border-color: #ff5d15;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: clamp(15px, 2.5vw, 17px);
    font-weight: 600;
    color: #1f2937;
    transition: all 0.2s;
}

.faq-question:hover {
    color: #ff5d15;
}

.faq-item.active .faq-question {
    color: #ff5d15;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    color: #ff5d15;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 28px 28px 28px;
}

.faq-answer p {
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

.faq-answer p strong {
    color: #1f2937;
    font-weight: 600;
}

.faq-answer p br {
    display: block;
    content: "";
    margin: 8px 0;
}

.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 20px;
    border: 2px solid #ff5d15;
}

.faq-cta h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.faq-cta p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: #4b5563;
    margin-bottom: 28px;
}

.faq-cta .btn {
    display: inline-flex;
}

/* ==========================================
   RESPONSIVE MOBILE
   ========================================== */

@media (max-width: 968px) {
    .container, .container-full {
        padding: 0 20px;
    }

    .hero-content,
    .performance-content,
    .features-grid-pro,
    .speed-stats,
    .examples-grid-pro,
    .pricing-grid-pro,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        padding: 60px 0 40px 0;
    }

    .hero-text h1 {
        font-size: clamp(54px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image {
        margin-bottom: 140px;
    }

    .hero-stats {
        position: static;
        transform: none;
        margin-top: 40px;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .hero-stats-modern {
        bottom: -120px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .stat-card-modern,
    .stat-card-wide {
        width: 100%;
        max-width: 400px;
        min-width: auto;
    }

    .section-header h2,
    .section-header-alt h2 {
        font-size: clamp(32px, 8vw, 56px);
        margin-bottom: 16px;
    }

    .section-header p,
    .section-header-alt p {
        font-size: 16px;
    }

    .performance-text h2,
    .cta-content h2 {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .features,
    .performance-section,
    .examples-section,
    .pricing-section,
    .why-speed,
    .cta-section,
    .value-included-section,
    .faq-section {
        padding: 60px 0;
    }

    .speed-stat-card {
        padding: 32px 24px;
    }

    .feature-card-pro {
        padding: 32px 24px;
    }

    .example-image-pro {
        height: 240px;
    }

    .example-content-pro {
        padding: 24px;
    }

    .pricing-card-pro {
        padding: 32px 24px;
    }

    .pricing-card-pro.featured {
        transform: scale(1);
    }

    .pricing-guarantee-pro {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .pricing-guarantee-pro svg {
        width: 48px;
        height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-switcher {
        margin-bottom: 40px;
    }

    .switch-btn {
        padding: 14px 32px;
        font-size: 0.9rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-total {
        gap: 20px;
        padding: 30px 20px;
    }

    .total-box.highlight {
        padding: 15px 30px;
    }

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

    .faq-question {
        padding: 20px 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 22px 22px;
        max-height: 1000px;
    }

    .faq-cta {
        margin-top: 50px;
        padding: 40px 24px;
        border-radius: 16px;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background: var(--gray-900);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 73px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 40px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-buttons {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        background: var(--white);
        padding: 20px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
    }

    .nav-buttons.active {
        right: 0;
        display: none;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .container, .container-full {
        padding: 0 16px;
    }

    .hero {
        padding: 50px 0 30px 0;
    }

    .hero-image {
        margin-bottom: 160px;
    }

    .hero-stats-modern {
        bottom: -140px;
    }

    .stat-card-modern {
        padding: 28px 24px;
    }

    .circular-progress {
        width: 100px;
        height: 100px;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .progress-ring-bg,
    .progress-ring-fill {
        stroke-width: 5;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .hero-text h1 {
        font-size: clamp(54px, 10vw, 36px);
    }

    .section-header h2,
    .section-header-alt h2 {
        font-size: clamp(28px, 10vw, 40px);
    }

    .performance-text h2,
    .cta-content h2 {
        font-size: clamp(54px, 10vw, 36px);
    }

    .features,
    .performance-section,
    .examples-section,
    .pricing-section,
    .why-speed,
    .cta-section,
    .value-included-section,
    .faq-section {
        padding: 50px 0;
    }

    .btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    .btn-large {
        font-size: 14px;
        padding: 14px 32px;
    }

    .btn-xl {
        font-size: 18px;
        padding: 18px 36px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 10px 20px;
        gap: 8px;
    }

    .speed-stat-card {
        padding: 28px 20px;
    }

    .stat-icon-circle {
        width: 64px;
        height: 64px;
    }

    .feature-card-pro {
        padding: 28px 20px;
    }

    .feature-icon-pro {
        width: 56px;
        height: 56px;
    }

    .example-image-pro {
        height: 200px;
    }

    .example-content-pro {
        padding: 20px;
    }

    .pricing-card-pro {
        padding: 28px 20px;
    }

    .featured-tag {
        font-size: 10px;
        padding: 6px 18px;
        left: 20px;
    }

    .pricing-guarantee-pro {
        padding: 28px 20px;
    }

    .value-included-section {
        padding: 60px 0;
    }

    .value-card {
        padding: 20px 16px;
    }

    .switch-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .value-total {
        flex-direction: column;
        gap: 15px;
        padding: 24px 16px;
    }

    .total-box.highlight {
        padding: 12px 24px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-icon {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-cta {
        padding: 32px 20px;
    }

    .logo svg {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: clamp(54px, 10vw, 65px);
        line-height: clamp(54px, 10vw, 65px);
        line-height: 1;
    }
    
    .feature-card-pro h3 {
    font-size: clamp(30px, 3vw, 20px);
}

    .section-header h2,
    .section-header-alt h2 {
        font-size: clamp(54px, 10vw, 32px);
    }

    .value-header h2 {
        font-size: clamp(54px, 8vw, 28px);
        line-height: clamp(54px, 8vw, 28px);
    }

    .value-amount {
        font-size: clamp(54px, 10vw, 36px);
        line-height: clamp(54px, 10vw, 36px);
    }

    .faq-section .section-header h2 {
        font-size: clamp(54px, 10vw, 32px);
        line-height: clamp(54px, 10vw, 32px);
    }

    .logo svg {
        width: 180px;
    }
}

/* Animated Speed Stats Enhancement */
.stat-big-number {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-big-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 93, 21, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-glow 2s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.stat-big-number.animated::after {
    opacity: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.speed-stat-card {
    position: relative;
    overflow: visible;
}

.speed-stat-card:hover .stat-big-number {
    transform: scale(1.1);
    color: #ff8c42;
}

/* ==========================================
   3D TILT EFFECT - SOLO WHY SPEED CARDS 🎯
   ========================================== */

.speed-stat-card {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}

/* Shine effect overlay */
.speed-stat-card .card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

/* Ensure content is above shine */
.speed-stat-card > *:not(.card-shine) {
    position: relative;
    z-index: 2;
}

/* Enhanced shadow on hover */
.speed-stat-card:hover {
    box-shadow: 
        0 20px 60px rgba(255, 93, 21, 0.25),
        0 0 0 1px rgba(255, 93, 21, 0.2);
}

/* Mobile - disable 3D effect */
@media (max-width: 968px) {
    .speed-stat-card {
        transform: none !important;
    }
    
    .speed-stat-card .card-shine {
        display: none;
    }
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    .speed-stat-card {
        transform: none !important;
        transition: none;
    }
}