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

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f7;
    --accent: #d4af37;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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;
}

/* 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: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

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

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: var(--secondary);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.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: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

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

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

.btn-primary {
    background: #ffcc00;
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary:hover {
    background: #e6b800;
}

.btn-secondary {
    background: #ffcc00;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: none;
}

.btn-secondary:hover {
    background: #e6b800;
}

.hero-image {
    margin-top: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white);
    min-height: 400px;
}

.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: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.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: 8rem 0;
    background: var(--white);
}

.content-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.content-flex.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: var(--secondary);
    min-height: 300px;
}

.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 0;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    padding: 2.5rem;
    background: var(--secondary);
    border-radius: 20px;
}

.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: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.btn-large:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* Main Footer */
footer {
    padding: 6rem 0 2rem;
    background: #000;
    color: #999;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-col ul li a:hover {
    color: var(--white);
}

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

.disclosure {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #666;
}

/* 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; }
}
