:root {
    --primary: #5D2E17;
    /* Richer, deeper brown */
    --primary-light: #8B4513;
    --accent: #C5A028;
    /* More sophisticated gold */
    --bg-cream: #f5f1e9;
    --bg-white: #ffffff;
    --text-dark: #2D241E;
    --text-muted: #7A6F66;
    --border: #E8E2D9;
    --shadow-sm: 0 2px 8px rgba(93, 46, 23, 0.04);
    --shadow-md: 0 8px 16px rgba(93, 46, 23, 0.08);
    --shadow-lg: 0 20px 40px rgba(93, 46, 23, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smoother curve */
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
th {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
header {
    background: rgba(249, 247, 242, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(93, 46, 23, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(249, 247, 242, 0.9);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 4rem;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    /* Higher than the drawer */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(93, 46, 23, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(93, 46, 23, 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
    opacity: 0.95;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(197, 160, 40, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(93, 46, 23, 0.03) 0%, transparent 40%);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
    animation: floating 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(93, 46, 23, 0.15);
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Use Cases Section */
.use-cases {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-cream), var(--bg-white));
    border-bottom: 1px solid var(--border);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.use-case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(93, 46, 23, 0.03);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 40, 0.2);
}

.use-case-card i {
    font-size: 2.25rem;
    color: var(--primary);
}

.use-case-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Visual Demo */
.visual-demo {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 69, 19, 0.05);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.showcase-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--accent);
}

.showcase-image {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.showcase-img {
    width: 45%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    /* stronger shadow for depth */
    transition: var(--transition);
}

.showcase-img:hover {
    transform: scale(1.02) translateY(-5px);
}

.showcase-img:last-child {
    margin-top: 10px;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 24px;
    font-size: 1.25rem;
}

.step-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
}


/* About Story Section */
.about-story {
    padding: 120px 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 2.75rem;
    margin-bottom: 32px;
    color: var(--primary);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary);
    font-weight: 700;
}

.story-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(93, 46, 23, 0.1);
}

.premium-highlight {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    /* keep this scale */
    border: none;
    box-shadow: 0 20px 40px rgba(93, 46, 23, 0.2);
}

.price-card.featured .price-tag,
.price-card.featured h3,
.price-card.featured p {
    color: white;
}

/* Management Service (Alternative Look) */
.management-service {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.management-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: var(--bg-cream);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-lg);
    gap: 30px;
    transition: var(--transition);
}

.management-card:hover {
    background: var(--bg-white);
    border-style: solid;
    box-shadow: var(--shadow-md);
}

.management-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.management-info p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

.management-price {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.price-tag.smaller {
    font-size: 1.75rem;
    margin: 0;
}

@media (max-width: 768px) {
    .management-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .management-price {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .management-price .btn {
        width: 100%;
    }
}

.price-card.featured .btn-primary {
    background: white;
    color: var(--primary);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 24px 0;
    font-family: 'Outfit';
    color: var(--primary);
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
}

.price-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(139, 69, 19, 0.05), rgba(139, 69, 19, 0.02));
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    max-width: 1000px;
    /* slightly wider */
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(93, 46, 23, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom-end {
    background-color: #0f0f0f;
    width: 100%;
    text-align: center;
    padding: 2px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-end img {
    height: 80px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-bottom-end img:hover {
    opacity: 1;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-auto {
    width: auto;
}

.h-10 {
    height: 40px;
}


/* Responsive */
@media (max-width: 992px) {
    .logo img {
        height: 3rem;
    }

    .footer-bottom-end img {
        height: 60px;
    }

    .menu-toggle {
        display: block !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        background-color: var(--bg-cream);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2000;
        /* Higher than header to be sure */
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.75rem;
        font-weight: 600;
        width: auto;
        /* don't take full width to avoid weird clicks */
        text-align: center;
        padding: 10px;
        color: var(--primary);
    }

    .nav-cta {
        display: none !important;
    }

    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        flex-direction: column;
        align-items: center;
    }

    .showcase-img {
        width: 100%;
        margin: 0 !important;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .use-case-card {
        padding: 24px 12px;
    }

    .use-case-card i {
        font-size: 1.75rem;
    }

    .use-case-card span {
        font-size: 0.95rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}