:root {
    /* Colors */
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-red: #fd0603;
    --accent-purple: #ad47e3;
    --accent-blue: #0478fe;
    --accent-yellow: #fde100;

    /* Fonts */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: clamp(0.5rem, 2vw, 1rem);
    --spacing-md: clamp(1rem, 3vw, 2rem);
    --spacing-lg: clamp(2rem, 5vw, 4rem);
    --spacing-xl: clamp(4rem, 8vw, 8rem);

    /* Styling */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: var(--spacing-md) 5%;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-align: center;
}

.nav-left ul {
    list-style: none;
    display: none; /* Mobile hidden */
}

.nav-left li {
    display: inline-block;
}

.nav-left a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-left a:hover {
    color: var(--accent-blue);
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-sm);
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.desktop-menu a:hover {
    color: var(--accent-blue);
}

@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }
}

.account-link {
    display: none; /* Mobile hidden */
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.account-link:hover {
    color: var(--accent-blue);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Nav Menu Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #222; /* Dark background to make light violet pop */
    display: flex;
    flex-direction: column; /* Allow title to be above list */
    align-items: center;
    justify-content: center;
    transition: right var(--transition-speed) ease;
    z-index: 99;
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu li {
    margin: var(--spacing-md) 0;
}

.nav-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #f7e6ff; /* Light violet from shading */
    transition: color var(--transition-speed);
}

.nav-menu a:hover {
    color: #ffffff;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: clamp(0.8rem, 2.5vw, 1rem) clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #f7e6ff;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.cta-button.primary {
    background-color: #D81159;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(216, 17, 89, 0.4);
}

.cta-button.secondary {
    background-color: var(--accent-purple);
    color: #ffffff;
}

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

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg) 5% var(--spacing-xl);
    min-height: 70vh;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-content-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.8rem);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.hero p {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    margin-bottom: var(--spacing-lg);
    color: #444444;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}



/* Video Section */
.video-section {
    padding: var(--spacing-xl) 5%;
    text-align: center;
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
}

.video-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f4f4f4;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-speed) ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 8px;
}

/* Offer Section */
.offer-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.offer-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.offer-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: var(--spacing-sm);
}

.offer-header h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--text-color);
}

.highlight {
    background-color: #f7e6ff;
    color: #222;
    padding: 2px 12px;
    border-radius: 8px;
    display: inline-block;
    border: 2px solid #222;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 0 #222;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.offer-card {
    background: #fff;
    border: 2px solid #222;
    border-radius: 8px;
    padding: clamp(0.5rem, 1.5vw, 1.2rem);
    text-align: center;
    box-shadow: 5px 5px 0px #222;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    flex: 0 1 260px;
    max-width: 100%;
    margin-right: 5px; /* Compensate for the 5px right box-shadow */
    margin-bottom: 5px; /* Compensate for the 5px bottom box-shadow */
}

.offer-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #222;
}

.offer-icon {
    width: clamp(35px, 4vw, 50px);
    height: clamp(35px, 4vw, 50px);
    margin-bottom: clamp(0.2rem, 1vw, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7e6ff;
    border-radius: 50%;
    border: 2px solid #222;
}

.offer-icon svg {
    width: clamp(18px, 2vw, 24px);
    height: clamp(18px, 2vw, 24px);
    color: #222;
}

.offer-card h3 {
    font-size: clamp(0.85rem, 1.2vw, 1.2rem);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.offer-card p {
    font-size: clamp(0.65rem, 0.9vw, 0.85rem);
    color: #444;
    line-height: 1.4;
    font-family: var(--font-body);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-header h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--text-color);
}

.highlight-yellow {
    background-color: var(--accent-yellow);
    color: #222;
    padding: 2px 12px;
    border-radius: 8px;
    display: inline-block;
    border: 2px solid #222;
    transform: rotate(2deg);
    box-shadow: 3px 3px 0 #222;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border: 2px solid #222;
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 5px 5px 0px #222;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 450px;
    margin-right: 5px; /* Compensate for the 5px right box-shadow */
    margin-bottom: 5px; /* Compensate for the 5px bottom box-shadow */
}

.testimonial-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #222;
}

.quote-icon {
    margin-bottom: var(--spacing-md);
}

.quote-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-purple);
}

.testimonial-card .quote {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #222;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    font-family: var(--font-body);
    flex-grow: 1;
}

.testimonial-card .author {
    border-top: 2px solid #222;
    padding-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card .author strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #222;
}

.testimonial-card .author span {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-family: var(--font-body);
}

/* Survey Section */
.survey-section {
    padding: var(--spacing-xl) 5%;
    text-align: center;
    background-color: #fafafa;
}

.survey-content {
    max-width: 600px;
    margin: 0 auto;
}

.survey-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: var(--spacing-lg);
}

/* Full Hero Image Styles */
.hero.hero-image-only {
    padding: 0;
    min-height: auto;
    display: block;
    position: sticky;
    top: 0;
    z-index: 1;
}

.full-hero-link {
    display: block;
    width: 100%;
    cursor: pointer;
}

.full-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Standard Page Layouts (Approach, etc.) */
.page-content {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-color);
    min-height: 80vh;
}

.approach-section {
    max-width: 800px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.approach-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-color);
}

.approach-body p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-body);
    text-indent: 2rem;
}

/* Desktop Layout */
@media (min-width: 901px) {
    .header {
        padding: var(--spacing-md) 5%;
        display: flex;
        justify-content: space-between;
    }
    
    .desktop-menu a {
        white-space: nowrap;
    }

    .account-link {
        display: block;
    }

    .hero {
        padding: var(--spacing-xl) 10%;
    }

    .hero h1 {
        font-size: 4rem;
        max-width: 700px;
    }

    .hero p {
        font-size: 1.4rem;
        max-width: 600px;
    }


}
    /* grid removed, flex handles wrapping naturally */

/* Footer */
.footer {
    background-color: #222;
    color: #f4f4f4;
    padding: var(--spacing-lg) 5%;
    text-align: center;
    font-family: var(--font-body);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

.footer-contact a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--accent-yellow);
}

.footer .separator {
    margin: 0 10px;
    color: #666;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #aaa;
}
