@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    --primary: #4A7C59;
    --primary-light: #6BA880;
    --primary-dark: #345840;
    --secondary: #F7F2EA;
    --accent: #C8784A;
    --text: #2A2D2E;
    --text-muted: #6B7280;
    --border: #E0D9CF;
    --white: #FFFFFF;
    --header-h: 72px;
    --footer-h: 160px;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(42, 45, 46, 0.08);
    --shadow: 0 4px 16px rgba(42, 45, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(42, 45, 46, 0.16);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    min-width: 320px;
    padding-top: var(--header-h);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    font-weight: 600
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem)
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem)
}

h4 {
    font-size: clamp(1rem, 2vw, 1.3rem)
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem
}

p:last-child {
    margin-bottom: 0
}

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

a:hover {
    color: var(--accent)
}

ul,
ol {
    padding-left: 1.5rem
}

li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section-padding {
    padding: 5rem 0
}

.section-padding-sm {
    padding: 3rem 0
}

.text-center {
    text-align: center
}

.label {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white)
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent)
}

.btn-accent:hover {
    background: #b5673a;
    border-color: #b5673a;
    color: var(--white)
}

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

.btn-white:hover {
    background: var(--secondary);
    color: var(--primary-dark)
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6)
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white)
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
    height: var(--header-h)
}

#site-header.header-visible {
    transform: translateY(0)
}

#site-header.header-hidden {
    transform: translateY(-100%)
}

#site-header.header-scrolled {
    height: 58px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm)
}

#site-header.header-top {
    background: linear-gradient(180deg, rgba(247, 242, 234, 0.96) 0%, rgba(247, 242, 234, 0.5) 100%)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none
}

.header-logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em
}

.header-logo .logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
    margin-top: 3px
}

.header-scrolled .header-logo .logo-sub {
    display: none
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem
}

.header-nav a {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.03em
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--primary);
    background: rgba(74, 124, 89, 0.08)
}

.header-nav .nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    margin-left: 0.5rem
}

.header-nav .nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white)
}

.burger {
    display: none;
    position: relative;
    z-index: 1101;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background var(--transition)
}

.burger:hover {
    background: rgba(74, 124, 89, 0.08)
}

.burger-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 22px;
    height: 18px;
    margin: 0 auto
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.3s ease
}

.burger.is-active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    width: 0
}

.burger.is-active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1090;
    pointer-events: none;
    visibility: hidden
}

.mobile-menu.open {
    pointer-events: auto;
    visibility: visible
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 36, 32, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s ease
}

.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 92vw);
    height: 100%;
    background: linear-gradient(165deg, var(--white) 0%, var(--secondary) 100%);
    box-shadow: -8px 0 40px rgba(28, 36, 32, 0.18);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1)
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0)
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem
}

.mobile-menu-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.2
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition)
}

.mobile-menu-close:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(74, 124, 89, 0.06)
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--primary);
    background: rgba(74, 124, 89, 0.07);
    padding-left: 0.85rem
}

.mobile-nav-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--accent);
    min-width: 1.5rem
}

.mobile-nav-cta {
    margin-top: 0.75rem;
    background: rgba(74, 124, 89, 0.08) !important;
    border: 1px solid rgba(74, 124, 89, 0.2)
}

.mobile-menu-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto
}

.mobile-menu-foot a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted)
}

.mobile-menu-foot a:hover {
    color: var(--primary)
}

body.menu-open {
    overflow: hidden
}

.hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--secondary)
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(247, 242, 234, 0.88) 45%, rgba(247, 242, 234, 0.35) 100%);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 4rem 0
}

.hero-sub {
    min-height: 52vh;
    align-items: center
}

.hero-sub .hero-content {
    padding: 3.5rem 0
}

.hero-content-centered {
    text-align: center;
    max-width: 680px;
    margin: 0 auto
}

.hero-content-centered p {
    margin-left: auto;
    margin-right: auto
}

