/* ─── Design System: Typography ───────────────────────────────────────────
   Type Scale (DM Sans)
   --text-xs:    12px   copyright, captions
   --text-sm:    14px   nav links, secondary UI
   --text-base:  16px   body text, buttons, FAQ
   --text-lg:    20px   lead text, subheadlines
   --text-xl:    32px   card headings, service titles
   --text-2xl:   40px   section headings
   --text-3xl:   64px   about heading
   --text-4xl:   80px   display headings
   --text-5xl:  100px   hero H1

   Font Weights
   --weight-regular:   400
   --weight-medium:    500
   --weight-semibold:  600

   Line Heights
   --leading-tight:    1.1   headings
   --leading-normal:   1.6   body
────────────────────────────────────────────────────────────────────────── */
:root {
    --text-xs:    12px;
    --text-sm:    14px;
    --text-base:  16px;
    --text-lg:    20px;
    --text-xl:    32px;
    --text-2xl:   40px;
    --text-3xl:   64px;
    --text-4xl:   80px;
    --text-5xl:  100px;

    --weight-regular:  400;
    --weight-medium:   500;
    --weight-semibold: 600;

    --leading-tight:  1.1;
    --leading-normal: 1.6;
}

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

body {
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: var(--leading-normal);
    color: #2C201F;
    background-color: #DDDACD;
    font-size: var(--text-base);
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Typography Design System */
/* Hero Headings (H1, H2) - 110px */
/* Section Headings (uppercase) - 20px */
/* Body Text - 16px for main content */
/* Small Text - 12px for footer copyright */

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

/* Header Styles */
header {
    background-color: #DDDACD;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    z-index: 100;
}

header.scrolled {
    border-color: #D7D3C2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: none;
    padding: 0;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.nav-close {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2C201F;
    transition: all 0.3s ease;
    border-radius: 10px;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

nav a {
    text-decoration: none;
    color: #2C201F;
    font-size: var(--text-sm);
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.6;
}

nav .btn-start-journey {
    font-size: 14px;
    height: 38px;
    padding: 0;
    max-width: 0;
    overflow: hidden;
    margin-left: -40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, max-width 0.4s ease, padding 0.3s ease, margin-left 0.3s ease, background-color 0.3s ease;
}

nav .btn-start-journey.nav-cta-visible {
    opacity: 1;
    pointer-events: auto;
    max-width: 200px;
    padding: 0 18px;
    margin-left: 0;
}


/* Hero Section */
.hero {
    padding-top: 84px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero .container {
    display: flex;
    flex-direction: column;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-start-journey {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-start-journey {
    background-color: #FFE572;
    color: #2C201F;
    border: none;
}

.btn-start-journey:hover {
    background-color: #ffd940;
}


.hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-regular);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
    color: #2C201F;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.tagline-section h2 {
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}


/* About Section */
.about {
    padding: 80px 0;
    background-color: #D7D3C2;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color: #2C201F;
}

.about-name {
    margin-bottom: 30px;
}

.about-name h4 {
    font-family: "DM Sans", sans-serif;
    font-size: var(--text-3xl);
    font-weight: var(--weight-regular);
    color: #2C201F;
    margin: 0;
    line-height: var(--leading-tight);
}

.about-text p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #2C201F;
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

/* Coaching Section */
.coaching {
    padding: 80px 0;
    background-color: #DDDACD;
}

.coaching h2 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-medium);
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    margin-bottom: 20px;
    text-align: center;
    color: #2C201F;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.coaching-card {
    background-color: #DDDACD;
    border: 1px solid #DDC1A8;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    height: 100%;
}

.coaching-card-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.coaching-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: #2C201F;
    margin: 0;
    line-height: 1.2;
}

.register-button {
    background-color: #2C201F;
    color: #DDDACD;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: opacity 0.3s ease;
    width: fit-content;
    cursor: pointer;
}

.register-button:hover {
    opacity: 0.6;
}

.coaching-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

.coaching-card-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coaching-card p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #2C201F;
    margin: 0;
}

.coaching-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coaching-card li {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #2C201F;
    padding-left: 0;
}

.coaching-card li::before {
    content: "• ";
    color: #2C201F;
    font-weight: bold;
    display: inline;
    margin-right: 8px;
}

.coaching-card-content .register-button {
    margin-top: 8px;
}

/* Testimonials Section */
.testimonials-track {
    overflow-x: scroll;
    position: relative;
    z-index: 1;
    padding-top: 32px;
    padding-bottom: 40px;
    flex-shrink: 0;
    cursor: grab;
    touch-action: pan-x;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonials-track.dragging {
    cursor: grabbing;
}

.testimonials-inner {
    display: flex;
}

.testimonial-card {
    flex: 0 0 460px;
    border-radius: 20px;
    padding: 24px 28px;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #DDDACD;
    border: 1px solid;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 32, 31, 0.1);
}

