:root {
    --primary-color: #4a7c59;
    --primary-dark: #2d5038;
    --secondary-color: #9fcaac;
    --bg-page: #f5f0e8;
    --bg-card: #ffffff;
    --bg-sage-light: #e8f0eb;
    --text-light: #1a1a1a;
    --text-gray: #666666;
    --gradient-main: linear-gradient(135deg, #4a7c59 0%, #2d5038 100%);
    --glass-border: 1px solid rgba(74, 124, 89, 0.15);
    --navbar-bg: rgba(245, 240, 232, 0.95);
    --hover-bg: #e8f0eb;
    --input-bg: #ffffff;
    --input-border: rgba(0, 0, 0, 0.12);
    --timeline-line: rgba(74, 124, 89, 0.2);
    --kw-color: #2d5038;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-light);
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary-color);
    -webkit-text-fill-color: transparent;
}

.accent {
    color: var(--secondary-color);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--gradient-main);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    margin-left: 1rem;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: var(--navbar-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo .logo-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-color);
}

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

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    transition: background 0.2s !important;
    white-space: nowrap;
    color: var(--text-light) !important;
}

.dropdown-menu a:hover {
    background: var(--hover-bg);
    color: var(--primary-color) !important;
}

/* Mobile nav */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    z-index: 999;
    padding: 1.5rem 1.5rem 2rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.4rem 0;
}

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

.mobile-menu .btn-primary {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 10px 28px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 124, 89, 0.2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Image wrapper */
.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: var(--glass-border);
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: var(--bg-card);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -30px;
}

.card-2 {
    bottom: 10%;
    right: -30px;
    animation-delay: 3s;
}

.floating-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-sage-light);
    padding: 10px;
    border-radius: 8px;
}

.floating-card .text {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 0.9rem;
    color: var(--text-light);
}

.floating-card small {
    font-size: 0.8rem;
    color: var(--text-gray);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero photo stats strip */
.hero-photo-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    margin-top: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.hps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
}
.hps-num {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.hps-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.3;
}
.hps-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 30px 0;
}

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

/* =============================================
   Hero
   ============================================= */

.hero {
    padding-top: 160px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, rgba(245, 240, 232, 0) 65%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 80, 56, 0.07) 0%, rgba(245, 240, 232, 0) 65%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Stats bar */
.stats-bar {
    padding: 28px 0;
    background: var(--primary-dark);
    margin: 10px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* About section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
}

.about-image .image-wrapper::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
}

.about-image .image-wrapper img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 1;
}

.about-content .badge {
    margin-bottom: 1rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    padding: 5px 14px;
    background: var(--bg-sage-light);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Services / Rauchstopp section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(74, 124, 89, 0.3);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-sage-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 124, 89, 0.15);
}