.hero-content h1 {
    margin-bottom: 1.25rem;
    color: var(--text)
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 124, 89, 0.1);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2rem
}

.sub-hero {
    padding: 5rem 0 3.5rem;
    background: var(--secondary);
    text-align: center;
    position: relative
}

.sub-hero h1 {
    margin-bottom: 0.75rem
}

.sub-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto
}

.about-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0
}

.about-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.about-strip-text h2 {
    margin-bottom: 1rem
}

.about-strip-text p {
    color: var(--text-muted);
    font-size: 0.92rem
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.pillars {
    background: var(--secondary)
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition)
}

.pillar-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.pillar-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem
}

.pillar-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin: 0
}

.programs-preview {
    background: var(--white)
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.program-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition)
}

.program-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.program-card-header {
    background: var(--primary);
    padding: 1.25rem 1.5rem
}

.program-card.featured .program-card-header {
    background: var(--accent)
}

.program-card-header h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem
}

.program-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1
}

.program-price span {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8
}

.program-card-body {
    padding: 1.25rem 1.5rem
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem
}

.program-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
    margin: 0
}

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

.program-features li i {
    color: var(--primary);
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0
}

.testimonials {
    background: var(--secondary)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border)
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 0.75rem
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1rem
}

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

.testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0
}

.testimonial-name {
    font-size: 0.82rem;
    font-weight: 500
}

.testimonial-location {
    font-size: 0.72rem;
    color: var(--text-muted)
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 0.75rem
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem
}

.programs-list {
    background: var(--white)
}

.programs-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.program-full-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    background: var(--white)
}

.program-full-card.featured-card {
    border-color: var(--accent)
}

.program-full-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.pfcard-header {
    padding: 1.5rem;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    text-align: center
}

.program-full-card.featured-card .pfcard-header {
    background: linear-gradient(135deg, var(--accent), #b5673a)
}

.pfcard-header h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.4rem
}

.program-full-card.featured-card .pfcard-header h3 {
    color: var(--white)
}

.pfcard-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1
}

.program-full-card.featured-card .pfcard-price {
    color: var(--white)
}

.pfcard-price small {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted)
}

.program-full-card.featured-card .pfcard-price small {
    color: rgba(255, 255, 255, 0.75)
}

.pfcard-body {
    padding: 1.5rem
}

.pfcard-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem
}

.pfcard-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    margin: 0
}

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

.pfcard-features li i {
    color: var(--primary);
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0
}

.pfcard-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.5rem
}

.included-section {
    background: var(--secondary)
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.included-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

.included-item i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.6rem
}

.included-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem
}

.included-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0
}

.faq-section {
    background: var(--white)
}

.faq-list {
    max-width: 780px;
    margin: 2rem auto 0
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 1.25rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--transition)
}

.faq-question:hover {
    background: var(--secondary)
}

.faq-question i {
    transition: transform var(--transition);
    font-size: 0.8rem;
    color: var(--primary)
}

.faq-item.open .faq-question i {
    transform: rotate(180deg)
}

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

.faq-item.open .faq-answer {
    max-height: 300px
}

.faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.87rem;
    color: var(--text-muted);
    margin: 0
}

.habits-intro {
    background: var(--white)
}

.habits-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.habits-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.habits-intro-img img {
    width: 100%;
    height: 360px;
    object-fit: cover
}

.habits-section {
    background: var(--secondary)
}

.habits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.habit-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition)
}

.habit-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.habit-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(74, 124, 89, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem
}

.habit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem
}

.habit-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0
}

.benefits-section {
    background: var(--white)
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.benefit-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem
}

.benefit-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0
}

.tips-section {
    background: var(--secondary)
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem
}

.tip-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1px solid var(--border)
}

.tip-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem
}

.tip-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0
}

.values-bg {
    background: var(--secondary)
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem
}

.value-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white)
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(200, 120, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.95rem;
    flex-shrink: 0
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem
}

