/* GrantStreams Design System — Website
   Shared tokens + marketing-specific styles */

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

:root {
    /* Primary palette */
    --primary: #3B6B9C;
    --primary-light: #5A8DBF;
    --primary-pale: #E3EDF7;
    --primary-wash: #F0F5FA;

    /* Teal palette */
    --teal: #5BA89E;
    --teal-light: #8CC5BD;
    --teal-pale: #E8F4F2;

    /* Deep blues */
    --deep: #1E3A5C;
    --deep-ink: #0F2137;

    /* Glass */
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.35);

    /* Semantic */
    --success: #2D8E6F;
    --warning: #C4841D;
    --error: #C4463A;

    /* Text */
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;

    /* Surfaces */
    --bg-light: #f5f7fa;
    --border-light: #e5e7eb;

    /* Legacy aliases */
    --primary-blue: var(--primary);
    --light-teal: var(--teal-light);
    --light-blue: var(--primary-pale);
    --dark-blue: var(--deep);
    --gold: #d4af37;
}

body {
    font-family: 'Host Grotesk', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

.serif {
    font-family: 'Host Grotesk', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.3;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--deep);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 3px solid var(--teal);
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Host Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--teal);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--deep);
}

/* Hero Section */
.hero {
    padding: 160px 0 10px;
    background:
        radial-gradient(ellipse 700px 500px at 15% 40%, var(--teal-pale) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 20%, var(--primary-pale) 0%, transparent 70%),
        linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hero .badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 strong {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ROI Calculator */
.roi-calculator {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    max-width: 800px;
}

.roi-calculator h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.roi-subtitle {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.roi-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.roi-input-group {
    display: flex;
    flex-direction: column;
}

.roi-input-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.roi-input-group input,
.roi-input-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Host Grotesk', sans-serif;
}

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

.roi-calculate-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Host Grotesk', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.roi-calculate-btn:hover {
    background: var(--deep);
}

.roi-results {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.roi-result-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.roi-result-item:last-child {
    border-bottom: none;
}

.roi-result-label {
    font-weight: 600;
    color: var(--text-dark);
}

.roi-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.roi-highlight {
    background: white;
    margin: 1rem -1rem;
    padding: 1rem 1rem;
    border-radius: 8px;
}

.roi-highlight .roi-result-value {
    color: var(--success);
    font-size: 1.8rem;
}

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

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

.section-badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Challenge Section */
.challenge {
    padding-top: 40px;
    background: #f5f5f5;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-item {
    text-align: left;
}

.problem-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    display: block;
}

.problem-item h3 {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
    color: var(--deep);
    font-weight: 600;
}

.problem-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Solution Section */
.solution {
    padding: 53px 0;
    background: linear-gradient(180deg, var(--teal) 0%, #4a9a8f 100%);
    position: relative;
    overflow: hidden;
}

.solution .section-badge,
.solution .section-title,
.solution .section-subtitle {
    color: var(--deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: left;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep);
    opacity: 0.25;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.service-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--deep);
    font-weight: 600;
}

.service-item p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-item li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--deep);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Process Section */
.process {
    padding: 53px 0;
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--deep);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.timeline-duration {
    display: inline-block;
    background: var(--teal-pale);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
}

/* Testimonials Section */
.testimonials {
    padding: 53px 0;
    background: var(--primary-pale);
}

.testimonials .section-badge,
.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--deep);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    margin-bottom: 2rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid var(--teal-light);
}

.testimonial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: var(--deep);
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-medium);
}

/* FAQ Section */
.faq {
    padding: 53px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Host Grotesk', sans-serif;
    color: var(--deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--primary-wash);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    background: var(--deep-ink);
    color: white;
    text-align: center;
    padding: 53px 0;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--deep);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.75rem;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--deep);
}

/* Footer */
footer {
    background: var(--deep-ink);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

.footer-contact {
    margin-bottom: 1rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0077b5;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
    color: white;
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}

/* AI Features Section */
.ai-features {
    background: linear-gradient(135deg, var(--deep) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 0;
}

.ai-features .section-header h2,
.ai-features .section-header p {
    color: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ai-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.new {
    background: var(--success);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price .period {
    font-size: 1.2rem;
    color: #666;
}

.pricing-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #374151;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pricing-cta:hover {
    background: var(--deep);
    color: white;
}

.pricing-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

/* A la carte Pricing */
.alacarte-section {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.alacarte-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Host Grotesk', sans-serif;
    color: var(--primary);
    transition: all 0.3s ease;
}

.alacarte-toggle:hover {
    background: var(--primary-wash);
}

.alacarte-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.alacarte-toggle.active .alacarte-icon {
    transform: rotate(45deg);
}

.alacarte-content {
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    margin-top: 1rem;
}

.alacarte-content h3 {
    color: var(--primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.alacarte-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.alacarte-item {
    padding: 2rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.alacarte-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 107, 156, 0.1);
}

.alacarte-item h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.alacarte-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.alacarte-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.alacarte-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-medium);
    display: block;
    margin-top: 0.25rem;
}

.alacarte-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.alacarte-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 500px 350px at 20% 50%, var(--teal-pale) 0%, transparent 70%),
        linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Host Grotesk', sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label.consent {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.form-submit-btn {
    width: 100%;
    padding: 1.125rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Host Grotesk', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--deep);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-medium);
    text-align: center;
}

