/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
    --primary: var(--color-orange);
    --navy: #0F172A;
    --white: #FFFFFF;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --green-500: #22C55E;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-100);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Briofont;
}

.logo img {
    height: 2rem;
    width: auto;
}


.business-tag {
    display: none;
    font-size: 0.625rem;
    color: var(--slate-400);
    border-left: 1px solid var(--slate-200);
    margin-left: 1rem;
    padding-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (min-width: 768px) {
    .business-tag {
        display: inline;
    }
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

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

.navbar-links a.active {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-link {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

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

.btn-register {
    padding: 0.75rem 1.5rem;
    background-color: var(--navy);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}

.btn-register:hover {
    background-color: var(--slate-800);
}

/* ========================================
   MAIN CONTENT & BACKGROUNDS
   ======================================== */

.main-content {
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, var(--slate-50), var(--white));
    z-index: -10;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -10;
}

.blur-primary {
    top: 10rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(217, 93, 57, 0.05);
}

.blur-navy {
    top: 5rem;
    left: 0;
    width: 18rem;
    height: 18rem;
    background-color: rgba(15, 23, 42, 0.05);
}

/* ========================================
   HERO PRICING SECTION
   ======================================== */

.hero-pricing {
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.hero-header {
    text-align: center;
    margin-bottom: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: rgba(217, 93, 57, 0.1);
    color: var(--primary);
    border-radius: 9999px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-500);
    max-width: 42rem;
    margin: 0 auto;
}

/* ========================================
   PRICING CARDS
   ======================================== */

.pricing-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .pricing-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-container {
        padding: 0 2rem;
    }
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.card-basic {
    background-color: white;
    border: 1px solid var(--slate-200);
}

.card-basic:hover {
    border-color: var(--slate-400);
}

.card-business {
    position: relative;
    background-color: var(--navy);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}
.card-business-hote {
    position: relative;
    background-color: var(--navy);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-business {
        transform: translateY(-1rem);
    }
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
}

.recommended-badge span {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

.card-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-title-white {
    color: white;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
}

.price-white {
    color: white;
}

.price-period {
    color: var(--slate-400);
    font-weight: 700;
}

.card-description {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.card-description-light {
    color: var(--slate-400);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

.features-separator {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.separator-text {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: var(--green-500);
    margin-top: 0.125rem;
}

.check-icon-primary {
    color: var(--primary);
    margin-top: 0.125rem;
}

.feature-text {
    color: var(--slate-700);
    font-weight: 500;
}

.feature-text-white {
    color: white;
}

.btn-card {
    width: 100%;
    padding: 1.25rem 2rem;
    font-weight: 800;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    position: relative;
    z-index: 10;
}

.btn-basic {
    border: 2px solid var(--navy);
    color: var(--navy);
    background-color: white;
}

.btn-basic:hover {
    background-color: var(--navy);
    color: white;
}

.btn-business {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(217, 93, 57, 0.3);
}

.btn-business:hover {
    opacity: 0.9;
}

.card-glow {
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(217, 93, 57, 0.2);
    filter: blur(80px);
    border-radius: 50%;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    padding: 6rem 0;
    background-color: var(--slate-50);
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--slate-500);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-200);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(217, 93, 57, 0.1);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 6rem 0;
}

.cta-wrapper {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-wrapper {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-wrapper {
        padding: 0 2rem;
    }
}

.cta-card {
    background-color: var(--navy);
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-card {
        padding: 5rem;
    }
}

.cta-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(217, 93, 57, 0.1);
    filter: blur(100px);
    margin-right: -8rem;
    margin-top: -8rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    color: var(--slate-400);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--navy);
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cta-primary:hover {
    background-color: var(--slate-100);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    background-color: transparent;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--slate-100);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

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