/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary: #E07A5F;
    --primary-dark: #C76950;
    --primary-rgb: 224, 122, 95;
    --secondary: #81B29A;
    --secondary-rgb: 129, 178, 154;
    --accent: #F2CC8F;
    --accent-rgb: 242, 204, 143;
    --bg: #1A1F2E;
    --bg-pure: #161B28;
    --text: #F4F1DE;
    --text-muted: #9CA3AF;
    --border: rgba(224, 122, 95, 0.2);
    --glow: rgba(224, 122, 95, 0.35);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(22, 27, 40, 0.92);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
}

.disclaimer-bar {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    padding: 0.4rem 1rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--glow));
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    position: relative;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.btn-primary:hover {
    background: rgba(var(--primary-rgb), 0.25);
    border-color: rgba(var(--primary-rgb), 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 45%, var(--secondary) 100%);
    color: var(--text);
    border: none;
    box-shadow: 0 4px 20px var(--glow);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.5);
}

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

.btn-outline:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    border-radius: 1rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0.06) 30%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

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

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

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary);
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.2);
    animation: glow 3s ease-in-out infinite;
    letter-spacing: 0.02em;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2); }
    50% { box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.4); }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: -0.035em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    transition: all 0.3s ease;
}

.mini-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.25rem;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image img,
.hero-image video {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    transition: transform 0.5s ease;
}

.hero-image:hover img,
.hero-image:hover video {
    transform: scale(1.02) translateY(-5px);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
    border-bottom: 1px solid var(--border);
    position: relative;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}

.section-badge.purple {
    background: rgba(var(--secondary-rgb), 0.2);
    color: var(--secondary);
    border-color: rgba(var(--secondary-rgb), 0.35);
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.15);
}

.section-badge.red {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}

.section-badge.yellow {
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--accent);
    border-color: rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.15);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Features Section */
.features {
    background: var(--bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at left, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-image {
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.feature-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--primary-rgb), 0.4);
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.blue {
    background: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
}

.feature-icon.purple {
    background: rgba(var(--secondary-rgb), 0.25);
    box-shadow: 0 0 30px rgba(var(--secondary-rgb), 0.3);
}

.feature-icon.cyan {
    background: rgba(var(--accent-rgb), 0.25);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.feature-icon.green {
    background: rgba(var(--secondary-rgb), 0.25);
    box-shadow: 0 0 30px rgba(var(--secondary-rgb), 0.3);
}

.feature-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--secondary-rgb), 0.4);
    transform: translateX(10px);
}

.check {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(var(--secondary-rgb), 0.25);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.3);
}

/* Technology Section */
.technology {
    background: var(--bg);
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at left, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tech-grid {
    display: block;
    max-width: 56rem;
    margin: 0 auto;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(var(--accent-rgb), 0.04);
    border-top: 1px solid rgba(var(--accent-rgb), 0.15);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stars {
    color: var(--accent);
    font-size: 1.75rem;
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.5));
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.2);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text);
}

/* Specifications Section */
.specifications {
    background: var(--bg);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.spec-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    transition: all 0.4s ease;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.15);
}

.spec-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item span:first-child {
    color: var(--text-muted);
}

.spec-item span:last-child {
    font-weight: 600;
    color: var(--text);
}

.compatibility {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.compatibility h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.compatibility p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content .section-description {
    max-width: 36rem;
}

.cta-content .btn {
    margin-top: 0.5rem;
}

.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 4rem;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 2rem;
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    margin: 2.5rem 0;
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.2);
    transition: all 0.4s ease;
}

.price-box:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.3);
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.price-old {
    font-size: 1.75rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.price-save {
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 9999px;
}

/* Footer */
.footer {
    background: var(--bg);
    color: var(--text-muted);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.footer-col h3 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 0.875rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Internal pages: Contact & Legal */
.contact-page,
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-icon.blue {
    background: rgba(var(--primary-rgb), 0.15);
}

.info-icon.green {
    background: rgba(52, 211, 153, 0.15);
}

.info-icon.purple {
    background: rgba(167, 139, 250, 0.15);
}

.info-icon.orange {
    background: rgba(var(--secondary-rgb), 0.15);
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.info-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.service-card {
    background: rgba(var(--primary-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: var(--text);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Legal content */
.legal-content {
    max-width: 50rem;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.legal-content strong {
    color: var(--text);
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.highlight-box {
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.4);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--primary-rgb), 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hero-meta {
        justify-content: center;
    }

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

    .features-grid,
    .heart-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-cards {
        grid-template-columns: 1fr;
    }

    .heart-content {
        order: 1;
    }

    .heart-image {
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .stats-grid,
    .testimonials-grid,
    .specs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .price-current {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}