:root {
    /* Colors */
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #0f172a;
    --accent-red: #dc2626;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --bg-dark: #f8fafc;
    --bg-light: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --black: #000000;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

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

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

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

.full-width {
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-accent {
    color: var(--accent-red);
}

.logo-rest {
    color: var(--white);
    background: var(--text-main);
    padding: 2px 8px;
    border-radius: 4px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.9)),
        url('hero-bg.png') center/cover no-repeat;
    z-index: 1;
}

/* Features */
.features {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Services */
.services {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-badge.success {
    background: var(--accent-green);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--accent-green);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.setup-fee {
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.plan-features li {
    padding: 12px 0;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.portfolio-icon {
    color: var(--primary);
    margin-bottom: 15px;
    width: 32px;
    height: 32px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.portfolio-icon {
    display: none;
}

.portfolio-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.portfolio-item a {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.play-store-item {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 123, 255, 0.1));
    border: 1px solid var(--accent-green);
}

.play-store-item h3 {
    color: var(--text-main);
}

.play-store-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Special Offers */
.offers {
    padding: var(--section-padding);
}

.offer-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    border-radius: 32px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.offer-box-premium {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(15, 23, 42, 0.9));
    border: 2px solid var(--accent-green);
}

.offer-badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-fire {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.badge-green {
    color: var(--accent-green);
}

.offer-content {
    flex: 1;
}

.offer-content h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 800;
}

.offer-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 24px;
}

.promo-features {
    list-style: none;
    margin-bottom: 30px;
}

.promo-features li {
    padding: 8px 0;
    color: var(--text-main);
    font-size: 1rem;
}

.offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.offer-image-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.offer-image-img:hover {
    transform: scale(1.05);
}

.offer-icon-large {
    width: 200px;
    height: 200px;
    color: var(--accent-green);
    opacity: 0.3;
}

.service-card li strong {
    color: var(--accent-green);
}

.service-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.promo-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.promo-box i {
    color: var(--accent-green);
    flex-shrink: 0;
}

.promo-box p {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    color: var(--white) !important;
}

/* How it works */
.how-it-works {
    padding: var(--section-padding);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* CTA Final */
.cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--white);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.activation-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

/* Contact Form */
.contact {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 80px 20px 40px;
    background: #010409;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
}

.footer-links h4 {
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

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

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

    .offer-box {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .offer-box-premium {
        border-width: 1px;
        /* Thinner border for mobile */
    }

    .offer-image {
        order: -1;
        /* Show image first on mobile if desired, or keep as is */
        margin-bottom: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        /* Stack contact info and form */
        gap: 40px;
    }

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

    .cta-btns {
        flex-direction: column;
    }
}