.value-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0
}

.credentials-section {
    background: var(--white)
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.credential-item i {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 0.1rem;
    flex-shrink: 0
}

.credential-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0
}

.contact-intro {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden
}

.contact-intro::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none
}

.contact-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(56% 100% at 50% 100%)
}

.contact-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1
}

.contact-headline span {
    color: rgba(255, 255, 255, 0.35);
    display: block
}

.contact-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    position: relative;
    z-index: 1
}

.contact-deco-icon {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0
}

.contact-section {
    background: var(--white);
    padding: 4rem 0 5rem
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start
}

.contact-info {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem)
}

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3
}

.contact-info-sub {
    font-size: 0.88rem;
    color: var(--text-muted)
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem
}

.contact-detail-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.contact-detail-item i {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0
}

.contact-detail-item strong {
    font-size: 0.72rem;
    display: block;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.contact-detail-item span {
    font-size: 0.85rem;
    color: var(--text-muted)
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 1.5rem;
    height: 200px
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none
}

.contact-form-wrap {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border)
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.35rem
}

.form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition)
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1)
}

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

.form-check {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 0.25rem
}

.form-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 0.15rem;
    accent-color: var(--primary);
    flex-shrink: 0;
    cursor: pointer
}

.form-check label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin: 0
}

.form-check label a {
    color: var(--primary);
    font-size: inherit
}

.form-submit-row {
    margin-top: 1.25rem
}

.contact-hours {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(74, 124, 89, 0.06);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary)
}

.contact-hours h4 {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--primary)
}

.contact-hours p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6
}

.page-thankyou {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    padding: 3rem 0 4rem;
    min-height: calc(100vh - var(--header-h) - 120px)
}

.page-thankyou::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.08);
    pointer-events: none
}

.page-thankyou::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(200, 120, 74, 0.1);
    pointer-events: none
}

.thankyou-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.thankyou-hero {
    text-align: left;
    padding: 2rem 0
}

.thankyou-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 124, 89, 0.12);
    border: 1px solid rgba(74, 124, 89, 0.25);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem
}

.thankyou-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 1.5rem
}

.thankyou-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.35);
    animation: thankPulse 2.5s ease-in-out infinite
}

.thankyou-icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(74, 124, 89, 0.25);
    border-radius: 50%;
    animation: thankSpin 12s linear infinite
}

@keyframes thankPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }
}

@keyframes thankSpin {
    to {
        transform: rotate(360deg)
    }
}

.thankyou-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem
}

.thankyou-hero .thankyou-lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 1.5rem
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem
}

.thankyou-side {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.thankyou-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--shadow-sm)
}

.thankyou-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.thankyou-card h3 i {
    color: var(--accent);
    font-size: 0.9rem
}

.thankyou-steps {
    list-style: none;
    padding: 0;
    margin: 0
}

.thankyou-steps li {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted)
}

.thankyou-steps li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.thankyou-step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary)
}

.thankyou-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.thankyou-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all var(--transition)
}

.thankyou-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(74, 124, 89, 0.06)
}

.doc-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #5a9468 100%);
    padding: 3.5rem 0 4rem;
    overflow: hidden
}

.doc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6
}

.doc-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.doc-hero-text {
    max-width: 640px
}

.doc-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    backdrop-filter: blur(8px)
}

.doc-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 0.5rem
}

.doc-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0
}

.doc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem
}

.doc-hero-meta span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9)
}

.doc-hero-deco {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    user-select: none
}

.doc-body {
    background: var(--white);
    padding: 3rem 0 5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2
}

.doc-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start
}

.doc-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem
}

.doc-sidebar h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem
}

.doc-toc {
    list-style: none;
    padding: 0;
    margin: 0
}

.doc-toc li {
    margin-bottom: 0.25rem
}

.doc-toc a {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius);
    border-left: 2px solid transparent;
    transition: all var(--transition)
}

