/* OmBeOne.Love - White Background Version v3 */

:root {
    /* Brand Colors */
    --primary-blue: #1034A6;
    --emerald-green: #50c878;
    --teal: #0d98ba;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    
    /* Light Background Colors */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F5F5F5;
    --light-blue-gray: #F0F4F8;
    --light-green-tint: rgba(80, 200, 120, 0.08);
    
    /* Text Colors */
    --charcoal: #2C3E3F;
    --dark-gray: #34495E;
    --medium-gray: #666666;
    --light-gray-text: #888888;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

/* Enrollment Form Styles */
.enrollment-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .enrollment-form-container {
        grid-template-columns: 1fr;
    }
}

.course-summary {
    background: var(--light-blue-gray);
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 2rem;
}

.course-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.course-info {
    font-size: 0.95rem;
}

.course-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.course-info li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.enrollment-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-light);
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

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

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
    color: var(--dark-gray);
}

.form-actions {
    background: var(--light-green-tint);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.btn-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Product Page Styles */
.product-showcase {
    text-align: center;
    margin: 3rem 0;
}

.product-image-large img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.product-note {
    background: var(--light-blue-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
}

.product-note p {
    margin: 0;
    color: var(--dark-gray);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-text h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefits-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list h4 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--teal);
    margin: 1.5rem 0 0.75rem 0;
}

.benefits-list ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.steps-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step-item h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.use-case-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--emerald-green);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateX(5px);
}

.use-case-card h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.use-case-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.training-promo-card {
    background: linear-gradient(135deg, var(--light-blue-gray) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--gold-light);
}

.training-promo-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.training-promo-content ul {
    text-align: left;
    margin: 1.5rem auto;
    max-width: 500px;
    padding-left: 1.5rem;
}

.training-promo-content li {
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

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

.specs-column h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-light);
}

.specs-column ul {
    list-style: none;
    padding: 0;
}

.specs-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
    font-size: 0.95rem;
}

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

.specs-column strong {
    color: var(--primary-blue);
}

.applications-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.application-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.application-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.application-item h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.application-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.training-card-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.training-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.training-card-highlight h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.training-feature h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.training-feature p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.training-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.training-price {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-accent);
}

