/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background: radial-gradient(circle at top, #e0f2fe 0, #f8fafc 45%, #f1f5f9 100%);
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(120deg, #0f766e 0%, #14b8a6 40%, #0369a1 100%);
    color: #e0f2fe;
    padding: 14px 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-banner p {
    margin: 0;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #e0f2fe;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #22c55e 0, #22c55e 9px, transparent 10px) padding-box,
                linear-gradient(120deg, #22c55e, #0ea5e9) border-box;
    border: 1px solid transparent;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.main-nav a {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: #f9fafb;
}

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

.btn-order {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

/* Hero Section */
.hero-section {
    padding: 5.5rem 0 6.5rem;
    background: radial-gradient(circle at top, #e0f2fe 0%, #f9fafb 50%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.9);
    color: #bbf7d0;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    color: #020617;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.7;
    margin: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0f172a;
    font-size: 0.9375rem;
}

.feature-check {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.125rem;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 1rem 0;
}

.price-label {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-hero {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 45%, #0f766e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.4);
}

.hero-image {
    width: 100%;
    max-width: 100%;
    background: radial-gradient(circle at top left, #e0f2fe 0%, #f1f5f9 55%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* New hero layout */
.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hero-secondary-text span {
    font-size: 0.9rem;
    color: #0f172a;
    opacity: 0.85;
}

.hero-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.hero-bottom-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.hero-bottom-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.hero-bottom-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #1f2937;
}
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #f9fafb;
}

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

.about-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 0;
    font-size: 2.25rem;
    color: #1e293b;
}

.about-text p {
    color: #0f172a;
    line-height: 1.8;
    font-size: 1.0625rem;
    margin: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ecfdf5;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-text strong {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-text span {
    color: #166534;
    font-size: 0.9375rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top, #eff6ff 0%, #f8fafc 60%, #e0f2fe 100%);
}

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

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #0f172a;
    margin: 0;
}

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    border-color: #22c55e;
}

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.feature-card p {
    color: #0f172a;
}

.features-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.features-extra {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.features-extra h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.features-extra ul {
    padding-left: 1.1rem;
    margin: 0;
}

.features-extra li {
    font-size: 0.93rem;
    color: #111827;
    line-height: 1.7;
    margin-bottom: 0.25rem;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Product Details Section */
.product-details-section {
    padding: 6rem 0;
    background: #ffffff;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-specs-box {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.product-specs-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.spec-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9375rem;
}

.spec-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: right;
}

.product-images-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-image-main {
    width: 100%;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    object-fit: cover;
    background: #f8fafc;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #4f46e5;
    transform: scale(1.05);
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
}

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

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.step-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.9375rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #fff;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #fff;
    color: #4f46e5;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.btn-primary-large:hover {
    background-color: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: radial-gradient(circle at top, #020617 0%, #020617 55%, #020617 100%);
    color: #e5e7eb;
    padding: 4rem 0 2.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #1f2937;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    max-width: 420px;
    font-size: 0.95rem;
    color: #9ca3af;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #e5e7eb;
}

.footer-top-cta p {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-cta-button {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 100%);
    color: #f9fafb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.7);
    opacity: 0.95;
}

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

.footer-column h4 {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

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

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: #e5e7eb;
    transform: translateX(2px);
}

.footer-meta {
    border-top: 1px solid #1f2937;
    padding-top: 1.8rem;
    margin-bottom: 1.8rem;
}

.footer-meta-text {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.8;
    max-width: 900px;
}

.footer-bottom {
    border-top: 1px solid #111827;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
        border-top: 1px solid #e5e7eb;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hero-image {
        margin: 0 auto;
        max-width: 320px;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .about-text .section-title {
        text-align: center;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}