.testimonial-quote {
    font-size: 13px; /* intentionally below scale — compact card text */
    line-height: var(--leading-normal);
    color: #6D6B5F;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: #98968E;
    margin: 14px 0 0;
}


/* FAQs Section */
.faqs {
    padding: 40px 0;
    background-color: #DDDACD;
}

.faq-card {
    background-color: #DDDACD;
    border: 1px solid #CECF9F;
    padding: 60px;
    border-radius: 20px;
}

.faq-heading {
    font-size: var(--text-2xl);
    font-weight: var(--weight-medium);
    text-align: center;
    margin-bottom: 32px;
    color: #2C201F;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-size: var(--text-base);
    color: #2C201F;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.6;
}

.faq-question span {
    flex: 1;
    font-weight: 400;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

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

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

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

.faq-answer p {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #2C201F;
    margin: 0;
}

/* Services Section */
.services {
    padding: 20px 0 0 0;
    background-color: #DDDACD;
}

.services-headlines {
    margin-bottom: 16px;
}

.services-headline {
    font-size: var(--text-4xl);
    font-weight: var(--weight-regular);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: #2C201F;
    text-align: center;
}

.services-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: calc(var(--word-index, 0) * 0.08s);
}

.services-headlines.word-revealed .word {
    opacity: 1;
    transform: translateY(0);
}

.fall-reveal {
    opacity: 0;
}

.services-subheadline {
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    /* text-transform: uppercase; */
    /* letter-spacing: 0.1em; */
    color: #2C201F;
    margin-bottom: 8px;
    text-align: center;
    max-width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 1.2s;
}

.services-headlines.word-revealed + .services-subheadline {
    opacity: 1;
    transform: translateY(0);
}

.services-physics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 0;
}

#services-canvas {
    display: block;
    width: 100%;
    height: 440px;
}

.service-card {
    background-color: #9BA8BB;
    padding: 50px 60px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    gap: 12px;
}

.service-card:nth-child(1) {
    background-color: #9BA8BB;
    min-height: 160px;
}

.service-card:nth-child(2) {
    background-color: #DDC1A8;
    min-height: 200px;
    margin-left: 130px;
    width: calc(100% - 130px);
}

.service-card:nth-child(3) {
    background-color: #CECF9F;
    min-height: 140px;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-title {
    font-family: "DM Sans", sans-serif;
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: #2C201F;
    margin: 0;
    line-height: 1.2;
}

.service-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #2C201F;
    margin: 0;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: #DDDACD;
    padding: 32px 0 24px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-left h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2C201F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2C201F;
}

.social-links a {
    display: flex;
    align-items: center;
    color: #2C201F;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.6;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.footer-nav a {
    color: #2C201F;
    text-decoration: none;
    font-size: var(--text-base);
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 -20px;
}

.logo-highlight-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.logo-highlight-bg {
    position: absolute;
    top: 15%;
    left: 0;
    width: 0;
    height: 70%;
    background-color: #FFE572;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-highlight-container:hover .logo-highlight-bg {
    width: 100%;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: #2C201F;
    text-align: center;
    align-self: center;
}

.footer-bottom p a {
    color: #2C201F;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom p a:hover {
    opacity: 0.6;
}

/* Commitment CTA Section */
.commitment-cta {
    padding: 40px 0;
    background-color: #DDDACD;
}

.commitment-cta-card {
    background-color: #CAC6B5;
    border-radius: 20px;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.commitment-cta-text h2 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-medium);
    line-height: var(--leading-tight);
    color: #2C201F;
    margin: 0 0 8px;
}

.commitment-cta-text p {
    font-size: var(--text-base);
    color: #2C201F;
    margin: 0;
    opacity: 0.7;
}

.commitment-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    background-color: #2C201F;
    color: #DDDACD;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.commitment-cta-btn:hover {
    opacity: 0.6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background-color: #2C201F;
    color: #DDDACD;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #2C201F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Tally Form Modal */
.tally-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.tally-modal.active {
    display: flex;
}

.tally-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 32, 31, 0.5);
    cursor: pointer;
}

.tally-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
}

.tally-modal-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.tally-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2001;
    width: 36px;
    height: 36px;
    background: #2C201F;
    color: #DDDACD;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.tally-modal-close:hover {
    opacity: 0.7;
}

