@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d4af37;
    --accent-hover: #b8962e;
    --text-main: #1e293b;
    --text-light: #64748b;
    --secondary: #f8fafc;
    --white: #ffffff;
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-medium: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-strong: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1280px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.reveal {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: 20%; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%); }

/* Combined Base Styles */
.site-el {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    line-height: 1.2;
    transition: var(--transition);
}

h1.site-el, h2.site-el, h3.site-el, h4.site-el, h5.site-el, h6.site-el {
    font-weight: 700;
    color: var(--primary);
    display: block;
}

a.site-el {
    color: inherit;
}

a.site-el:hover {
    color: var(--accent);
}

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

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

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

.nav-cta {
    background: #ffcc00;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-cta:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: radial-gradient(circle at top right, #f1f5f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    text-align: left;
    max-width: 100%;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.hero-btn-group {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.btn-primary {
    background: #ffcc00;
    color: #000000;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    margin-top: 0;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    max-width: 100%;
    background-color: var(--white);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transition: var(--transition);
}

/* Feature Grid */
.features {
    padding: 8rem 0;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border-radius: 30px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Content Detailed Section */
.content-section {
    padding: 10rem 0;
    background: var(--white);
}

.content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8rem;
}

.content-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.content-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.content-img {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background-color: var(--secondary);
    position: relative;
}

.content-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    pointer-events: none;
}

.content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Comparison Table */
.comparison {
    padding: 8rem 0;
    background: #fafafa;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

th, td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.check { color: #27ae60; font-weight: bold; }
.cross { color: #e74c3c; font-weight: bold; }

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.testimonial-track::-webkit-scrollbar {
    height: 6px;
}

.testimonial-track::-webkit-scrollbar-track {
    background: transparent;
}

.testimonial-track::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 400px;
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* CTA Footer */
.cta-banner {
    padding: 10rem 0;
    background: url("https://herbworld.com/cdn/shop/files/bag_neu_0003_TYL06622.webp?v=1756372064&width=1200");
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-banner h2, .cta-banner p {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    padding: 1.25rem 3.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.btn-large:hover {
    background: #e6b800;
    transform: scale(1.05) translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Main Footer */
footer {
    padding: 8rem 0 4rem;
    background: var(--primary);
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.disclosure {
    font-size: 0.85rem;
    margin-top: 1.5rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .content-flex { flex-direction: column; gap: 3rem; }
    .content-flex.reverse { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-btn-group { flex-direction: column; }
    .testimonial-card { min-width: 300px; padding: 2rem; }
}
