/* ============================================
   iSetupClaw - Main Stylesheet
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A84FF;
    --primary-dark: #0066CC;
    --primary-light: #4DA3FF;
    --accent: #00D4AA;
    --accent-glow: rgba(0, 212, 170, 0.3);
    --bg-dark: #0B1120;
    --bg-card: #111B2E;
    --bg-card-hover: #162240;
    --bg-section: #0D1526;
    --text-white: #FFFFFF;
    --text-light: #B8C5D6;
    --text-muted: #6B7A8D;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #0A84FF, #00D4AA);
    --gradient-hero: linear-gradient(180deg, #0B1120 0%, #0D1929 50%, #0B1120 100%);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(10, 132, 255, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.navbar.navbar-solid {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo span.i-prefix {
    color: var(--accent);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--text-white);
    border-color: var(--primary);
    background: rgba(10, 132, 255, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text,
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
}

.hero-stat .number .accent {
    color: var(--accent);
}

.hero-stat .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    overflow: hidden;
}

.proof-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.proof-item .icon {
    font-size: 20px;
}

.proof-item strong {
    color: var(--text-white);
}

/* ============================================
   SECTION STYLES (shared)
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--bg-section);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 0 30px rgba(10, 132, 255, 0.3);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.ba-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.ba-card.before {
    border-color: rgba(239, 68, 68, 0.2);
}

.ba-card.before::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #EF4444;
}

.ba-card.after {
    border-color: rgba(0, 212, 170, 0.2);
}

.ba-card.after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.ba-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.ba-card.before .ba-label {
    color: #EF4444;
}

.ba-card.after .ba-label {
    color: var(--accent);
}

.ba-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.ba-metric:last-child {
    border-bottom: none;
}

.ba-metric .metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.ba-metric .metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.ba-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ba-arrow .arrow-icon {
    font-size: 48px;
    color: var(--primary);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(10, 132, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

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

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: var(--bg-section);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

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

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 132, 255, 0.3);
}

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

.price-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.price-card .price-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.price-amount .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--primary-light);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.price-features li .check {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.price-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.price-btn.primary {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.price-btn.primary:hover {
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.3);
    transform: translateY(-2px);
}

.price-btn.outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border);
}

.price-btn.outline:hover {
    border-color: var(--primary);
    background: rgba(10, 132, 255, 0.1);
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.calculator-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.calculator-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.calc-group input,
.calc-group select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.calc-group input:focus,
.calc-group select:focus {
    border-color: var(--primary);
}

.calc-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.calc-result {
    background: rgba(10, 132, 255, 0.05);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.calc-result-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-result-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.calc-result-sub {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    background: var(--bg-section);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.comp-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(10, 132, 255, 0.05);
    border-bottom: 1px solid var(--border);
}

.comp-header div {
    padding: 20px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
    text-align: center;
}

.comp-header div:first-child {
    text-align: left;
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

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

.comp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-row div {
    padding: 16px 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-row div:first-child {
    justify-content: flex-start;
    color: var(--text-light);
}

.comp-yes {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
}

.comp-no {
    color: #EF4444;
    font-size: 18px;
    font-weight: 700;
}

.comp-maybe {
    color: #F59E0B;
    font-size: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(10, 132, 255, 0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-white);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

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

/* ============================================
   TRUST / GUARANTEE
   ============================================ */
.trust {
    background: var(--bg-section);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: rgba(10, 132, 255, 0.2);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(10, 132, 255, 0.3);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

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

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog {
    background: var(--bg-section);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(10, 132, 255, 0.2);
    transform: translateY(-4px);
}

.blog-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-bottom: 1px solid var(--border);
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    transition: gap 0.3s ease;
}

.blog-readmore:hover {
    gap: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(10, 132, 255, 0.3);
    transform: translateY(-2px);
}

.contact-method .cm-icon {
    font-size: 24px;
}

.contact-method .cm-label {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-method .cm-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.4);
    transition: all 0.3s ease;
}

.floating-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(10, 132, 255, 0.5);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* ============================================
   TERMS OF SERVICE PAGE STYLES
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 8px 20px;
    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary-light);
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding-bottom: 100px;
}

/* Table of Contents */
.toc {
    position: sticky;
    top: 100px;
    align-self: start;
}

.toc-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.toc-list li {
    margin-bottom: 4px;
}

.toc-list a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--text-white);
    background: rgba(10, 132, 255, 0.05);
    border-left-color: var(--primary);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    border-bottom: none;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section li::marker {
    color: var(--primary-light);
}

/* Highlight Boxes */
.highlight-box {
    background: rgba(10, 132, 255, 0.05);
    border: 1px solid rgba(10, 132, 255, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 14px;
}

.highlight-box.warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.highlight-box.warning .box-icon {
    color: #F59E0B;
}

.highlight-box.success {
    background: rgba(0, 212, 170, 0.05);
    border-color: rgba(0, 212, 170, 0.2);
}

.highlight-box.success .box-icon {
    color: var(--accent);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-white);
}

.box-icon {
    font-size: 18px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Definition Grid */
.def-grid {
    display: grid;
    gap: 12px;
    margin: 16px 0;
}

.def-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
}

.def-term {
    font-weight: 600;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 4px;
}

.def-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Contact Box (Terms page) */
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-box p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-box .email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-box .email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(10, 132, 255, 0.3);
    color: var(--text-white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .services-grid,
    .pricing-grid,
    .blog-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .toc {
        position: relative;
        top: 0;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 20px;
    }

    .toc-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .toc-list a {
        border-left: none;
        border-radius: 6px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat .number {
        font-size: 28px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

    .steps-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .blog-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .calc-inputs {
        grid-template-columns: 1fr;
    }

    .calculator-wrapper {
        padding: 32px 20px;
    }

    .comp-header,
    .comp-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comp-row div,
    .comp-header div {
        padding: 12px 12px;
        font-size: 12px;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .price-amount {
        font-size: 40px;
    }

    .section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .back-link .back-text {
        display: none;
    }
}

@media (max-width: 600px) {
    .toc-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}