.service-detail {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.service-link:hover {
    opacity: 0.75;
}

/* Why people fail */
.fail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fail-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    border-left: 3px solid rgba(74, 124, 89, 0.3);
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.fail-card:hover {
    border-left-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.fail-card h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* Methode steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.step-number {
    display: inline-block;
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.step-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Programm / Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: var(--bg-sage-light);
}

.pricing-tier {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-card h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-price small {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
}

.pricing-price-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.25rem;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--text-gray);
    font-weight: 400;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.price-savings {
    font-size: 0.82rem;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 0.15rem;
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 300;
}

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

.pricing-features .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: var(--glass-border);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-weight: 300;
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    font-weight: 500;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.88rem;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: var(--glass-border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(74, 124, 89, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    gap: 1rem;
    transition: color 0.2s;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    background: var(--primary-color);
}

.faq-item.active .faq-chevron path {
    stroke: #ffffff;
}

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

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 16px;
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.detail-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-sage-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.detail-item a {
    color: var(--text-light);
    text-decoration: none;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

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

.form-group select option {
    background: #ffffff;
    color: var(--text-light);
}

.full-width {
    width: 100%;
}

/* ── Offer toggle tabs ── */
.offer-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-sage-light);
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.offer-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 11px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.offer-tab.active {
    background: var(--bg-card);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 600;
}

.offer-tab:not(.active):hover {
    background: rgba(255,255,255,0.5);
    color: var(--text-light);
}

/* ── Contact two-column layout ── */
.contact-offer-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-offer-panel,
.contact-form-panel {
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    padding: 2rem;
}

/* ── Offer detail card (inside left panel) ── */
.offer-detail-card {
    margin-top: 0;
}

.offer-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offer-detail-top h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.offer-detail-sub {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.offer-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.offer-price-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.offer-price-note {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.offer-detail-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(74,124,89,0.1);
}

.offer-features-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.offer-detail-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offer-feature-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.offer-feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
    width: 1.4rem;
    text-align: center;
}

.offer-feature-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.offer-feature-item strong {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 600;
}

.offer-feature-item span {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.offer-feature-bonus {
    background: rgba(74,124,89,0.06);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    margin-top: 0.25rem;
    border-bottom: none !important;
}

.offer-bonus-tag {
    font-size: 0.75rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.offer-detail-meta {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-gray);
    text-align: center;
    border-top: 1px solid rgba(74,124,89,0.1);
    padding-top: 0.75rem;
}

@media (max-width: 900px) {
    .contact-offer-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .offer-tab {
        font-size: 0.8rem;
        padding: 10px 10px;
    }
    .contact-offer-panel,
    .contact-form-panel {
        padding: 1.25rem;
    }
}

/* CTA Box */
.cta-box {
    background: var(--primary-dark);
    border-radius: 16px;
    padding: 4rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(159, 202, 172, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.cta-box .badge {
    background: rgba(255, 255, 255, 0.1);
    color: #9fcaac;
    border-color: rgba(255, 255, 255, 0.15);
}

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

.cta-btns .btn-secondary {
    margin-left: 0;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-btns .btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-btns .btn-primary {
    background: #ffffff;
    color: var(--primary-dark);
}

.cta-btns .btn-primary:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: var(--glass-border);
    margin-top: 50px;
    background: var(--bg-page);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Keyword highlight */
.kw {
    color: var(--kw-color);
    font-weight: 600;
}

/* =============================================
   Subpage Hero
   ============================================= */

.subhero {
    padding-top: 140px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.subhero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, rgba(245, 240, 232, 0) 70%);
    z-index: -1;
}

.subhero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subhero h1 {
    font-size: 3rem;
    margin: 1rem 0 0;
}

.subhero p {
    font-size: 1.15rem;
    margin: 1.25rem 0 0;
}

.subhero .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.subhero .btn-secondary {
    margin-left: 0;
}

.subhero-image .image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: var(--glass-border);
    object-fit: cover;
    object-position: center;
}

/* =============================================
   Subpage Content Cards
   ============================================= */

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.info-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 300;
}

.info-list .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.principle-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.principle-card::before {
    content: attr(data-number);
    position: absolute;
    top: -14px;
    right: 16px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(74, 124, 89, 0.07);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-heading);
}

.principle-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.target-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(74, 124, 89, 0.3);
}

.target-card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.target-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.target-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.phase-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    border-top: 3px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.phase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.phase-reps {
    display: inline-block;
    background: var(--bg-sage-light);
    color: var(--primary-dark);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.phase-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.phase-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Science blocks */
.highlight-block {
    background: var(--bg-sage-light);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.highlight-block p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-style: italic;
    line-height: 1.7;
}

/* =============================================
   Free Tools Section
   ============================================= */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.tool-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: var(--glass-border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.tool-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tool-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.tool-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--bg-sage-light);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    display: inline-block;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.tool-card > p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.tool-interactive {
    background: var(--bg-page);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(74, 124, 89, 0.1);
    margin-bottom: 1rem;
}

.stichtag-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stichtag-row label {
    font-size: 0.82rem;
    color: var(--text-gray);
    font-weight: 400;
    width: 100%;
    margin-bottom: 0.25rem;
}

.stichtag-row input[type="date"] {
    border: 1.5px solid rgba(74, 124, 89, 0.25);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--text-light);
    background: var(--bg-card);
    outline: none;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.stichtag-row input[type="date"]:focus {
    border-color: var(--primary-color);
}

.stichtag-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
    white-space: nowrap;
}

.stichtag-btn:hover {
    background: var(--primary-dark);
}

.stichtag-result {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    min-height: 1.4rem;
    line-height: 1.5;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.quiz-opt {
    background: var(--bg-card);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--text-light);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}

.quiz-opt:hover,
.quiz-opt.selected {
    border-color: var(--primary-color);
    background: var(--bg-sage-light);
    color: var(--primary-dark);
}

.quiz-result {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 400;
    line-height: 1.6;
    display: none;
}

.quiz-result.show {
    display: block;
}

.four-a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.a-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
}

.a-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.1rem;
}

