:root {
    /* Brand Colors */
    --starta-coral: #E6695C;
    --clay-beige: #E7D9C0;
    --sage-green: #A2B29F;
    --slate-indigo: #475569; /* 546f96 Light Blue */
    
    /* Extended Colors */
    --primary: var(--starta-coral);
    --secondary: var(--clay-beige);
    --success: var(--sage-green);
    --light-gray: #6B7280;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'DM Serif Display', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--slate-indigo);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--slate-indigo);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* Brand Elements */
.brand-circle {
     display: flex;
     align-items: center;
     justify-content: center;
}

.brand-logo {
     width: 40px;
     height: 40px;
     object-fit: contain;
     object-position: center;
     border-radius: 50%;
     box-shadow: var(--shadow-sm);
}

/* Ensure logo looks good on all devices */
@media (max-width: 768px) {
 .brand-circle {
   width: 36px;
   height: 36px;
   padding: 3px;
 }
}

@media (max-width: 576px) {
 .brand-circle {
   width: 32px;
   height: 32px;
   padding: 2px;
 }
 
 .brand-text {
   font-size: 1.35rem;
 }
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar-brand {
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    color: var(--slate-indigo) !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--starta-coral) !important;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--starta-coral), #d45a4d);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d45a4d, var(--starta-coral));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--starta-coral);
    color: var(--starta-coral);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--starta-coral);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid var(--light-gray);
    color: var(--light-gray);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--light-gray);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, var(--clay-beige) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 120%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A2B29F' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    padding-top: 2rem;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--starta-coral);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 20%;
    left: -15%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 85, 105, 0.1);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--starta-coral), #d45a4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Video Section */
.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(230, 105, 92, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 2rem;
}

.play-button:hover {
    background: var(--starta-coral);
    transform: translate(-50%, -50%) scale(1.1);
}

.story-content h2 {
    color: var(--slate-indigo);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 85, 105, 0.1);
}

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

.pricing-card-featured {
    border: 2px solid var(--starta-coral);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--starta-coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--starta-coral);
    font-family: var(--font-heading);
}

.price-period {
    font-size: 1rem;
    color: var(--light-gray);
}

.price-description {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--light-gray);
}

/* Who It's For Cards */
.bg-sage {
    background: linear-gradient(135deg, var(--sage-green), #8da089);
}

.who-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.who-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.who-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.who-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.who-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(71, 85, 105, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.testimonial-rating {
    color: #fbbf24;
}

/* FAQ */
.accordion-item {
    border: 1px solid rgba(71, 85, 105, 0.1);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--slate-indigo);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--clay-beige);
    color: var(--slate-indigo);
    box-shadow: none;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Background Utilities */
.bg-light {
    background-color: #f8fafc !important;
}

.bg-slate {
    background: var(--slate-indigo);
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.7);
}

.text-primary {
    color: var(--starta-coral) !important;
}

/* Spacing Utilities */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Footer */
footer h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--starta-coral) !important;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.border-light-gray {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid rgba(71, 85, 105, 0.1);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.form-control {
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(71, 85, 105, 0.2);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--starta-coral);
    box-shadow: 0 0 0 0.2rem rgba(230, 105, 92, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--slate-indigo);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .modal,
    .floating-card {
        display: none !important;
    }
}
/* Hero Video Styles */
.hero-video-container {
 position: relative;
 width: 100%;
 max-width: 642px;
 margin: 0 auto;
}

.hero-video {
 width: 100%;
 height: auto;
 aspect-ratio: 642 / 846;
 object-fit: cover;
 display: block;
}

/* Ensure video maintains proper sizing on all devices */
@media (max-width: 768px) {
 .hero-video-container {
   max-width: 100%;
 }
 
 .hero-video {
   aspect-ratio: 642 / 846;
   max-height: 70vh;
 }
}

@media (max-width: 576px) {
 .hero-video {
   max-height: 60vh;
 }
}