.training-note {
    margin-top: 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

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

.importance-card {
    background: var(--light-blue-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.importance-card h3 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.importance-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.purchase-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.purchase-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.purchase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.purchase-step {
    text-align: center;
}

.step-number-small {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.purchase-step h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.purchase-step p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.purchase-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: white;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

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

.cta-section .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
}

.mobile-nav a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.mobile-nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.mobile-dropdown-content {
    padding-left: 20px;
    display: none;
}

.mobile-dropdown-content.show {
    display: block;
}

.mobile-dropdown-content a {
    font-size: 1rem;
    padding: 12px 0;
    color: var(--medium-gray);
}

.mobile-dropdown-content a:hover {
    color: var(--primary-blue);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.mobile-dropdown-toggle.open::after {
    content: '−';
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    /* Only make btn-primary 100% width if it's NOT in header */
    section .btn-primary,
    .form-actions .btn-primary {
        order: 3;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav a {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
}

/* Remove underline effect from regular nav links, keep dropdown arrows */
.nav a:not(.dropdown > a)::after {
    content: none;
}

.nav .dropdown > a::after {
    content: '▼';
    position: absolute;
    right: 5px;
    bottom: -2px;
    width: auto;
    height: auto;
    font-size: 10px;
    color: var(--charcoal);
    transition: transform 0.3s ease;
}

.nav .dropdown:hover > a::after {
    transform: rotate(180deg);
    width: auto;
}

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

/* Dropdown Menu */
.nav .dropdown {
    position: relative;
}

.nav .dropdown > a {
    padding-right: 25px;
}

.nav .dropdown > a::after {
    content: '▾';
    position: absolute;
    right: 5px;
    bottom: -2px;
    width: auto;
    height: auto;
    font-size: 10px;
    color: var(--charcoal);
    transition: transform 0.3s ease;
}

.nav .dropdown:hover > a::after {
    transform: rotate(180deg);
    width: auto;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--charcoal);
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

/* Section titles in dropdown - bold and highlighted */
.dropdown-menu .dropdown-section-title {
    font-weight: 700;
    color: #1034A6;
    background: #e8f4f8;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border-radius: 5px;
}

/* Sub-items in dropdown - indented */
.dropdown-menu .dropdown-sub-item {
    padding-left: 2rem;
    font-weight: 400;
}

/* Active state for section titles */
.dropdown-menu .dropdown-section-title.active {
    background: #1034A6;
    color: white;
}

/* Span-based section titles (non-clickable) */
.dropdown-menu span.dropdown-section-title {
    display: block;
    font-weight: 700;
    color: #1034A6;
    background: #e8f4f8;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a.active::after {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav .dropdown > a {
        padding-right: 0;
    }

    .nav .dropdown > a::after {
        right: auto;
        bottom: auto;
        position: static;
        margin-left: 5px;
        font-size: 12px;
        color: var(--charcoal);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8f9fa;
        min-width: 100%;
        border-left: 4px solid var(--primary-blue);
        margin-top: 5px;
    }

    .dropdown-menu a {
        padding: 10px 15px 10px 20px;
        font-size: 13px;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 152, 186, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('shutterstock_2708292757.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: var(--space-xxl) var(--space-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: var(--space-xl);
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-label {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Intro Section */
.intro {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

/* How It Works */
.how-it-works {
    padding: var(--space-xxl) var(--space-md);
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--emerald-green);
    margin-bottom: var(--space-md);
}

.step-card h3 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Services */
.services {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.services-cta {
    padding: var(--space-xxl) var(--space-md);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-cta .section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: var(--space-xl);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: var(--space-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--teal);
    background: linear-gradient(135deg, rgba(13, 152, 186, 0.02) 0%, rgba(13, 152, 186, 0.05) 100%);
}

.service-card.premium {
    border: 2px solid var(--emerald-green);
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.02) 0%, rgba(80, 200, 120, 0.05) 100%);
}

.service-badge {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.service-card.premium .service-badge {
    background: var(--emerald-green);
}

.service-icon {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.service-description {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-features {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark-gray);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

.service-cta {
    margin-top: var(--space-lg);
}

/* Quantum Science */
.quantum-science {
    padding: var(--space-xxl) var(--space-md);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
}

.quantum-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

.quantum-text .section-label {
    background: var(--gold);
    color: var(--charcoal);
}

.quantum-text h2 {
    color: var(--white);
}

.quantum-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.quantum-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.quantum-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.quantum-feature h4 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.quantum-feature p {
    font-size: 14px;
    opacity: 0.9;
}

.quantum-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.energy-field {
    position: relative;
    width: 300px;
    height: 300px;
}

.energy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--emerald-green);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(80, 200, 120, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--teal);
    border-radius: 50%;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: spin 8s linear infinite;
}

.ring-2 {
    width: 180px;
    height: 180px;
    animation: spin 12s linear infinite reverse;
}

.ring-3 {
    width: 260px;
    height: 260px;
    animation: spin 16s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.energy-particles-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--emerald-green);
    border-radius: 50%;
    animation: orbit 6s linear infinite;
}

.particle:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.particle:nth-child(2) { top: 50%; right: 0; animation-delay: 1s; }
.particle:nth-child(3) { bottom: 0; left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { top: 50%; left: 0; animation-delay: 3s; }
.particle:nth-child(5) { top: 25%; right: 25%; animation-delay: 4s; }
.particle:nth-child(6) { bottom: 25%; left: 25%; animation-delay: 5s; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

/* Testimonials */
.testimonials {
    padding: var(--space-xxl) var(--space-md);
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--charcoal);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 14px;
}

/* About */
.about {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.about-content { max-width: 100%;
    
    margin: 0 auto;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 15px;
    color: var(--charcoal);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: var(--space-xxl) var(--space-md);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-blue);
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Contact */
.contact {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    margin-top: var(--space-xl);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.contact-item p {
    color: var(--medium-gray);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: var(--space-xl);
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 14px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 152, 186, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: var(--space-xxl) var(--space-md) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.95);
}

.footer-links a {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--white);
}

/* Device Purchase Grid */
.devices-purchase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.device-purchase-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.device-purchase-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.device-purchase-card h3 {
    color: #1034A6;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.device-purchase-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.purchase-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.purchase-buttons .btn-primary,
.purchase-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.purchase-buttons .btn-primary {
    background: linear-gradient(135deg, #1034A6 0%, #0d2878 100%);
    color: white;
    border: none;
}

.purchase-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0d2878 0%, #081d5c 100%);
    box-shadow: 0 4px 15px rgba(16, 52, 166, 0.4);
}

.purchase-buttons .btn-secondary {
    background: white;
    color: #1034A6;
    border: 2px solid #1034A6;
}

.purchase-buttons .btn-secondary:hover {
    background: #1034A6;
    color: white;
}

@media (max-width: 768px) {
    .devices-purchase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Pages Styles */

/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    color: var(--charcoal);
    padding: var(--space-xxl) var(--space-md);
    text-align: center;
}

.products-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.products-hero .hero-title {
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.products-hero .hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--dark-gray);
}

.products-hero .hero-image {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.products-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .products-hero .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .products-hero .hero-content {
        text-align: center;
        flex: 1;
        max-width: 800px;
        margin: 0;
    }

    .products-hero .hero-image {
        flex: 1;
        max-width: 600px;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    color: var(--charcoal);
    padding: var(--space-xxl) var(--space-md);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary-blue);
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Section Header */
.section-header {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.section-header .hero-note {
    font-size: 16px;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Products Section */
.products-section {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
    border: 2px solid var(--teal);
    background: linear-gradient(135deg, rgba(13, 152, 186, 0.02) 0%, rgba(13, 152, 186, 0.05) 100%);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-md);
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--emerald-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.featured-badge {
    background: var(--teal);
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
    min-height: 80px;
}

.product-price {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

/* Size Selector Styles */
.size-selector {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.size-selector label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-selector-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.size-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e9ecef;
}

.size-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.size-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    min-width: 38px;
}

.size-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 45px;
}

.product-quantity {
    flex: 1;
    display: flex;
    justify-content: center;
}

.quantity-selector {
    font-size: 16px;
    font-weight: 600;
    padding: 0.6rem 0.8rem;
    border: 2px solid #ced4da;
    border-radius: 6px;
    background: white;
    color: var(--charcoal);
    cursor: pointer;
    width: 75px;
    height: 40px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231034A6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 18px 18px;
    padding-right: 2.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.quantity-selector:hover {
    border-color: var(--primary-blue);
    background-color: #f8f9fa;
}

.quantity-selector:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(16, 52, 166, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.add-to-cart-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Info Grid (Elixirs) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.size-options,
.size-info {
    margin-bottom: var(--space-md);
}

.size-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
}

.size-select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 152, 186, 0.1);
}

.size-info {
    font-size: 13px;
    color: var(--medium-gray);
    font-style: italic;
}

.product-add-to-cart {
    width: 100%;
    padding: 12px 20px;
}

/* How to Use Section */
.how-to-use {
    padding: var(--space-xxl) var(--space-md);
    background: var(--off-white);
}

.step-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step-item h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.step-item p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Ingredients Section */
.ingredients-section {
    padding: var(--space-xxl) var(--space-md);
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.info-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--off-white);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.info-card h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.info-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--light-blue-gray);
}

.disclaimer-box {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    border-left: 4px solid var(--emerald-green);
}

.disclaimer-box h3 {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Special Product Section */
.special-product-section {
    margin-top: var(--space-xxl);
    padding-top: var(--space-xxl);
    border-top: 2px solid var(--light-gray);
}

.special-product-card {
    background: linear-gradient(135deg, rgba(16, 52, 166, 0.02) 0%, rgba(13, 152, 186, 0.05) 100%);
    border: 2px solid var(--teal);
    border-radius: 16px;
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.special-product-image {
    text-align: center;
}

.special-image {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.special-product-content {
    display: flex;
    flex-direction: column;
}

.special-badge {
    display: inline-block;
    background: var(--emerald-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    width: fit-content;
}

.special-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.special-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
}

.special-features {
    margin-bottom: var(--space-lg);
}

.feature-item {
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark-gray);
    position: relative;
    padding-left: 28px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

.special-price {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.warning-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: var(--space-md);
}

/* Inquire Section */
.inquire-section {
    margin-top: var(--space-xl);
}

.inquire-box {
    background: linear-gradient(135deg, var(--light-blue-gray) 0%, var(--off-white) 100%);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--teal);
}

.inquire-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.inquire-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Pages */
.product-hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    padding: var(--space-xxxl) var(--space-md);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Product Section */
.product-section {
    position: relative;
    margin-bottom: var(--space-xxl);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    background: linear-gradient(135deg, var(--teal) 0%, var(--emerald-green) 100%);
    color: var(--white);
}

.badge.most-popular {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--teal) 100%);
    color: var(--white);
}

.badge.premium {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: var(--primary-blue);
}

.badge.subscription {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.product-card.featured {
    border: 3px solid var(--emerald-green);
}

.product-card.premium {
    border: 3px solid #D4AF37;
}

.product-card.subscription {
    border: 3px solid var(--primary-blue);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: var(--space-xl);
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.product-details > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.product-features {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.pricing-option {
    flex: 1;
    min-width: 200px;
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.pricing-option:hover {
    border-color: var(--primary-blue);
    background: var(--white);
}

.option-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.option-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.pricing-option .btn {
    width: 100%;
    margin-top: var(--space-sm);
}

/* Navigation Active State */
nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .quantum-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Cart Icon and Counter Styles */
.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cart-link:hover {
    background: var(--light-gray);
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-counter {
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Active Navigation Link */
.nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}
/* Products Overview Section */
.products-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-overview .container {
    max-width: 1200px;
}

.products-overview .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .products-overview .container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.overview-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.overview-icon {
    margin-bottom: 1.5rem;
}

.overview-icon svg {
    margin: 0 auto;
}

.overview-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #1034A6;
    margin-bottom: 1rem;
}

.overview-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #343a40;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.overview-features li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #343a40;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.overview-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50c878;
    font-weight: bold;
}

@media (max-width: 768px) {
    .products-overview {
        grid-template-columns: 1fr;
    }
    
    .overview-card {
        padding: 2rem;
    }
}

/* Generational Healing Section Styles */
.generational-section {
    padding: 5rem var(--space-md);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #D4AF37;
}

.generational-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.generational-badge {
    display: inline-block;
    margin: 0 auto 1.5rem auto;
}

.generational-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1034A6;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.generational-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.generational-content {
    max-width: 1000px;
    margin: 0 auto;
}

.generational-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.generational-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.generational-intro strong {
    color: #1034A6;
    font-weight: 600;
}

.why-powerful {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
}

.why-powerful h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1.5rem;
}

.why-powerful-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-powerful-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.why-powerful-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.why-powerful-list li strong {
    color: #1034A6;
    font-weight: 600;
}

.methodology {
    margin: 2.5rem 0;
}

.methodology h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1.5rem;
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.methodology-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

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

.methodology-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1034A6 0%, #0d98ba 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.epigenetic-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 8px;
    border: 1px solid #d1e3f8;
}

.epigenetic-note p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    font-style: italic;
}

.epigenetic-note strong {
    color: #1034A6;
    font-weight: 600;
    font-style: normal;
}

.generational-cta {
    text-align: center;
    margin-top: 3rem;
}

.generational-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #c9a227 100%);
}

/* Pet Sessions Specific Styles */
.gold-highlight-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
}

.gold-highlight-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1.5rem;
}

.gold-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gold-bullet-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.gold-bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
}

.generational-method {
    margin: 2.5rem 0;
}

.generational-method h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1.5rem;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #1034A6;
}

.step-number-small {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1034A6 0%, #0d98ba 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.method-step p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.generational-note {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3e6 0%, #ffe6cc 100%);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.generational-note p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

.generational-note strong {
    color: #1034A6;
    font-weight: 600;
}

/* Pet Image Styling */
.pet-image-container {
    margin: 2rem 0;
    text-align: center;
}

.pet-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

@media (max-width: 768px) {
    .pet-image {
        max-height: 350px;
    }
}

/* About Radionics Page Styles */
.about-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro strong {
    color: #1034A6;
    font-weight: 600;
}

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

.column-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1034A6;
}

.column-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1rem;
}

.column-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

/* Disclaimer Box */
.disclaimer-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Training Page Styles */
.training-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

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

.device-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #1034A6;
}

.device-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1034A6;
    margin-bottom: 1rem;
}

