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

:root {
    --primary-green: #1ee94a;
    --dark-green: #18c43d;
    --text-dark: #222;
    --text-gray: #444;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --header-height: 86px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links .nav-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(24, 196, 61, 0.25);
}

.nav-links .nav-highlight:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.promo-banner {
    background: linear-gradient(120deg, #11c93a, #0f8f2b);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: var(--header-height);
    z-index: 900;
    box-shadow: 0 12px 30px rgba(11, 173, 45, 0.25);
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-banner p {
    font-weight: 600;
    color: var(--white);
}

.promo-banner .promo-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease, color 0.3s ease;
}

.promo-banner .promo-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.promo-countdown {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.4rem 0.9rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.countdown-item span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.countdown-item small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
}

.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
    padding: 6rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    color: var(--primary-green);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 233, 74, 0.3);
    margin-top: 2rem;
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 233, 74, 0.4);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: none;
}

.cta-button.outline:hover {
    background: rgba(30, 233, 74, 0.1);
    box-shadow: none;
}

.cta-button.ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.cta-button.ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.why-us {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.why-us-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.why-us-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.why-us-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.results {
    padding: 6rem 2rem;
    background: var(--white);
}

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

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

.result-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 300px;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.result-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    border-radius: 15px;
}

.testimonials {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    border-radius: 15px;
}

.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-green);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.target-audience {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.target-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.target-icon {
    background: var(--primary-green);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.1rem;
}

.target-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.program {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.program-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.program-text h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.program-text .green {
    color: var(--primary-green);
}

.program-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.program-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.program-features li:before {
    content: '✓';
    background: var(--primary-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.8rem;
}

.about {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text h2 span {
    color: var(--primary-green);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text .social-icons a {
    background: rgba(30, 233, 74, 0.1);
    color: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-text .social-icons a:hover {
    background: var(--primary-green);
    color: var(--white);
}

.cta-section {
    background: linear-gradient(135deg, rgba(30, 233, 74, 0.95) 0%, rgba(24, 196, 61, 0.95) 100%),
                url('https://mamawruchu.odoo.com/web/image/slide.channel/3/image_1024/PROGRAM%20BRZUCH%203?unique=b072d8a') center/cover no-repeat;
    padding: 5rem 2rem;
    text-align: center;
    color: var(--white);
    margin: 4rem 2rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

#cta-middle {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    margin: 4rem 2rem;
}

#cta-middle h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

#cta-middle p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e9 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header h1 span {
    color: var(--primary-green);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.programs-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.program-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-title span {
    color: var(--primary-green);
}

.program-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 600;
}

.program-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.program-for {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.program-for h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-for ul {
    list-style: none;
    padding-left: 0;
}

.program-for li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.program-for li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.program-includes {
    margin-bottom: 2rem;
}

.program-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.include-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.include-text {
    color: var(--text-gray);
}

.include-text strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.program-price {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 15px;
    margin-bottom: 2rem;
}

.program-price .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.program-price .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.program-price .price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button-white {
    background: var(--white);
    color: var(--text-dark);
}

.cta-button-white:hover {
    background: var(--bg-light);
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.blackweek-target {
    padding: 4rem 2rem;
    background: var(--white);
}

.target-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.target-card {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.pill-list li {
    background: rgba(30, 233, 74, 0.1);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.equipment-box {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 2rem;
    border: 1px dashed rgba(30, 233, 74, 0.4);
    margin-top: 2rem;
}

.equipment-box h4 {
    margin-bottom: 1rem;
}

.trust-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.trust-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blackweek-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 233, 74, 0.12) 0%, rgba(24, 196, 61, 0.05) 100%);
}

.blackweek-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.blackweek-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.blackweek-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 233, 74, 0.2);
    display: inline-flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-card .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
}

.price-card .new-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.badge-discount {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.hero-list li::before {
    content: '★';
    color: var(--primary-green);
    font-size: 0.8rem;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.info-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-gray);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(30, 233, 74, 0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blackweek-benefits {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.check-list li {
    display: flex;
    gap: 0.5rem;
    color: var(--text-gray);
}

.check-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
}

.blackweek-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(30, 233, 74, 0.95), rgba(24, 196, 61, 0.9));
    color: var(--white);
    text-align: center;
}

.blackweek-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.blackweek-cta p {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-section h1 span {
    color: var(--primary-green);
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.content-section strong {
    color: var(--text-dark);
}

.content-section a {
    color: var(--primary-green);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.company-info {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.company-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.company-info h2 span {
    color: var(--primary-green);
}

.company-info h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.company-info p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.company-info ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.company-info li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.company-info strong {
    color: var(--text-dark);
}

.company-details {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.company-details p {
    margin-bottom: 0.5rem;
}

.company-details a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-details a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.acceptance-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-image img,
    .about-image img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-content,
    .about-content,
    .program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

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

    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-links .nav-highlight {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        text-align: center;
    }

    .features-grid,
    .why-us-grid,
    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        width: auto;
        margin: 0 auto;
        display: block;
    }

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

    .about-image img {
        max-width: 100%;
        max-height: 250px;
        object-fit: contain;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .features,
    .about,
    .program,
    .why-us,
    .testimonials,
    .results,
    .company-info {
        padding: 3rem 1rem;
    }

    .section-header h2,
    .program-text h2 {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .program-card {
        padding: 2rem;
    }

    .program-title {
        font-size: 2rem;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .promo-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-countdown {
        width: 100%;
        justify-content: center;
    }

    .blackweek-hero h1 {
        font-size: 2.2rem;
    }
}

