/* --- VARIABLES --- */
:root {
    --primary: #3c1e6e;
    --primary-light: #562b99;
    --accent: #ff6b4a;
    --accent-hover: #e85a3a;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f8f9fc;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(60, 30, 110, 0.1);
    --shadow-lg: 0 20px 40px rgba(60, 30, 110, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* --- UTILITIES & ANIMATIONS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.section-list {
    list-style: none;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--text-light);
}

.section-list li {
    position: relative;
    padding-left: 20px;
}

.section-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c73 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c73 0%, var(--accent) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(60, 30, 110, 0.2);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* --- HEADER & TOP BAR --- */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.top-bar i {
    margin-right: 6px;
    color: var(--accent);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: padding 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--accent);
}

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

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* --- HERO SECTION (A) --- */
.hero {
    background: radial-gradient(circle at top right, #4c268f 0%, #3c1e6e 100%);
    color: white;
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 700px;
}

.svg-mask-def {
    position: absolute;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(255, 107, 74, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-right: 20px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    position: relative;
    filter: drop-shadow(-20px 0 40px rgba(0, 0, 0, 0.25));
    transition: transform 0.5s ease;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: url(#hero-wave-mask);
    -webkit-clip-path: url(#hero-wave-mask);
    object-fit: cover;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.trustpilot {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trustpilot-stars {
    color: #00b67a;
    margin-right: 10px;
}

.trustpilot-text {
    font-size: 0.9rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-social-icons .social-icon {
    color: white;
    font-size: 1.4rem;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social-icons .social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
    .hero-social-proof {
        justify-content: center;
    }
}


/* --- STATS SECTION --- */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 40px;
}

.stats-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    border-bottom: 4px solid var(--accent);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fdf2ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--accent);
    color: white;
    transform: rotateY(180deg);
}

.stat-text h4 {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-text span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- ABOUT US SECTION (Manifesto) --- */
.about-us-section {
    padding: 80px 0;
    background: white;
}

.about-manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Desktop: 2 kolumny */
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Responsywność dla Mobile */
@media (max-width: 992px) {
    .about-manifesto {
        grid-template-columns: 1fr;
        /* Mobile: 1 kolumna */
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
        /* Opcjonalnie: wyśrodkowanie tekstu na mobile */
    }

    .about-image {
        order: 2;
        /* Obrazek ląduje pod tekstem */
    }

    .about-text {
        order: 1;
        /* Tekst jest pierwszy */
    }
}

.about-label {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-heading {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-strategy {
    background: #f0ebf8;
    color: var(--primary);
}

.icon-human {
    background: #fff5f2;
    color: var(--accent);
}

.about-feature-title {
    margin: 0 0 5px;
    color: var(--primary);
}

.about-feature-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-quote-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 200px;
}

.about-quote-text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.about-philosophy {
    text-align: center;
}

.philosophy-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 50px;
}

.philosophy-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: #f8f9fc;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.icon-route,
.icon-laptop {
    color: var(--accent);
}

.icon-cubes {
    color: var(--primary);
}

.philosophy-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- PRODUCTS SECTION (B) --- */
.products {
    padding: 60px 0 100px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    /* Zmieniamy 300px na 1fr na mobile, żeby kafelek zawsze wypełniał szerokość */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Dodatkowe zabezpieczenie dla bardzo małych ekranów */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        /* Na najmniejszych ekranach wymuszamy pełną szerokość */
        gap: 20px;
    }
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-header img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(60, 30, 110, 0.9), transparent);
    color: white;
    padding: 20px;
    padding-top: 60px;
}

.card-title-overlay h3 {
    font-size: 1.4rem;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body ul {
    margin: 15px 0 25px;
    flex-grow: 1;
}

.card-body li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 12px;
}

.card-body li i {
    color: var(--accent);
    margin-top: 4px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 50%;
    padding: 4px;
    font-size: 0.7rem;
}

/* --- PRICING SECTION (HORIZONTAL ROWS) --- */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 25px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 74, 0.2);
}

.pricing-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-row:hover::before {
    opacity: 1;
}

.pricing-row-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: #fdf2ef;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-details h3 {
    margin: 0 0 5px 0;
    color: var(--primary);
    font-size: 1.3rem;
}

.pricing-specs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f4f6f8;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid #eef0f2;
}

.spec-tag i {
    color: var(--accent);
    font-size: 0.9rem;
}

.pricing-action {
    text-align: right;
    margin-left: 40px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.pricing-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
    display: block;
    margin-top: 4px;
}