.device-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

/* Pricing Highlight in Training */
.pricing-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 2px solid #dee2e6;
}

.price-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1034A6;
    line-height: 1;
}

.price-note {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* About Content Styling */
.about-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    max-width: 900px;
    margin: 0 auto;
}

.about-content strong {
    color: #1034A6;
    font-weight: 600;
}

.generational-cta .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .generational-title {
        font-size: 2rem;
    }

    .generational-card {
        padding: 2rem;
    }

    .generational-intro,
    .why-powerful-list li,
    .methodology-list li {
        font-size: 0.95rem;
    }
}

/* Mobile dropdown menu for new structure */
.mobile-dropdown-menu {
    padding-left: 20px;
    display: none;
    background: var(--light-gray);
    margin: 10px 0;
    border-radius: 8px;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
    padding: 12px 20px;
    color: var(--medium-gray);
    display: block;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-blue);
    background: var(--white);
}

/* Section titles in mobile dropdown - bold and highlighted */
.mobile-dropdown-menu a.dropdown-section-title {
    font-weight: 700;
    color: #1034A6;
    background: #e8f4f8;
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 5px;
}

/* Span-based section titles in mobile dropdown - non-clickable */
.mobile-dropdown-menu span.dropdown-section-title {
    display: block;
    font-weight: 700;
    color: #1034A6;
    background: #e8f4f8;
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

/* Sub-items in mobile dropdown - indented */
.mobile-dropdown-menu a.dropdown-sub-item {
    padding-left: 40px;
    font-weight: 400;
}

/* Active state for section titles in mobile */
.mobile-dropdown-menu a.dropdown-section-title.active {
    background: #1034A6;
    color: white;
}

/* Mobile dropdown arrow */
.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Mobile nav list items */
.mobile-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Mobile nav content padding */
.mobile-nav-content {
    padding: 80px 40px 40px;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile nav base styles */
.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--primary-blue);
}

