:root {
    --gold: #d97706;
    --gold-light: #f2b255;
    --ink: #111111;
    --charcoal: #1c1c1c;
    --mist: #f7f3ec;
    --stone: #e9e3d8;
    --olive: #5a6a5b;
    --white: #ffffff;
    --shadow-soft: 0 12px 30px rgba(17, 17, 17, 0.08);
    --shadow-strong: 0 30px 80px rgba(17, 17, 17, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #ffffff 0%, var(--mist) 45%, #efe9dd 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: 3.6rem; }
h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
}
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p { color: #3f3f3f; }

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover { color: var(--gold-light); }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #b88946 100%);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(201, 163, 91, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(201, 163, 91, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 1px solid rgba(17, 17, 17, 0.2);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 1rem 2.6rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* HEADER */
.header {
    background: #a60014;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
}

.nav-link:hover {
    color: #f7c861;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    padding: 7rem 0 6rem;
    background: radial-gradient(circle at left, rgba(201, 163, 91, 0.15), transparent 55%),
        linear-gradient(135deg, #141414 0%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.25), transparent 70%);
    opacity: 0.8;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-stack {
    display: grid;
    gap: 1.5rem;
    will-change: transform;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(201, 163, 91, 0.2);
    color: #f6e7c9;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 163, 91, 0.3);
}

.hero h1 {
    color: white;
    font-size: 3.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.hero-proof {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.hero-proof span {
    padding-left: 1.2rem;
    position: relative;
}

.hero-proof span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* STATS */
.stats-section {
    padding: 6rem 0 5rem;
    background: var(--white);
}

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

.stat-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--mist);
    border: 1px solid rgba(17, 17, 17, 0.08);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.stat-card h3 {
    font-size: 1.85rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.stat-card p {
    color: #4f4f4f;
}

/* FEATURES */
.features-section {
    padding: 7rem 0;
    background: radial-gradient(circle at top, rgba(201, 163, 91, 0.08), transparent 55%),
        linear-gradient(180deg, var(--mist) 0%, #ffffff 100%);
}

.whatsapp-section {
    padding: 7rem 0;
    background: var(--white);
}

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

.whatsapp-card {
    padding: 2.4rem;
    background-color: var(--mist);
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.whatsapp-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    padding: 2.4rem;
    background-color: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.feature-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: #f6f2eb;
}

.feature-meta {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.98rem;
}

/* PROCESS */
.process-section {
    padding: 7rem 0;
    background: var(--white);
}

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

.process-card {
    padding: 2.5rem;
    border-radius: 18px;
    background: var(--mist);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.process-number {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1rem;
}

.process-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

/* PRICING */
.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
}

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

.section-header h2 {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 8px;
    margin-bottom: 0.6rem;
}

.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-header p {
    color: #5c5c5c;
    margin: 0.35rem auto 0;
    max-width: 700px;
}

.pricing-header p {
    color: #5c5c5c;
    margin-top: -1.25rem;
}

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

.pricing-footnote {
    text-align: center;
    margin-top: 2rem;
    color: #6b6b6b;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(17, 17, 17, 0.08);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.plan-card-header {
    background: #f0ede5;
    padding: 2rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.plan-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.plan-card-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

.plan-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.plan-badge {
    background: rgba(217, 119, 6, 0.12);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.plan-badge.subtle {
    background: rgba(17, 17, 17, 0.06);
    color: #4f4f4f;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.plan-name {
    margin: 0 0 0.35rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.plan-ideal {
    color: #5c5c5c;
    margin-bottom: 1.5rem;
}

.plan-top {
    display: flex;
    justify-content: flex-start;
    padding: 1.5rem 2rem 0;
}

.plan-meta {
    background: rgba(217, 119, 6, 0.12);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

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

.pricing-card.featured {
    border: 1px solid rgba(201, 163, 91, 0.6);
    transform: translateY(-6px);
}

.pricing-card h3 {
    font-size: 1.7rem;
}

.plan-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
}

.price-period {
    color: #5c5c5c;
    font-weight: 600;
    font-size: 1rem;
}

.price span {
    font-size: 1rem;
    color: #5c5c5c;
}

.price-note {
    color: #6b6b6b;
    font-size: 0.95rem;
}

.plan-features {
    display: grid;
    gap: 0.75rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.plan-features-title {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 0.75rem;
}

.pricing-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    color: var(--charcoal);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: auto 0 0;
    align-self: center;
    width: 100%;
}

.badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 7rem 0;
    background: var(--white);
}

.faq-section {
    padding: 7rem 0;
    background: #fffaf1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #efe4d6;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.faq-item p {
    color: #6a574e;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* BLOG */
.blog-hero {
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top, rgba(201, 163, 91, 0.2), transparent 60%), #ffffff;
}

.blog-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.blog-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.blog-hero h1 {
    margin-bottom: 1rem;
}

.blog-hero p {
    color: #5c5c5c;
}

.blog-grid-section {
    padding: 4rem 0 6rem;
    background: var(--mist);
}

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

.blog-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.blog-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--olive);
    font-weight: 600;
}

.blog-card h2 {
    font-size: 1.35rem;
    text-align: left;
    margin: 0;
}

.blog-card p {
    color: #5c5c5c;
}

.blog-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--gold);
}

.blog-cta {
    padding: 5rem 0 6rem;
    background: #ffffff;
}

.blog-cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.blog-cta-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.blog-post-hero {
    padding: 5rem 0 3rem;
    background: radial-gradient(circle at top, rgba(201, 163, 91, 0.18), transparent 60%), #ffffff;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.blog-hero-media {
    display: flex;
    justify-content: flex-end;
}

.blog-hero-media img {
    width: 100%;
    max-width: 440px;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
}

.post-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6a574e;
}

.blog-post {
    padding: 3rem 0 6rem;
    background: var(--mist);
}

.post-content {
    background: var(--white);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.post-content h2 {
    font-size: 1.6rem;
    text-align: left;
    margin: 2rem 0 1rem;
}

.post-content ul {
    margin: 1rem 0 0 1.25rem;
}

.post-content li {
    margin-bottom: 0.6rem;
    color: #5c5c5c;
}

.blog-post-cta {
    margin-top: 2.5rem;
    padding: 2.5rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.blog-post-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-post-cta p {
    color: #5c5c5c;
    margin-bottom: 1.5rem;
}

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

.testimonial {
    padding: 2.4rem;
    background-color: var(--mist);
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: var(--shadow-soft);
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid rgba(217, 119, 6, 0.25);
}

.testimonial-logo {
    width: 140px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial strong {
    display: block;
    color: var(--charcoal);
}

.testimonial span {
    font-size: 0.85rem;
    color: #6b6b6b;
}

/* CTA FINAL */
.cta-final {
    padding: 7rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
}

.cta-final p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* FOOTER */
.footer {
    background-color: #141414;
    color: #d8d4cd;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

.footer-content a {
    color: #d8d4cd;
}

.footer-content a:hover {
    color: var(--gold);
}

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

.stats-section,
.features-section,
.whatsapp-section,
.process-section,
.pricing-section,
.testimonials-section,
.faq-section,
.cta-final,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .features-grid,
    .whatsapp-grid,
    .process-grid,
    .pricing-grid,
    .testimonials-grid,
    .faq-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero-media {
        order: 2;
        justify-content: flex-start;
    }

    .blog-hero-media img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }

    .hero {
        padding: 5rem 0;
    }

    .navbar-menu {
        position: absolute;
        top: 78px;
        right: 24px;
        left: 24px;
        background: var(--white);
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        display: none;
    }

    .navbar-menu.is-open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .navbar-cta {
        display: none;
    }

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

    .btn {
        width: 100%;
    }

    .features-grid,
    .whatsapp-grid,
    .process-grid,
    .pricing-grid,
    .testimonials-grid,
    .stats-grid,
    .faq-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .post-content,
    .blog-post-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-proof {
        flex-direction: column;
        align-items: center;
    }

    .post-content,
    .blog-post-cta {
        padding: 1.6rem;
    }
}