/* --- COMPARISON SECTION --- */
.comparison-table-section {
    padding: 80px 0;
    background-color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comp-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 6px solid #eee;
    transition: var(--transition);
}

.comp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.comp-card.individual {
    border-top-color: var(--primary);
    background: linear-gradient(to bottom, #fcfbff, #ffffff);
}

.comp-card.group {
    border-top-color: var(--accent);
    background: linear-gradient(to bottom, #fffbf9, #ffffff);
}

.comp-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.comp-header h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.comp-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.comp-list {
    list-style: none;
    padding: 0;
}

.comp-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 1rem;
}

.comp-list li:last-child {
    border: none;
}

.comp-list i {
    margin-top: 4px;
    font-size: 1.1rem;
}

.comp-card.individual i {
    color: var(--primary);
}

.comp-card.group i {
    color: var(--accent);
}

/* --- ECOSYSTEM SECTION --- */
.ecosystem-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.feature-grid-modern {
    display: grid;
    /* Wymusza dokładnie dwie kolumny o równej szerokości */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Opcjonalnie: Na bardzo małych ekranach (telefony) lepiej dać jeden pod drugim */
@media (max-width: 600px) {
    .feature-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-card-simple {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card-simple i {
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card-simple h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card-simple p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- METHODOLOGY / TOGETHER --- */
.together-section {
    background-color: var(--primary);
    color: white;
    padding: 100px 0;
    position: relative;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.together-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.together-text {
    flex: 1;
}

.together-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.together-text p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.method-list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.method-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent);
    transform: translateX(10px);
}

.method-list i {
    color: var(--accent);
    font-size: 1.4rem;
}

.together-values {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
    background: white;
    transform: translateY(-5px);
}

.value-card:hover h4 {
    color: var(--primary);
}

.value-card i {
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.value-card h4 {
    margin: 0;
    transition: color 0.3s;
    font-size: 1rem;
}

/* --- PHILOSOPHY SECTION (Approach) --- */
.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-heading {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.approach-subheading {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.approach-desc {
    color: var(--text-dark);
    line-height: 1.7;
    opacity: 0.9;
}

.approach-desc p {
    margin-bottom: 15px;
}

.approach-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-card {
    background: #f8f9fc;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.approach-card h4 {
    color: var(--primary);
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.approach-card i {
    color: var(--accent);
    margin-right: 10px;
}

.approach-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* --- VERSATILITY SECTION (Timeline) --- */
.versatility-section {
    padding: 80px 0;
    background: radial-gradient(circle at bottom, #2a0a4d 0%, #1a0b2e 100%);
    color: white;
}

.versatility-header {
    margin-bottom: 50px;
}

.versatility-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.versatility-header p {
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.level-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.timeline-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.circle-accent {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(255, 107, 74, 0.5);
}

.circle-white-primary {
    background: #fff;
    color: var(--primary);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    margin: 15px auto 25px;
}

.timeline-label-main {
    display: block;
}

.timeline-label-main.mt-5 {
    margin-top: 5px;
}

.timeline-label-sub {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
}

.timeline-label-sub-small {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

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

.versatility-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.versatility-card h4 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.versatility-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    background: white;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* --- REVIEWS --- */
.reviews-section {
    padding: 100px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
}

.google-logo-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.google-colors span:nth-child(1) {
    color: #4285F4;
}

.google-colors span:nth-child(2) {
    color: #EA4335;
}

.google-colors span:nth-child(3) {
    color: #FBBC05;
}

.google-colors span:nth-child(4) {
    color: #4285F4;
}

.google-colors span:nth-child(5) {
    color: #34A853;
}

.google-colors span:nth-child(6) {
    color: #EA4335;
}

.rating-score {
    font-weight: 700;
    color: var(--text-dark);
}

.reviews-stars {
    color: #fecb00;
    font-size: 1rem;
}

.review-count {
    color: var(--text-light);
    font-size: 1rem;
}

.reviews-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card-modern {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-stars {
    color: #fecb00;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}

.review-source {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.review-source-text {
    font-size: 0.9rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.av-bg-1 {
    background-color: var(--primary);
}

.av-bg-2 {
    background-color: var(--accent);
}

.av-bg-3 {
    background-color: #34A853;
}

.author-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified {
    color: #1a73e8;
    font-size: 0.8rem;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
}

.contact-layout {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info-box {
    flex: 1 1 35%;
    background: var(--primary);
    color: white;
    padding: 50px;
    position: relative;
}

.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-box-header {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-box-desc {
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-value-small {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
}

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

.map-placeholder {
    width: 100%;
    height: 250px;
    background: #eee;
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

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

/* --- CALCULATOR FORM STYLES --- */
.contact-form {
    flex: 1 1 65%;
    background: white;
    padding: 50px;
}

.calc-header-text h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.calc-header-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Radio Cards */
.mode-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.mode-option input[type="radio"] {
    display: none;
}

.mode-card {
    border: 2px solid #edf2f7;
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mode-option input[type="radio"]:checked+.mode-card {
    border-color: var(--accent);
    background-color: #fff5f2;
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.1);
    transform: translateY(-3px);
}

.mode-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
    transition: var(--transition);
}

.mode-option input[type="radio"]:checked+.mode-card i {
    color: var(--accent);
}

.mode-title {
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.mode-price {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

/* Dropdowns */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-label-small {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

select.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary);
    background: #f9fafb;
    cursor: pointer;
    transition: var(--transition);
}

select.form-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

/* Preferences */
.prefs-container {
    margin-bottom: 30px;
}

.prefs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.pref-checkbox input {
    display: none;
}

.pref-pill {
    padding: 8px 16px;
    background: #f0f2f5;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    user-select: none;
}

.pref-checkbox input:checked+.pref-pill {
    background: var(--primary);
    color: white;
    box-shadow: 0 3px 8px rgba(60, 30, 110, 0.2);
}

/* Result Box */
.result-box {
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

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

.result-details {
    font-size: 0.9rem;
    opacity: 0.9;
}

.total-price-display {
    text-align: right;
}

.total-price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
}

.total-price-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

/* Contact Fields */
.contact-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-inputs input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    background: #f9fafb;
    font-family: inherit;
}

.contact-inputs input:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
}

.rodo-check {
    margin-bottom: 20px;
}

.calc-submit-btn {
    width: 100%;
}

.calc-submit-icon {
    margin-left: 8px;
}

/* --- FOOTER --- */
footer {
    background: #1a0b2e;
    color: #ccc;
    padding: 60px 0 40px;
    font-size: 0.9rem;
    border-top: 5px solid var(--accent);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer a {
    color: #fff;
    opacity: 0.7;
}

footer a:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--accent);
}

.footer-copy {
    margin-top: 30px;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* --- MOBILE NAV (Improved) --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.close-btn {
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: var(--transition);
}

.close-btn:hover {
    background: #ffebee;
    color: var(--accent);
}

.mobile-links a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Stagger animation for links */
.mobile-nav-overlay.active .mobile-links a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-overlay.active .mobile-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-links a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-links a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-links a:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-links a:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-cta {
    margin-top: auto;
}

.mobile-cta .btn {
    width: 100%;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 60px;
    }

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

    .hero-content {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .together-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .stats-container {
        margin-top: 20px;
    }

    .reviews-header-row {
        flex-direction: column;
        text-align: center;
    }

    .pricing-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-row-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-action {
        margin-left: 0;
        align-items: center;
    }

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

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

    .hamburger {
        display: block;
    }

    .top-bar {
        display: none;
    }

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

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-image-wrapper img {
        clip-path: none;
        -webkit-clip-path: none;
        border-radius: 20px;
        min-height: auto;
    }

    .hero-visual {
        flex: auto;
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info-box {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .calc-grid,
    .contact-inputs {
        grid-template-columns: 1fr;
    }

    .mode-selection {
        gap: 10px;
    }

    .result-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .total-price-display {
        text-align: center;
    }

    /* Style Fixes for New Sections */
    .philosophy-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .timeline-line {
        display: none;
    }

    .level-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- DESKTOP HERO OVERRIDES (Full Height) --- */
@media (min-width: 992px) {
    html {
        font-size: 90%;
    }

    .container {
        max-width: 1080px;
    }

    /* Reduced paddings for more compact look */
    .products,
    .pricing-section,
    .comparison-table-section,
    .ecosystem-section,
    .together-section,
    .faq-section,
    .reviews-section,
    .contact-section,
    .about-us-section,
    .philosophy-section,
    .versatility-section {
        padding: 60px 0;
    }

    .hero {
        padding: 0;
    }

    .hero .container {
        position: static;
        height: 100%;
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .hero-visual {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        width: 55%;
        z-index: 1;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .hero-image-wrapper img {
        height: 100%;
        min-height: 100%;
        border-radius: 0;
    }
}

/* --- LESSON ANATOMY SECTION (NEW) --- */
.anatomy-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.anatomy-step {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.anatomy-step:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(60, 30, 110, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.step-indicator {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(60, 30, 110, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mini-list {
    list-style: none;
    padding: 0;
}

.mini-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.mini-list i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .anatomy-grid {
        grid-template-columns: 1fr;
    }
}