/* Logo Styles */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Header Content Container */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container Class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
}

/* Desktop Nav - Hide on Mobile */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Nav - Hide on Desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-xxl) var(--space-lg);
    margin-bottom: var(--space-xl);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    padding: var(--space-lg);
}

.section-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-gray);
    padding: var(--space-xl) var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: center;
}

.benefits-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: var(--space-md);
}

.benefit-item h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.benefit-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Usage Section */
.usage-section {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

.usage-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-xl);
}

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

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    text-align: left;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: var(--space-lg);
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

/* Contact Section */
.contact-section {
    background: var(--light-gray);
    padding: var(--space-xl) var(--space-lg);
    margin: var(--space-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-top: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--teal);
    margin-right: var(--space-md);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.contact-item a,
.contact-item p {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--space-xl) var(--space-lg) var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto var(--space-xl);
}

.footer-section h3 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-section p {
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--teal);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-intro h2,
    .benefits-section h2,
    .usage-section h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        padding: 0 var(--space-md);
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* View Cart button - make smaller on mobile */
    .header-content .btn-primary,
    .site-header .btn-primary {
        padding: 8px 16px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* Mobile menu button - ensure it shows */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Desktop nav - hide on mobile */
    .nav {
        display: none !important;
    }
    
    /* Mobile nav - show on mobile */
    .mobile-nav {
        display: block !important;
    }
    
    /* Fix container width issues */
    .container {
        padding: 0 var(--space-sm);
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix section widths */
    section {
        padding: var(--space-md) 0;
    }
    
    /* Fix service cards and grids */
    .services-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-md) !important;
        padding: 0 var(--space-xs);
    }
    
    /* Fix three-column sections */
    .three-column-section {
        display: block !important;
    }
    
    .three-column-section > div {
        width: 100% !important;
        margin-bottom: var(--space-md) !important;
    }
    
    /* Fix hero sections */
    .products-hero,
    .hero-section {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    /* Fix section headers */
    .section-header {
        padding: var(--space-md) var(--space-xs);
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    /* Fix footer */
    .footer-content {
        flex-direction: column !important;
        gap: var(--space-md) !important;
    }
    
    .footer-links {
        width: 100% !important;
    }
}

/* FORCE mobile menu button to show - override everything */
@media (max-width: 768px) {
    .site-header .mobile-menu-btn,
    .header .mobile-menu-btn,
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        width: 30px !important;
        height: 25px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 10000 !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* FORCE desktop nav to hide */
    .site-header .nav,
    .header .nav,
    .nav {
        display: none !important;
    }
    
    /* FORCE mobile nav to show when active */
    .site-header .mobile-nav.active,
    .header .mobile-nav.active,
    .mobile-nav.active {
        display: block !important;
    }
}

/* Mobile dropdown menu - FORCE to show when active */
@media (max-width: 768px) {
    .mobile-dropdown-menu {
        display: none !important;
        padding-left: 20px;
        background: var(--light-gray);
        margin: 10px 0;
        border-radius: 8px;
    }
    
    .mobile-dropdown-menu.show {
        display: block !important;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-dropdown-menu a {
        font-size: 1rem;
        padding: 12px 20px;
        color: var(--medium-gray);
        display: block;
        text-decoration: none;
    }
    
    .mobile-dropdown-menu a:hover {
        color: var(--primary-blue);
        background: var(--white);
    }
    
    .dropdown-arrow {
        font-size: 0.8rem;
        margin-left: 5px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    /* Rotate arrow when dropdown is open */
    .mobile-dropdown-menu.show + .dropdown-arrow,
    .mobile-dropdown-menu.show ~ .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Make sure mobile nav content is scrollable */
.mobile-nav {
    overflow-y: auto;
    max-height: 100vh;
}

.mobile-nav-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-content ul li {
    margin: 0;
}

.mobile-nav-content ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-gray);
}

/* Compact Steps Grid - 4 Columns */
.steps-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-compact {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--primary-blue);
}

.step-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number-compact {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 10px rgba(0, 137, 207, 0.3);
}

.step-compact h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.step-compact p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Modern Comparison Wrapper */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: center;
}