.a-desc {
    font-size: 0.78rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.5;
}

.breathe-wrap {
    text-align: center;
    padding: 0.5rem 0;
}

.breathe-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-sage-light);
    border: 3px solid var(--primary-color);
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: transform 4s ease, background 4s ease;
}

.breathe-circle.inhale {
    transform: scale(1.5);
    background: rgba(74, 124, 89, 0.2);
}

.breathe-circle.exhale {
    transform: scale(1);
    background: var(--bg-sage-light);
}

.breathe-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
}

.breathe-btn:hover {
    background: var(--primary-dark);
}

.breathe-instruction {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(74, 124, 89, 0.15);
    margin-top: auto;
}

/* =============================================
   Responsive
   ============================================= */

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

    .about-image {
        max-width: 380px;
        margin: 0 auto;
    }
}

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

@media (max-width: 600px) {
    .quiz-options,
    .four-a {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .floating-card {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-container {
        padding: 2rem;
        gap: 2rem;
    }

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

    .subhero {
        padding-top: 120px;
        padding-bottom: 40px;
        text-align: center;
    }

    .subhero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .subhero-image {
        order: -1;
    }

    .subhero h1 {
        font-size: 2rem;
    }

    .subhero .hero-btns {
        justify-content: center;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

/* ── Guide CTA section ── */
.guide-cta-section {
    background: var(--bg-sage-light);
}

.guide-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.07);
    padding: 3.5rem;
    overflow: hidden;
}

.guide-cta-left h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.guide-cta-left > p {
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.guide-cta-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.guide-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.guide-cta-features .check-icon {
    flex-shrink: 0;
}

/* Mockup */
.guide-cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-cta-mockup {
    width: 200px;
    background: var(--gradient-main);
    border-radius: 16px;
    padding: 2px;
    box-shadow: 0 12px 40px rgba(45,80,56,0.25);
    flex-shrink: 0;
}

.guide-mockup-inner {
    background: #1a2e20;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.guide-mockup-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
    background: rgba(159,202,172,0.15);
    padding: 3px 8px;
    border-radius: 20px;
}

.guide-mockup-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0.25rem;
}

.guide-mockup-sub {
    font-size: 0.7rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.guide-mockup-steps {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.gms-step {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 4px 8px;
}

.gms-step-secret {
    opacity: 0.45;
    font-style: italic;
}

.gms-step-faded {
    opacity: 0.25;
}

.guide-mockup-price {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-end;
}

.guide-mockup-price-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.guide-mockup-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.guide-mockup-price-old {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.guide-mockup-price-new {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.guide-mockup-price-savings {
    font-size: 0.65rem;
    color: #9fcaac;
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 860px) {
    .guide-cta-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .guide-cta-right {
        order: -1;
    }
    .guide-cta-mockup {
        width: 160px;
    }
    .guide-mockup-title {
        font-size: 1.1rem;
    }
}