.doc-toc a:hover {
    color: var(--primary);
    background: rgba(74, 124, 89, 0.06);
    border-left-color: var(--primary)
}

.doc-content {
    min-width: 0
}

.doc-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.85rem 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 2rem
}

.doc-date i {
    color: var(--primary)
}

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

.doc-card {
    padding: 1.25rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition)
}

.doc-card:hover {
    box-shadow: var(--shadow)
}

.doc-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem
}

.doc-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem
}

.doc-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6
}

.doc-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: calc(var(--header-h) + 1rem)
}

.doc-section h2 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem
}

.doc-section h2 .doc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700
}

.doc-section h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--text)
}

.doc-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8
}

.doc-section ul {
    margin: 0.75rem 0 1rem;
    padding-left: 1.25rem
}

.doc-section ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.35rem
}

.doc-highlight {
    background: linear-gradient(90deg, rgba(74, 124, 89, 0.08), transparent);
    border-left: 4px solid var(--primary);
    padding: 1.15rem 1.35rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 1.25rem 0
}

.doc-highlight p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text)
}

.doc-warning {
    background: rgba(200, 120, 74, 0.08);
    border-left: 4px solid var(--accent);
    padding: 1.15rem 1.35rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 1.25rem 0
}

.doc-warning p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text)
}

.doc-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg)
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem
}

.doc-table th,
.doc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border)
}

.doc-table th {
    background: var(--secondary);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text)
}

.doc-table td {
    color: var(--text-muted)
}

.doc-table tr:last-child td {
    border-bottom: none
}

.doc-contact-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem
}

.doc-contact-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem
}

.doc-contact-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    margin: 0
}

.doc-contact-box a {
    color: var(--white);
    text-decoration: underline
}

footer {
    background: #1C2420;
    color: rgba(255, 255, 255, 0.65);
    padding: 2rem 0
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.footer-brand .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white)
}

.footer-brand p {
    font-size: 0.78rem;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    transition: color var(--transition)
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.footer-bottom p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.38);
    margin: 0
}

.footer-policy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.76rem;
    transition: color var(--transition)
}

.footer-policy-links a:hover {
    color: rgba(255, 255, 255, 0.8)
}

.cookie-popup {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(130%);
    z-index: 9000;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    width: calc(100% - 2rem);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0)
}

.cookie-popup-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0
}

.cookie-popup-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem
}

.cookie-popup-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem
}

.cookie-popup-content p a {
    font-size: inherit
}

.cookie-popup-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap
}

.cookie-popup-actions .btn {
    padding: 0.4rem 1rem;
    font-size: 0.78rem
}