.comparison-image {
    text-align: center;
}

.comparison-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.comparison-content {
    display: flex;
    flex-direction: column;
}

.comparison-table-modern {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table-modern table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-modern thead {
    background: linear-gradient(135deg, var(--primary-blue), #2c3e50);
}

.comparison-table-modern th {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table-modern th.uqi-col {
    background: rgba(255, 215, 0, 0.2);
}

.comparison-table-modern th.se5-col {
    background: rgba(255, 215, 0, 0.15);
}

.comparison-table-modern tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.comparison-table-modern tbody tr:last-child {
    border-bottom: none;
}

.comparison-table-modern tbody tr:hover {
    background-color: rgba(0, 137, 207, 0.05);
}

.comparison-table-modern td {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.comparison-table-modern td.feature-name {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--primary-blue);
    border-right: 2px solid var(--emerald-green);
    min-width: 140px;
}

.comparison-table-modern td:nth-child(2),
.comparison-table-modern td:nth-child(3) {
    color: var(--dark-gray);
}

/* Mobile Responsive for Compact Steps */
@media (max-width: 768px) {
    .steps-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .step-compact {
        padding: 1.25rem;
    }

    .step-number-compact {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-compact h4 {
        font-size: 1rem;
    }

    .step-compact p {
        font-size: 0.85rem;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-image {
        order: -1;
    }

    .comparison-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .comparison-table-modern {
        font-size: 0.85rem;
    }

    .comparison-table-modern th,
    .comparison-table-modern td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-table-modern td.feature-name {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .steps-grid-compact {
        grid-template-columns: 1fr;
    }
}

/* Affiliate Link Small */
.affiliate-link-small {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.affiliate-link-small a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.affiliate-link-small a:hover {
    color: var(--emerald-green);
    text-decoration: underline;
}

/* Training Importance Wrapper */
.training-importance-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: start;
}

.training-importance-image {
    text-align: center;
    position: sticky;
    top: 2rem;
}

.training-importance-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.training-importance-content {
    display: flex;
    flex-direction: column;
}

/* Mobile Responsive for Training Importance */
@media (max-width: 768px) {
    .training-importance-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .training-importance-image {
        order: -1;
        position: static;
    }

    .training-importance-image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    .importance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .importance-card {
        padding: 1.25rem;
    }
}

/* Product Showcase with Multiple Images */
.product-showcase {
    text-align: center;
    margin: 3rem 0;
}

.product-image-large {
    margin-bottom: 2rem;
}

.product-image-large img {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.product-image-alt {
    margin-top: 2rem;
}

.product-image-alt img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.product-note {
    background: var(--light-blue-gray);
}

@media (max-width: 768px) {
    .product-image-large img,
    .product-image-alt img {
        max-width: 100%;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d98ba 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.contact-hero .hero-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d98ba 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer .container {
    text-align: center;
}

.site-footer .footer-content {
    padding: 0;
}

.site-footer p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: white;
    line-height: 1.5;
}

/* Contact Form Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-top: 2rem;
}

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

.success-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.success-message p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-buttons .btn-primary {
    background: white;
    color: #059669;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.success-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.success-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.success-buttons .btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Pick Your Path Section Pricing */
.path-pricing-breakdown {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #e0e0e0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
}

.pricing-row span:first-child {
    color: #666;
}

.pricing-row span:last-child {
    font-weight: 600;
    color: #333;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, #1034A6, #50c878);
    margin: 1rem 0;
}

.pricing-row.regular-price {
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.pricing-row.regular-price span:last-child {
    text-decoration: line-through;
}

.pricing-row.bundle-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1034A6;
    padding: 0.75rem 0;
}

.pricing-row.bundle-price span:last-child {
    font-size: 1.4rem;
}

.pricing-savings {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #50c878;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .path-pricing-breakdown {
        padding: 1rem;
    }
    
    .pricing-row {
        font-size: 0.85rem;
    }
    
    .pricing-row.bundle-price {
        font-size: 1.1rem;
    }
    
    .pricing-row.bundle-price span:last-child {
        font-size: 1.2rem;
    }
}