.form-success-message {
    text-align: center;
    padding: 3rem;
}

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

.form-success-message h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success-message p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.form-success-message a {
    color: var(--primary);
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #000;
}

/* A la carte Modal */
.alacarte-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s;
}

.alacarte-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alacarte-modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s;
}

.alacarte-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
}

.alacarte-modal-close:hover {
    color: #000;
}

.alacarte-checkbox-group {
    margin: 1.5rem 0;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
}

.alacarte-checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.alacarte-checkbox-item:hover {
    background: var(--primary-wash);
}

.alacarte-checkbox-item input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.alacarte-checkbox-label {
    cursor: pointer;
    flex: 1;
}

.alacarte-checkbox-label strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Webinar-specific styles */
.webinar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s;
}

.webinar-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.webinar-modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s;
}

.webinar-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
}

.webinar-modal-close:hover {
    color: #000;
}

.webinar-checkbox-group {
    margin: 1.5rem 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
}

.webinar-checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.webinar-checkbox-item:hover {
    background: var(--primary-wash);
}

.webinar-checkbox-item input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.webinar-checkbox-label {
    cursor: pointer;
    flex: 1;
}

.webinar-checkbox-label strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Webinar page specific */
.badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.content-container {
    padding-top: 160px;
    padding-bottom: 4rem;
}

.webinar-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 700;
    color: var(--primary);
    min-width: 120px;
}

.detail-value {
    color: var(--text-dark);
}

.topics {
    margin-bottom: 3rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.topic-card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 107, 156, 0.1);
    transform: translateY(-2px);
}

.topic-month {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.topic-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefits {
    background: linear-gradient(135deg, var(--deep) 0%, var(--primary) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.benefits h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.benefits li:before {
    content: "\2713 ";
    font-weight: bold;
    margin-right: 0.5rem;
}

.benefits li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    background: white;
    border: 3px solid var(--primary);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.member-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-medium);
}

/* ==========================================
   Water Droplet Accents
   Uses images/water-drop-fill.svg as mask shape
   ========================================== */

/* Floating droplets on hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background: var(--teal);
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 180px;
    height: 180px;
    top: 12%;
    right: 8%;
    animation: dropletFloat 8s ease-in-out infinite;
}

.hero::after {
    width: 100px;
    height: 100px;
    background: var(--primary);
    bottom: 18%;
    right: 24%;
    animation: dropletFloat 6s ease-in-out infinite 2s;
}

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

/* Droplet accent before section badges */
.section-badge::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background: var(--teal);
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Droplet list markers on service items (replacing checkmark) */
.service-item li::before {
    content: '' !important;
    width: 10px;
    height: 12px;
    background: var(--deep);
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    position: absolute;
    left: 4px;
    top: 0.75rem;
}

/* Floating droplets on solution section */
.solution {
    position: relative;
    overflow: hidden;
}

.solution::before,
.solution::after {
    content: '';
    position: absolute;
    background: white;
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    opacity: 0.18;
    pointer-events: none;
}

.solution::before {
    width: 140px;
    height: 160px;
    top: 8%;
    left: 5%;
    animation: dropletFloat 10s ease-in-out infinite 1s;
}

.solution::after {
    width: 90px;
    height: 105px;
    bottom: 6%;
    right: 10%;
    animation: dropletFloat 7s ease-in-out infinite 3s;
}

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


/* Floating droplets on CTA section */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
    opacity: 0.12;
    pointer-events: none;
}

.cta::before {
    width: 200px;
    height: 230px;
    background: var(--teal-light);
    top: -40px;
    left: 10%;
    animation: dropletFloat 9s ease-in-out infinite;
}

.cta::after {
    width: 120px;
    height: 140px;
    background: var(--primary-light);
    bottom: -20px;
    right: 15%;
    animation: dropletFloat 7s ease-in-out infinite 4s;
}

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

/* Small droplet accent on testimonial borders */
.testimonial-item {
    position: relative;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 14px;
    background: var(--teal-light);
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='white' d='M24 2.254a1 1 0 0 0-.665 0C22.708 2.813 8 16.094 8 30a16.018 16.018 0 0 0 16 16 16.018 16.018 0 0 0 16-16c0-13.906-14.708-27.188-15.335-27.746Z'/><path fill='%23888' d='M18.4976 40.5273a.9946.9946 0 0 1-.5-.1342A12.0449 12.0449 0 0 1 12 30a1 1 0 0 1 2 0 10.0373 10.0373 0 0 0 5 8.6616 1 1 0 0 1-.5019 1.8657Z'/></svg>");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-mode: luminance;
    mask-mode: luminance;
}

.testimonial-item:last-child::after {
    display: none;
}

/* Droplet float animation */
@keyframes dropletFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .problems-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    nav ul {
        display: none;
    }

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

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

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

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

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

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Hide floating droplets on mobile */
    .hero::before,
    .hero::after,
    .solution::before,
    .solution::after,
    .cta::before,
    .cta::after {
        display: none;
    }
}