@media(max-width:1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .programs-list-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:768px) {
    :root {
        --header-h: 60px;
        --footer-h: 200px
    }

    .header-nav {
        display: none
    }

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

    .doc-layout {
        grid-template-columns: 1fr
    }

    .doc-sidebar {
        position: static
    }

    .doc-card-grid {
        grid-template-columns: 1fr
    }

    .thankyou-wrap {
        grid-template-columns: 1fr
    }

    .doc-hero-deco {
        display: none
    }

    .about-strip-inner,
    .habits-intro-inner,
    .contact-layout {
        grid-template-columns: 1fr
    }

    .contact-info {
        position: static
    }

    .pillars-grid,
    .programs-grid,
    .testimonials-grid,
    .habits-grid {
        grid-template-columns: 1fr
    }

    .values-grid,
    .credentials-list,
    .benefits-list,
    .tips-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        flex-direction: column
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .hero {
        min-height: 80vh
    }

    .hero-sub {
        min-height: 44vh
    }

    .hero-sub .hero-content {
        padding: 2.5rem 0
    }

    .habits-intro-img img {
        height: 240px
    }

    .section-padding {
        padding: 3.5rem 0
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .contact-deco-icon {
        display: none
    }
}

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

    .mobile-menu-nav a {
        font-size: 1.45rem
    }

    .mobile-menu-panel {
        width: 100%;
        max-width: 100%
    }

    .cookie-popup {
        flex-direction: column;
        padding: 1rem
    }

    .cookie-popup-actions {
        width: 100%
    }

    .cookie-popup-actions .btn {
        flex: 1;
        justify-content: center
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .header-inner {
        padding: 0 1rem
    }

    .thankyou-actions {
        flex-direction: column
    }

    .thankyou-actions .btn {
        width: 100%;
        justify-content: center
    }

    .doc-hero {
        padding: 2.5rem 0 3rem
    }

    .footer-policy-links {
        gap: 0.5rem 0.75rem
    }
}

@media(max-width:320px) {
    :root {
        --header-h: 56px
    }

    html {
        font-size: 15px
    }

    .container {
        padding: 0 0.85rem
    }

    .header-inner {
        padding: 0 0.75rem
    }

    .header-logo .logo-main {
        font-size: 1.1rem
    }

    .header-logo .logo-sub {
        font-size: 0.52rem;
        letter-spacing: 0.14em
    }

    .burger {
        width: 40px;
        height: 40px
    }

    .burger-box {
        width: 20px
    }

    .burger-line {
        width: 20px
    }

    h1 {
        font-size: 1.65rem
    }

    h2 {
        font-size: 1.35rem
    }

    h3 {
        font-size: 1.05rem
    }

    .label {
        font-size: 0.62rem;
        letter-spacing: 0.12em
    }

    .btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.65rem
    }

    .stat-num {
        font-size: 1.65rem
    }

    .included-grid {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 72vh
    }

    .hero-content {
        padding: 2rem 0
    }

    .hero-sub {
        min-height: 38vh
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.7rem
    }

    .section-padding {
        padding: 2.5rem 0
    }

    .pillar-card,
    .program-card,
    .testimonial-card,
    .habit-card {
        padding: 1.15rem
    }

    .mobile-menu-panel {
        padding: 1rem 0.85rem 1.25rem
    }

    .mobile-menu-nav a {
        font-size: 1.35rem;
        padding: 0.55rem 0.35rem
    }

    .mobile-nav-num {
        font-size: 0.58rem;
        min-width: 1.25rem
    }

    .mobile-menu-foot {
        gap: 0.5rem 0.85rem
    }

    .footer-top {
        gap: 1rem
    }

    .footer-links {
        gap: 0.85rem 1rem
    }

    .footer-policy-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem
    }

    .footer-policy-links a {
        font-size: 0.72rem
    }

    .cookie-popup {
        bottom: 0.75rem;
        width: calc(100% - 1rem);
        max-width: none;
        border-radius: var(--radius)
    }

    .doc-hero {
        padding: 2rem 0 2.5rem
    }

    .doc-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem
    }

    .doc-hero-meta span {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem
    }

    .doc-body {
        padding: 2rem 0 3rem;
        margin-top: -1.25rem
    }

    .doc-sidebar {
        padding: 1rem
    }

    .doc-toc a {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem
    }

    .doc-section h2 {
        font-size: 1.2rem;
        flex-wrap: wrap
    }

    .doc-table th,
    .doc-table td {
        padding: 0.55rem 0.65rem;
        font-size: 0.78rem
    }

    .thankyou-icon-wrap,
    .thankyou-icon {
        width: 72px;
        height: 72px
    }

    .thankyou-icon {
        font-size: 1.6rem
    }

    .thankyou-card {
        padding: 1rem
    }

    .page-thankyou {
        padding: 2rem 0 2.5rem
    }

    .cta-banner {
        padding: 2.5rem 0
    }

    .cta-banner .btn {
        width: 100%
    }

    .contact-form-wrap {
        padding: 1.25rem
    }

    .form-control {
        font-size: 0.82rem;
        padding: 0.55rem 0.75rem
    }
}