/* Testimonial Expand Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.testimonial-modal.active {
    display: flex;
}

.testimonial-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 32, 31, 0.5);
    cursor: pointer;
}

.testimonial-modal-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #DDDACD;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--testimonial-border-color, #DDC1A8);
    animation: testimonial-modal-in 0.25s ease;
}

.testimonial-modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 48px);
    padding: 48px 40px 40px;
}

@keyframes testimonial-modal-in {
    from { opacity: 0; transform: scale(0.97) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.testimonial-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #2C201F;
    color: #DDDACD;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.testimonial-modal-close:hover {
    opacity: 0.7;
}

.testimonial-modal-quote {
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: #4A4440;
    margin: 0 0 24px;
}

.testimonial-modal-quote p {
    margin: 0 0 16px;
}

.testimonial-modal-quote p:last-child {
    margin-bottom: 0;
}

.testimonial-modal-name {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: #98968E;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --text-5xl: 72px;   /* 100 × 0.72 */
        --text-4xl: 56px;   /* 80  × 0.70 */
        --text-3xl: 48px;   /* 64  × 0.75 */
        --text-2xl: 28px;   /* 40  × 0.70 */
        --text-xl:  24px;   /* 32  × 0.75 */
        --text-lg:  18px;   /* 20  × 0.90 */
    }

    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    header {
        top: 16px;
        width: calc(100% - 32px);
        padding: 10px 20px;
    }

    header .container {
        flex-direction: row;
        gap: 0;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #DDDACD;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    nav.active {
        right: 0;
    }

    .nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        font-size: 20px;
        color: #2C201F;
        cursor: pointer;
        padding: 8px;
        line-height: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav ul li a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav .btn-start-journey {
        all: unset;
        display: block;
        padding: 20px 0;
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #2C201F;
        cursor: pointer;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        background-color: transparent;
        transition: opacity 0.3s ease;
    }

    nav .btn-start-journey:hover {
        background-color: transparent;
        opacity: 0.6;
    }

    nav .btn-start-journey.nav-cta-visible {
        opacity: 1;
    }

    /* Section padding adjustments for tablet */
    .about,
    .coaching {
        padding: 60px 0;
    }

    .faqs {
        padding: 60px 0;
    }

    .services {
        padding: 30px 0 0 0;
    }

    footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .hero-left {
        padding: 40px 0 30px;
    }

    .tagline-section h2 {
        font-size: 64px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .footer-logo {
        margin: 0 -20px;
    }


    #services-canvas {
        height: 360px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 40px 30px;
        flex-direction: column;
        gap: 16px;
        min-height: auto;
        text-align: left;
    }

    .service-card:nth-child(2) {
        margin-left: 0;
        width: 100%;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-subtitle {
        font-size: 16px;
    }

    .services h2 {
        font-size: 48px;
        margin-bottom: 5px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    nav a,
    .footer-nav a {
        font-size: 14px;
    }

    .social-links {
        font-size: 15px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .footer-left h3 {
        font-size: 18px;
    }

    .about-image img {
        max-width: 100%;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coaching-card {
        padding: 40px 30px;
        gap: 24px;
    }

    .coaching h2 {
        margin-bottom: 40px;
    }


    .coaching-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .coaching-card li {
        font-size: 15px;
        line-height: 1.7;
    }

    .coaching-card-content {
        gap: 18px;
    }

    .testimonial-card {
        flex: 0 0 340px;
        padding: 20px 24px;
    }


    .faq-card {
        padding: 40px 30px;
    }

    .faq-heading {
        margin-bottom: 24px;
    }

    .commitment-cta-text p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 24px;
        right: 24px;
    }

}

@media (max-width: 480px) {
    :root {
        --text-5xl: 56px;
        --text-4xl: 48px;
        --text-3xl: 40px;
        --text-2xl: 30px;
        --text-xl:  26px;
        --text-lg:  18px;
    }

    /* Section padding adjustments for mobile */
    .about,
    .coaching {
        padding: 50px 0;
    }

    .faqs {
        padding: 50px 0;
    }

    .services {
        padding: 24px 0 0 0;
    }

    .commitment-cta-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 32px;
        gap: 24px;
    }

    footer {
        padding: 50px 0 24px;
        margin-top: 40px;
    }

    .tagline-section h2 {
        font-size: 48px;
    }


    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 132px;
        height: 27px;
    }

    nav a,
    .footer-nav a {
        font-size: 15px;
    }

    .social-links {
        font-size: 15px;
    }


    #services-canvas {
        height: 300px;
    }

    .service-card {
        padding: 32px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: left;
        min-height: auto;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .social-links svg {
        width: 16px;
        height: 16px;
    }

    .about-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .footer-left h3 {
        font-size: 16px;
    }

    .coaching-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .coaching-card li {
        font-size: 16px;
        line-height: 1.7;
    }

    .coaching-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 18px 20px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .testimonial-modal {
        padding: 16px;
    }

    .testimonial-modal-body {
        padding: 40px 20px 24px;
        max-height: calc(100vh - 32px);
    }

    .footer-logo {
        margin: 0 -20px;
    }


    .faq-card {
        padding: 30px 20px;
    }

    .faq-heading {
        margin-bottom: 20px;
    }

    .commitment-cta-text p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        margin-left: 12px;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

}
