/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* RE:BELLE Pastel Gray System */
    --pastel-gray: #CEC7C1;
    --pastel-gray-light: #E7E2DE;
    --pastel-gray-dark: #B8B1AB;

    --ink: #1A1A1A;
    --ink-soft: rgba(26, 26, 26, 0.78);
    --white-soft: rgba(255, 255, 255, 0.86);

    /* Map legacy tokens */
    --color-primary: var(--ink);
    --color-secondary: #333333;
    --color-text: var(--ink);
    --color-text-light: rgba(26, 26, 26, 0.70);
    --color-bg: var(--pastel-gray);
    --color-bg-light: var(--pastel-gray-light);
    --color-bg-dark: var(--ink);
    --color-border: rgba(26, 26, 26, 0.12);

    --radius: 18px;
    --shadow: 0 12px 36px rgba(0, 0, 0, 0.12);

    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}


body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white-soft);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

 .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ink);
}


.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition);
}

 .nav-menu a:hover {
    color: #111111;
}


.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
 .btn-primary {
    background: var(--ink);
    color: var(--pastel-gray);
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid rgba(26, 26, 26, 0.18);
    cursor: pointer;
}


 .btn-primary:hover {
    background: #111111;
    transform: translateY(-2px);
}


 .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid rgba(26, 26, 26, 0.85);
    transition: var(--transition);
    display: inline-block;
}


 .btn-secondary:hover {
    background: rgba(26, 26, 26, 0.92);
    color: var(--pastel-gray);
}


.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
 .hero {
    /* Exact combo: visible image + Pastel Gray veil */
    background:
        linear-gradient(rgba(206, 199, 193, 0.65), rgba(206, 199, 193, 0.65)),
        url('../images/hero-bg.webp') center/cover no-repeat;
    color: var(--ink);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}


 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.10);
    z-index: 0;
}


.hero .container {
    position: relative;
    z-index: 1;
}

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

 .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 26, 26, 0.12);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
}


.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

 .hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--ink-soft);
}


 .hero-highlight {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(26, 26, 26, 0.12);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 40px;
}


 .highlight-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ink);
}


.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text);
    line-height: 1.3;
}



/* RE:BELLE Card System (used across sections) */
.problem-card,
.solution-card,
.usp-card,
.pricing-card,
.faq-item,
.contact-card {
    background: var(--white-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}
/* Problem Section */
.problem-section {
    background: var(--color-bg-light);
}

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

 .problem-card {
    padding: 40px 30px;
    text-align: center;
}


 .problem-icon {
    width: 80px;
    height: 80px;
    background: var(--ink);
    color: var(--pastel-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border-radius: 999px;
}


.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--color-text);
}

.problem-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Solution Section */
 .solution-section {
    /* Exact combo: subtle photo texture + Pastel Gray veil */
    background:
        linear-gradient(rgba(206, 199, 193, 0.82), rgba(206, 199, 193, 0.82)),
        url('../images/features-bg.webp') center/cover no-repeat;
    position: relative;
}


.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

 .solution-card {
    padding: 40px;
}


.solution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

 .solution-header i {
    font-size: 2.5rem;
    color: var(--ink);
}


.solution-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-text);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--color-text);
}

 .feature-list i {
    color: var(--ink);
    margin-top: 4px;
    flex-shrink: 0;
}


/* USPs Section */
.usps-section {
    background: var(--color-bg-light);
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

 .usp-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}


 .usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
}


 .usp-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 15px;
}


 .usp-icon {
    width: 60px;
    height: 60px;
    background: var(--ink);
    color: var(--pastel-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    border-radius: 999px;
}


.usp-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--color-text);
}

.usp-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ROI Section */
.roi-section {
    background: var(--color-bg);
}

.roi-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-soft);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.roi-table th {
    background: var(--color-bg-dark);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.roi-table td {
    padding: 20px;
    border-top: 2px solid var(--color-border);
    font-size: 1.1rem;
    color: var(--color-text);
}

.roi-table .highlight-row td {
    background: rgba(26, 26, 26, 0.06);
    font-weight: 800;
    color: var(--ink);
}

.roi-table .solution-name {
    font-weight: 700;
    color: var(--color-text);
}

.roi-table .total {
    font-size: 1.5rem;
    font-weight: 900;
}

.roi-highlight {
    background: var(--ink);
    color: var(--pastel-gray);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.roi-highlight p {
    font-size: 2rem;
    font-weight: 900;
}

/* Pricing Section */
.pricing-section {
    background: var(--color-bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}


.pricing-header {
    background: var(--color-bg-dark);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.optional-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-body {
    padding: 30px;
}

.price-box {
    background: var(--color-primary);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
}

.price-label {
    font-size: 1rem;
    margin-top: 8px;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text);
}

.pricing-features i {
    color: var(--ink);
    margin-top: 4px;
    flex-shrink: 0;
}


/* Setup Section */
.setup-section {
    background: var(--color-bg);
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.setup-card {
    background: var(--white-soft);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(8px);
}


.setup-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 20px;
}

.setup-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.setup-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-text);
}

.setup-card ul {
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
}

.setup-card li {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.setup-time {
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 900;
    display: inline-block;
}

.setup-final {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--color-text);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-highlight {
    background: var(--ink);
    color: var(--pastel-gray);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.contact-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white-soft);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: 40px;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-copyright {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .problem-grid,
    .usps-grid,
    .setup-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.problem-card,
.solution-card,
.usp-card,
.pricing-card,
.setup-card {
    animation: fadeInUp 0.6s ease-out;
}
