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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #0f172a;
    line-height: 1.5;
    transition: color 0.2s, background-color 0.2s;
}

.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.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

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

.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.875rem;
    color: #64748b;
    border-left: 1px solid #cbd5e1;
    margin-left: 1rem;
    padding-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

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

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

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

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.btn-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

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

.btn-primary {
    padding: 0.625rem 1.25rem;
    background-color:  var(--color-orange);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: opacity 0.3s;
    box-shadow: 0 10px 15px -3px rgba(217, 93, 57, 0.2);
}

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

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

.hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 8rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.highlight {
    color:  var(--color-orange);
    font-style: italic;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

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

.btn-primary-large:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f8fafc;
}

.hero-social-proof {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatars img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

/* ========================================
   DASHBOARD MOCKUP
   ======================================== */

.hero-visual {
    position: relative;
}

.glow-effect {
    position: absolute;
    inset: -1rem;
    background-color: rgba(217, 93, 57, 0.2);
    filter: blur(80px);
    border-radius: 50%;
}

.dashboard-mockup {
    position: relative;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.mockup-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red {
    background-color: #f87171;
}

.dot-yellow {
    background-color: #fbbf24;
}

.dot-green {
    background-color: #4ade80;
}

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.mockup-body {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 1rem;
    background-color: #f8fafc;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-primary {
    color: #D95D39;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    padding: 1rem;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity-done {
    opacity: 0.6;
}

.activity-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(217, 93, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D95D39;
}

.activity-icon-gray {
    background-color: #f1f5f9;
    color: #64748b;
}

.activity-title {
    font-size: 0.875rem;
    font-weight: 700;
}

.activity-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

.badge-success {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    background-color: #dcfce7;
    color: #15803d;
    border-radius: 0.25rem;
}

.check-icon {
    color: #94a3b8;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

.section-subtitle {
    color: var(--color-orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #475569;
    max-width: 42rem;
    margin: 0 auto;
}

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

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

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

.feature-card {
    padding: 2rem;
    background-color: white;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(217, 93, 57, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D95D39;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon .material-symbols-outlined {
    font-size: 1.875rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #475569;
    line-height: 1.75;
}

/* ========================================
   SPACES SECTION
   ======================================== */

.spaces {
    padding: 6rem 0;
}

.spaces-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .spaces-grid {
        flex-direction: row;
    }
}

.spaces-content {
    flex: 1;
}

.spaces-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.spaces-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
}

.spaces-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.space-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.space-feature .material-symbols-outlined {
    color: var(--color-orange);
}

.space-feature span:last-child {
    font-weight: 500;
    color: #1e293b;
}

.btn-outline {
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    background: white;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.spaces-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-offset {
    padding-top: 2rem;
}

.spaces-gallery img {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.spaces-gallery img.gallery-tall {
    height: 16rem;
}

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

.cta {
    padding: 6rem 1rem;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-card {
    background-color: #0f172a;
    border-radius: 3rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-glow {
    position: absolute;
    width: 16rem;
    height: 16rem;
    filter: blur(100px);
}

.cta-glow-1 {
    top: 0;
    right: 0;
    background-color: rgba(217, 93, 57, 0.2);
    margin-right: -8rem;
    margin-top: -8rem;
}

.cta-glow-2 {
    bottom: 0;
    left: 0;
    background-color: rgba(217, 93, 57, 0.1);
    margin-left: -8rem;
    margin-bottom: -8rem;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    line-height: 1.3;
}

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

.cta-description {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

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

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

.btn-cta {
    padding: 1.25rem 2.5rem;
    background-color: var(--color-orange);
    color: white;
    font-weight: 900;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 25px 50px -12px rgba(217, 93, 57, 0.4);
}

.btn-cta:hover {
    transform: scale(1.05);
}

.btn-cta-secondary {
    padding: 1.25rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    backdrop-filter: blur(4px);
}

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

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

.footer {
    background-color: white;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid #f1f5f9;
}

.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-tagline {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.75;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D95D39;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

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

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

.footer-social a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #D95D39;
}