:root {
    --primary-color: #0f172a;
    --secondary-color: #334155;
    --accent-color: #c6a665;
    --accent-hover: #b8953f;
    --bg-light: #ffffff;
    --bg-offset: #f8fafc;
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-section: 5rem;
    --border-radius: 6px;
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-text {
    color: var(--secondary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-icon {
    font-size: 1.4rem;
}

.nav-links a {
    margin-left: 1.8rem;
    font-size: 0.92rem;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, #fff 0%, #f1f5f9 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 166, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.tagline {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(198, 166, 101, 0.3);
    border-radius: 50px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero h1 em {
    color: var(--accent-color);
    font-style: italic;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-group {
    margin-bottom: 2rem;
}

.hero-trust {
    font-size: 0.88rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-section) 0;
}

.section-light {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-dark h2,
.section-dark p {
    color: var(--white);
}

.section-blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4f8 100%);
}

/* ============================================
   GRID & METHOD
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-block h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.02rem;
}

.feature-list li::before {
    content: "—";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.section-image:hover {
    transform: scale(1.03) rotate(0.5deg);
}

/* ============================================
   CARDS (AUDIENCE)
   ============================================ */
.centered-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.centered-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

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

.card {
    padding: 2.2rem;
    border-radius: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-offset);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* ============================================
   PRICING GRID
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlight {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(198, 166, 101, 0.15);
}

.pricing-card.highlight:hover {
    box-shadow: 0 20px 40px rgba(198, 166, 101, 0.2);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.72rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    padding: 2rem;
    background: var(--bg-offset);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-header .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-header .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.card-body {
    padding: 2rem;
}

.card-body .description {
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

.card-body ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.95rem;
}

.card-body ul li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-body .btn {
    margin-top: 1.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    background: var(--bg-offset);
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: #f1f5f9;
}

.faq-item summary h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-item p {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contact-methods {
    margin-top: 2rem;
}

.method {
    margin-bottom: 1.2rem;
}

.method strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.method a,
.method span {
    color: var(--secondary-color);
}

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

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--secondary-color);
}

.form-group label small {
    font-weight: 400;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(198, 166, 101, 0.12);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

.separator {
    margin: 0 0.5rem;
    opacity: 0.4;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.cards-grid .reveal-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.cards-grid .reveal-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.testimonials-grid .reveal-on-scroll:nth-child(2) {
    transition-delay: 0.15s;
}

.testimonials-grid .reveal-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .tagline {
        font-size: 0.72rem;
    }

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

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .content-block h2,
    .centered-header h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        display: flex;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 0;
        padding: 1rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links .btn-outline {
        margin-top: 1rem;
        text-align: center;
    }

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

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

    .btn-text {
        display: block;
        margin-left: 0;
        margin-top: 0.8rem;
    }

    .image-block {
        order: -1;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

    .container {
        padding: 0 1rem;
    }

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