/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #aa4126;
    --secondary: #2C2C2C;
    --accent: #C4B5A0;
    --light: #FAF9F7;
    --cream: #F5F3F0;
    --white: #FFFFFF;
    --text: #3A3A3A;
    --text-light: #8A8A8A;
    --border: #EBEBEB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 13px;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 1.5px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

/* Pricing Hero Section */
.pricing-hero {
    padding: 140px 0 80px;
    background: var(--light);
    text-align: center;
}

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

.hero-title {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Pricing Section */
.pricing-section {
    padding: 90px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

/* Badges */
.badge-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 12px;
}

.badge-value {
    background-color: #9DAD7F;
    color: var(--white);
}

.badge-popular {
    background-color: var(--primary);
    color: var(--white);
}

.badge-premium {
    background-color: var(--secondary);
    color: var(--white);
}

/* Card Content */
.card-header {
    margin-bottom: 24px;
    padding-top: 30px;
}

.plan-name {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.plan-tagline {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
}

.card-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.card-price.small {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.price-amount {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.price-period {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
}

.price-options {
    margin-bottom: 24px;
}

.price-option {
    padding: 16px 0;
}

.price-option .card-price {
    margin-bottom: 8px;
    padding-bottom: 0;
    border-bottom: none;
}

.price-option .price-amount {
    font-size: 28px;
}

.divider {
    height: 1px;
    background-color: var(--border);
    margin: 8px 0;
}

.savings {
    font-size: 11px;
    color: #9DAD7F;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.card-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 11px;
}

.card-features ul {
    list-style: none;
}

.card-features li {
    font-size: 12px;
    color: var(--text);
    padding-left: 18px;
    margin-bottom: 8px;
    position: relative;
    font-weight: 300;
}

.card-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 500;
}

.card-info {
    margin-bottom: 24px;
}

.info-text {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

/* Buttons */
.btn-purchase {
    width: 100%;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.btn-purchase:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

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

.btn-purchase.primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Comparison Section */
.comparison-section {
    padding: 90px 0;
    background-color: var(--light);
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 1px solid var(--border);
    min-width: 700px;
}

.comparison-table thead {
    background-color: var(--cream);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.comparison-table th.feature-column {
    text-align: left;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comparison-table th.highlight {
    background-color: var(--primary);
    color: var(--white);
}

.comparison-table td {
    padding: 16px;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
    font-weight: 300;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 400;
}

.comparison-table tbody tr:hover {
    background-color: var(--light);
}

.check {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

.cross {
    color: var(--text-light);
    font-size: 16px;
}

.table-note {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background-color: var(--white);
    display: block;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    padding: 28px;
    background-color: var(--light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.faq-item p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 72px 0;
    background: #aa4126;
    text-align: center;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 400;
}

.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.btn-primary {
    padding: 13px 32px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--white);
    background-color: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

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

/* Footer */
.footer {
    background-color: #ffffff;
    color: #aa4126;
    padding: 56px 0 24px;
}

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

.footer-section h4 {
    color: #aa4126;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.footer-section p,
.footer-section ul {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #aa4126;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 32px;
        gap: 28px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.08);
        align-items: flex-start;
    }

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

    .pricing-hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

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

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

    .comparison-table {
        font-size: 11px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .pricing-section,
    .comparison-section,
    .faq-section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 10px;
    }
}

p.cta-description {
    text-align: center;
    color: black;
}

button#check-schedul {
    margin: auto;
    display: block;
    border: 1px solid;
    text-decoration: none;
}

a {
    text-decoration: none;
}

h3.offering-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

button.offering-button {
    width: 100%;
    margin-top: 30px;
    padding: 13px 32px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--white);
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

ul.offering-details {
    padding-left: 20px;
    font-size: 11px;
}