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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #0B0C15;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    position: relative;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease;
    padding: 1.5rem 0;
}

@media (max-width: 1023px) {
    .navbar {
        background-color: rgba(11, 12, 21, 0.95);
        backdrop-filter: blur(24px);
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.75rem 0;
    }
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(11, 12, 21, 0.6);
    backdrop-filter: blur(24px);
}

@media (max-width: 767px) {
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
}

.navbar.light {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar.light .nav-links a {
    color: #374151;
}

.navbar.light .nav-links a:hover {
    color: #EA552B;
}

.navbar.light .nav-links a.active {
    color: #111827;
}

.navbar.light .nav-cta {
    border-color: #EA552B !important;
    color: #EA552B !important;
}

.navbar.light .nav-cta:hover {
    background-color: #EA552B;
    color: #ffffff !important;
}

.navbar.light .mobile-toggle span {
    background-color: #111827;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

@media (max-width: 767px) {
    .navbar-content {
        position: relative;
        min-height: 60px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: white;
}

@media (max-width: 767px) {
    .logo {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    margin-bottom: -10px;
}

@media (max-width: 767px) {
    .logo-img {
        height: 36px;
        margin-bottom: 0;
    }
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #D4481F;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9CA3AF;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: #9CA3AF;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #D4481F;
}

.nav-links a.active {
    color: #ffffff;
    font-weight: 700;
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.3s;
}

.nav-cta:hover {
    background-color: #ffffff;
    color: #0B0C15 !important;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .mobile-toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.25rem;
        z-index: 1;
    }
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

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

@media (max-width: 767px) {
    .hamburger {
        gap: 0.35rem;
    }
}

.hamburger span {
    width: 2rem;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .hamburger span {
        width: 1.5rem;
        height: 2px;
    }
}

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

@media (max-width: 767px) {
    .mobile-toggle.active .hamburger span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }
}

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

.mobile-toggle.active .hamburger span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 767px) {
    .mobile-toggle.active .hamburger span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 100px;
    padding-bottom: 1.5rem;
    background-color: rgba(11, 12, 21, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 90;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
}

@media (max-width: 767px) {
    .mobile-menu {
        padding-top: 70px;
    }
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 95;
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
    pointer-events: none;
}

.mobile-menu.active .mobile-menu-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    pointer-events: auto;
    transition-delay: 0.4s;
}

.mobile-menu-close svg {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 767px) {
    .mobile-menu-close {
        top: 1.5rem;
        right: 0.75rem;
        padding: 0.5rem;
    }

    .mobile-menu-close svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.mobile-menu.active .mobile-menu-close:hover {
    color: #D4481F;
    transform: scale(1.1) rotate(90deg);
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-close {
        display: none !important;
    }
}

.mobile-menu a {
    text-decoration: none;
    color: #9CA3AF;
    font-size: 1.125rem;
    transition: color 0.3s, transform 0.3s, opacity 0.3s;
    position: relative;
    padding: 0.5rem 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active a:nth-child(2) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.45s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.55s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.65s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.7s; }

.mobile-menu a:hover {
    color: #D4481F;
}

.mobile-menu a.active {
    color: #ffffff;
    font-weight: 700;
}

.mobile-cta {
    color: #EA552B !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0B0C15;
    transition: opacity 0.1s ease-out;
}

.hero-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background-color: rgba(255, 255, 255, 0.08);
}

.hero-glow-2 {
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background-color: rgba(147, 51, 234, 0.1);
}

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

.hero-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 1;
    mix-blend-mode: overlay;
}

@media (max-width: 767px) {
    .hero-image {
        object-position: left center;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0B0C15 0%, rgba(11, 12, 21, 0.7) 40%, rgba(11, 12, 21, 0.3) 70%, transparent 100%);
}

@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(to right, #0B0C15 0%, rgba(11, 12, 21, 0.9) 60%, rgba(11, 12, 21, 0.5) 100%);
    }
}


.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 5rem;
}

.hero-text {
    max-width: 50%;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(234, 85, 43, 0.15);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(234, 85, 43, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.375rem 0.75rem;
        gap: 0.375rem;
    }

    .hero-badge svg {
        width: 10px;
        height: 10px;
    }
}

.hero-badge svg {
    color: #D4481F;
}

.section-header .hero-badge,
.section-header-center .hero-badge,
.trainer-text .hero-badge,
.contact-info .hero-badge {
    margin-bottom: 0.75rem;
}

.section-header-center .hero-badge {
    display: inline-flex;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-gradient {
    background: linear-gradient(to right, #EA552B, #FFD9CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    max-width: 42rem;
    line-height: 1.75;
    font-weight: 300;
}

@media (max-width: 767px) {
    .hero-description {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-description strong {
    color: white;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6B7280;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, #D4481F, transparent);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn svg {
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background-color: #EA552B;
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: #F07040;
    box-shadow: 0 0 20px rgba(234, 85, 43, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
}

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

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #0B0C15;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .benefits {
        padding: 4.5rem 0;
    }
}

.section-header {
    margin-bottom: 4rem;
    max-width: 66.666667%;
}

@media (max-width: 767px) {
    .section-header {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section-header {
        max-width: 100%;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.7rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: #9CA3AF;
    font-size: 1.125rem;
    line-height: 1.75;
}

@media (max-width: 767px) {
    .section-description {
        font-size: 0.85rem;
    }
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: #13141F;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    group: card;
}

@media (max-width: 767px) {
    .benefit-card {
        padding: 1.5rem;
    }
}

.benefit-card:hover {
    border-color: rgba(234, 85, 43, 0.4);
}

.benefit-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.05), transparent);
    opacity: 1;
    z-index: 0;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4481F;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: #D4481F;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .benefit-title {
        font-size: 1.125rem;
    }
}

.benefit-description {
    color: #9CA3AF;
    position: relative;
    z-index: 10;
}

/* Packages Section */
.packages {
    padding: 8rem 0;
    background-color: #0E0F17;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .packages {
        padding: 6rem 0;
    }
}

.packages-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
}

.packages-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0E0F17, rgba(14, 15, 23, 0.9), #0E0F17);
    z-index: 0;
}

.packages-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 48rem;
    height: 400px;
    background-color: rgba(234, 85, 43, 0.05);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
}

.packages .container {
    position: relative;
    z-index: 10;
}

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

@media (max-width: 767px) {
    .section-header-center {
        margin-bottom: 2.5rem;
    }
}

.section-header-center .section-title {
    margin-top: 0;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header-center .section-title {
        font-size: 3rem;
    }
}

.section-header-center .section-description {
    color: #9CA3AF;
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background-color: #13141F;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}

@media (max-width: 767px) {
    .package-card {
        padding: 1.5rem;
    }
}

.package-card:hover {
    border-color: rgba(234, 85, 43, 0.4);
    box-shadow: 0 20px 25px -5px rgba(234, 85, 43, 0.1);
}

.package-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.05), transparent);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.package-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    display: block;
}

.package-logo-gemini {
    height: 2.8rem;
    max-width: 200px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .package-title {
        font-size: 1.125rem;
    }
}

.package-description {
    color: #9CA3AF;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: white;
    position: relative;
    z-index: 10;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.package-btn:hover {
    background-color: #EA552B;
    border-color: transparent;
}

.package-btn svg {
    transition: transform 0.3s;
}

.package-btn:hover svg {
    transform: translateX(4px);
}

.packages-footer {
    text-align: center;
    margin-top: 4rem;
}

.packages-footer p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.packages-link {
    color: #D4481F;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.packages-link:hover {
    color: #ffffff;
}

/* Target Audience Section */
.target-audience {
    padding: 6rem 0;
    background-color: #ffffff;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .target-audience {
        padding: 4.5rem 0;
    }
}

.target-audience .section-title {
    color: #111827;
}
.target-audience .section-description {
    color: #4B5563;
}
.target-audience .hero-badge {
    background-color: rgba(234, 85, 43, 0.1);
    color: #D4481F;
}
.target-audience .hero-badge svg {
    color: #D4481F;
}


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

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.audience-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .audience-card {
        padding: 1.875rem;
    }
}

.audience-card:hover {
    background-color: #ffffff;
    border-color: rgba(234, 85, 43, 0.4);
    box-shadow: 0 10px 30px -5px rgba(234, 85, 43, 0.1);
}

.audience-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.05), transparent);
    opacity: 1;
    z-index: 0;
}

.audience-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: rgba(234, 85, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4481F;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
    background-color: #D4481F;
    color: white;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .audience-title {
        font-size: 1.125rem;
    }
}

.audience-description {
    font-size: 1.0625rem;
    color: #4B5563;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .audience-description {
        font-size: 0.8rem;
    }
}

/* Trainer Section */
.trainer {
    padding: 8rem 0;
    background: linear-gradient(to bottom right, #13141F, #0A0B12);
    color: white;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
    .trainer {
        padding: 6rem 0 4rem 0;
    }
}

@media (min-width: 768px) {
    .trainer {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

.trainer-noise {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    mix-blend-mode: overlay;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
}

.trainer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .trainer-content {
        flex-direction: row;
    }
}

.trainer-text {
    flex: 1;
}

@media (min-width: 768px) {
    .trainer-text {
        order: 1;
    }
}

.trainer-name {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .trainer-name {
        font-size: 1.7rem;
    }
}

@media (min-width: 768px) {
    .trainer-name {
        font-size: 3.75rem;
    }
}

.trainer-intro {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.75;
    color: #D1D5DB;
}

@media (max-width: 767px) {
    .trainer-intro {
        font-size: 0.95rem;
    }
}

.trainer-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .trainer-description {
        font-size: 0.85rem;
    }
}

.trainer-description p {
    margin-bottom: 1.5rem;
}

.trainer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trainer-stat {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.stat-value {
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 0.25rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #D4481F;
}

.trainer-image-wrapper {
    flex: 1;
}

@media (min-width: 768px) {
    .trainer-image-wrapper {
        order: 2;
    }
}

.trainer-image {
    aspect-ratio: 4 / 5;
    border-radius: 2.5rem;
    overflow: hidden;
    background-color: #1A1B26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotate(3deg);
    transition: transform 0.5s;
}

@media (max-width: 767px) {
    .trainer-image {
        transform: rotate(0deg);
    }
}

.trainer-image:hover {
    transform: rotate(0deg);
}

.trainer-image img,
.trainer-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.trainer-image:hover img,
.trainer-image:hover video {
    transform: scale(1.05);
}

/* Training Program Section */
.training-program {
    padding: 8rem 0;
    background-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .training-program {
        padding: 6rem 0;
    }
}

.training-program .section-title {
    color: #111827;
}
.training-program .section-description {
    color: #4B5563;
}
.training-program .hero-badge {
    background-color: rgba(234, 85, 43, 0.1);
    color: #D4481F;
}
.training-program .hero-badge svg {
    color: #D4481F;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.program-module {
    background: #F9FAFB;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .program-module {
        padding: 1.875rem;
    }
}

.program-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4481F, #F07040);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-module:hover::before {
    opacity: 1;
}

.program-module::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.program-module:hover::after {
    opacity: 1;
}

.program-module:hover {
    background: #ffffff;
    border-color: rgba(234, 85, 43, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(234, 85, 43, 0.15);
}

.module-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    z-index: 10;
}

.module-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #D4481F;
    background-color: rgba(234, 85, 43, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
}

.module-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .module-title {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .module-title {
        font-size: 2rem;
    }
}

.module-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.module-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.module-topics li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

.module-topics li svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #D4481F;
}

.module-topics li span {
    flex: 1;
}

.program-footer {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(234, 85, 43, 0.08) 0%, rgba(234, 85, 43, 0.03) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(234, 85, 43, 0.2);
}

@media (min-width: 768px) {
    .program-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.program-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.highlight-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #D4481F, #F07040);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #0B0C15;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .testimonials {
        padding: 4.5rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #13141F;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonial-card:hover {
    border-color: rgba(234, 85, 43, 0.4);
}

.testimonial-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.05), transparent);
    opacity: 1;
    z-index: 0;
}

.testimonial-stars {
    display: flex;
    color: #D4481F;
    margin-bottom: 1rem;
    gap: 0.25rem;
    position: relative;
    z-index: 10;
}

.testimonial-quote {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .testimonial-quote {
        font-size: 0.85rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #D4481F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(234, 85, 43, 0.2);
}

.author-name {
    color: white;
    font-weight: 700;
}

.author-role {
    color: #6B7280;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: #0E0F17;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .faq {
        padding: 4.5rem 0;
    }
}

.faq-container {
    max-width: 56rem;
}

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

.faq-item {
    background-color: #13141F;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(234, 85, 43, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

@media (max-width: 767px) {
    .faq-question {
        font-size: 0.85rem;
        padding: 1.125rem;
    }
}

.faq-question:hover {
    color: #ffffff;
}

.faq-icon {
    color: #6B7280;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    color: #D4481F;
}

.faq-item.active .faq-icon .horizontal {
    opacity: 0;
}

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

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

.faq-answer-content {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    color: #9CA3AF;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #0B0C15;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .contact {
        padding: 4.5rem 0;
    }
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact .container {
    position: relative;
    z-index: 10;
}

.contact-box {
    background-color: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 2rem;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

@media (max-width: 767px) {
    .contact-box {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .contact-box {
        padding: 4rem;
    }
}

.contact-glow {
    display: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 1.7rem;
    }
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .contact-description {
        font-size: 0.85rem;
    }
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #D1D5DB;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4481F;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-detail-item svg {
    flex-shrink: 0;
    color: #D4481F;
}

.contact-detail-item a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: #D4481F;
}

.contact-form {
    background-color: #0B0C15;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .contact-form {
        padding: 1.5rem;
    }
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #1A1B26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4481F;
    background-color: #1A1B26;
}

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

/* Form Messages */
.form-message {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message svg {
    flex-shrink: 0;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Footer */
.footer {
    background-color: #0B0C15;
    color: white;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .footer {
        padding: 2.25rem 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #D4481F;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-description {
    color: #6B7280;
    font-size: 0.875rem;
}

.footer-links {
    /* Default visible */
}

@media (max-width: 767px) {
    .footer-links:nth-child(2),
    .footer-links:nth-child(3) {
        display: none;
    }
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.875rem;
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #D4481F;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #6B7280;
    font-size: 0.875rem;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

/* ============================================ */
/* Opieka PHP - Custom Styles                   */
/* ============================================ */

.package-card.featured {
    border: 2px solid #EA552B;
    position: relative;
}
.package-card.featured::before {
    content: 'Najpopularniejszy';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EA552B, #FF8F70);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4481F;
    margin: 1rem 0;
}

/* Select field styling */
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}
.form-group select:focus {
    outline: none;
    border-color: #D4481F;
    box-shadow: 0 0 0 3px rgba(234, 85, 43, 0.1);
}
.form-group select option {
    background: #1a1b2e;
    color: #ffffff;
}


/* ============================================ */
/* WIZARD - Kalkulator Wyceny Aplikacji         */
/* ============================================ */

/* Wizard Animations */
@keyframes wizardPulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(234, 85, 43, 0.3), 0 0 30px rgba(234, 85, 43, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(234, 85, 43, 0.5), 0 0 50px rgba(234, 85, 43, 0.2);
    }
}

@keyframes wizardSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wizardSlideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wizardSlideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-40px);
    }
}

@keyframes wizardSlideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

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

@keyframes priceCountUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 1. Calculator Section */
.calculator {
    padding: 8rem 0;
    background-color: #0E0F17;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

@media (max-width: 767px) {
    .calculator {
        padding: 5rem 0 4rem;
    }
}

.calculator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(234, 85, 43, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.calculator .container {
    position: relative;
    z-index: 10;
}

/* 2. Wizard Container */
.wizard-container {
    max-width: 1100px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
}

/* wizard-container: no background, no borders, no shadows */

/* 3. Wizard Progress */
.wizard-progress {
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .wizard-progress {
        margin-bottom: 2rem;
    }
}

/* 4. Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill,
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #EA552B, #F07040);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
}

.progress-fill::after,
.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    border-radius: 2px;
}

/* 5. Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.progress-step {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6B7280;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: all 0.3s;
    cursor: default;
}

.progress-step.active {
    border-color: #EA552B;
    background-color: #EA552B;
    color: white;
    box-shadow: 0 0 12px rgba(234, 85, 43, 0.4);
}

.progress-step.completed {
    border-color: #EA552B;
    background-color: rgba(234, 85, 43, 0.15);
    color: #EA552B;
}

/* Old .step-number / .step-label removed - progress-step styled directly above */
}

/* 6. Live Price */
.live-price {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.live-price.visible {
    display: flex !important;
}

.live-price-label {
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.live-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #EA552B, #FFD9CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

@media (max-width: 767px) {
    .live-price-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .live-price-value {
        font-size: 1.25rem;
    }
}

.live-price-note {
    font-size: 0.75rem;
    color: #6B7280;
}

/* 7. Wizard Step */
.wizard-steps {
    position: relative;
    min-height: 300px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* 8. Step Title */
.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .step-title {
        font-size: 1.35rem;
    }
}

@media (min-width: 768px) {
    .step-title {
        font-size: 2rem;
    }
}

.step-subtitle {
    color: #9CA3AF;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .step-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

/* 9. Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 768px) {
    .options-grid.two-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 10. Option Card */
.option-card {
    padding: 1.75rem;
    border-radius: 1.25rem;
    background-color: #13141F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.option-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: rgba(234, 85, 43, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA552B;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.option-card:hover .option-icon {
    transform: scale(1.1);
    background-color: #EA552B;
    color: white;
}

.option-card.selected .option-icon {
    background-color: #EA552B;
    color: white;
}

.option-content {
    position: relative;
    z-index: 10;
}

.option-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.375rem;
}

.option-desc {
    font-size: 0.8125rem;
    color: #9CA3AF;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .option-card {
        padding: 1.25rem;
    }
}

.option-card:hover {
    border-color: rgba(234, 85, 43, 0.3);
    transform: scale(1.02);
    background-color: rgba(19, 20, 31, 0.8);
}

.option-card:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(234, 85, 43, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

.option-card:active {
    transform: scale(0.98);
}

/* Selected state */
.option-card.selected {
    border-color: #EA552B;
    background-color: rgba(234, 85, 43, 0.08);
    box-shadow: 0 0 20px rgba(234, 85, 43, 0.15), inset 0 0 30px rgba(234, 85, 43, 0.03);
    animation: wizardPulseGlow 3s ease-in-out infinite;
}

.option-card.selected::after {
    content: '';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #EA552B;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.option-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4481F;
    margin-bottom: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 5;
}

.option-card.selected .option-card-icon {
    background-color: rgba(234, 85, 43, 0.15);
}

.option-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 5;
}

@media (max-width: 767px) {
    .option-card-title {
        font-size: 1rem;
    }
}

.option-card-description {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
    position: relative;
    z-index: 5;
}

.option-card-price {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B7280;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    position: relative;
    z-index: 5;
}

.option-card.selected .option-card-price {
    color: #EA552B;
    background: rgba(234, 85, 43, 0.1);
}

/* 11. Option Badge */
.option-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: 10;
    background: linear-gradient(135deg, #EA552B, #F07040);
    color: white;
}

.option-badge.popular {
    background: linear-gradient(135deg, #EA552B, #F07040);
    color: white;
}

.option-badge.recommended {
    background: linear-gradient(135deg, #7C3AED, #A78BFA);
    color: white;
}

/* 12. Features Section (Step 3) */
.features-section {
    margin-bottom: 2rem;
}

.features-label,
.features-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #D1D5DB;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* border-bottom on features-label */
.features-label {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #D1D5DB;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    white-space: nowrap;
}

.feature-toggle:hover {
    border-color: rgba(234, 85, 43, 0.4);
    background-color: rgba(234, 85, 43, 0.05);
    color: white;
}

.feature-toggle.selected {
    border-color: #EA552B;
    background-color: rgba(234, 85, 43, 0.12);
    color: white;
}

.feature-toggle.selected::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #EA552B;
    border-radius: 9999px;
    flex-shrink: 0;
}

.feature-toggle svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* 13. Included features (grayed out) */
.feature-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-check.included {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
    color: #6B7280;
    cursor: default;
    opacity: 0.6;
}

.feature-check.included::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4B5563;
    border-radius: 9999px;
    flex-shrink: 0;
}

/* 14. Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1rem;
}

@media (max-width: 767px) {
    .step-nav {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

.step-nav .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.step-nav .btn-back:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.step-nav .btn-back svg {
    transition: transform 0.3s;
}

.step-nav .btn-back:hover svg {
    transform: translateX(-4px);
}

.step-nav .btn-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background-color: #EA552B;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.025em;
    margin-left: auto;
}

.step-nav .btn-next:hover {
    background-color: #F07040;
    box-shadow: 0 0 20px rgba(234, 85, 43, 0.4);
}

.step-nav .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.step-nav .btn-next:disabled:hover {
    background-color: #EA552B;
    box-shadow: none;
}

.step-nav .btn-next svg {
    transition: transform 0.3s;
}

.step-nav .btn-next:hover svg {
    transform: translateX(4px);
}

/* 15. Result Container */
.result-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .result-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* 16. Result Card */
.result-card {
    background: rgba(19, 20, 31, 0.6);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .result-card {
        padding: 1.75rem;
    }
}

/* Gradient border effect */
.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, #EA552B, rgba(234, 85, 43, 0.2), transparent, rgba(234, 85, 43, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.result-card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.result-card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* 17. Result Price */
.result-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #EA552B, #FFD9CC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    white-space: nowrap;
    margin: 1rem 0 1.5rem;
}

@media (min-width: 768px) {
    .result-price {
        font-size: 2.5rem;
    }
}

.result-price-range {
    font-size: 1rem;
    color: #6B7280;
    margin-top: 0.25rem;
    font-weight: 400;
}

/* 18. Result Summary */
.result-summary {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.result-summary-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background-color: rgba(234, 85, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.result-summary-icon svg {
    width: 10px;
    height: 10px;
    color: #EA552B;
}

.result-summary-label {
    font-size: 0.8rem;
    color: #6B7280;
}

.result-summary-value {
    font-size: 0.9375rem;
    color: #D1D5DB;
    font-weight: 500;
}

/* 19. Result Form */
.result-form {
    background-color: #13141F;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    color: #D1D5DB;
}

.result-form h3,
.result-form p,
.result-form label,
.result-form span {
    color: inherit;
}

@media (max-width: 767px) {
    .result-form {
        padding: 1.5rem;
    }
}

.result-form .result-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.result-form .result-form-desc {
    font-size: 0.9375rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-form-subtitle {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Override contact-form base styles inside result-form */
.result-form .contact-form {
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

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

.result-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.result-form .form-group input,
.result-form .form-group textarea,
.result-form .form-group select {
    width: 100%;
    background-color: #1A1B26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.result-form .form-group input:focus,
.result-form .form-group textarea:focus,
.result-form .form-group select:focus {
    outline: none;
    border-color: #D4481F;
}

.result-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* 20. Result Contact Alt */
.result-contact-alt {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: #6B7280;
}

.result-contact-alt a {
    color: #EA552B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.result-contact-alt a:hover {
    color: #F07040;
}

.result-contact-alt-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #D1D5DB;
    font-weight: 600;
}

.result-contact-alt-phone svg {
    color: #EA552B;
}

/* Additional wizard utility classes */
.wizard-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
}

.wizard-info-box {
    background: rgba(234, 85, 43, 0.06);
    border: 1px solid rgba(234, 85, 43, 0.15);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.wizard-info-box svg {
    flex-shrink: 0;
    color: #EA552B;
    margin-top: 0.125rem;
}

.wizard-info-box p {
    font-size: 0.875rem;
    color: #D1D5DB;
    line-height: 1.6;
}

/* Wizard reset button / start over */
.wizard-restart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #6B7280;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.wizard-restart:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #D1D5DB;
}

/* Additional styles for HTML class alignment */

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #EA552B, #F07040);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 767px) {
    .result-title {
        font-size: 1rem;
    }
}

.result-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-note svg {
    flex-shrink: 0;
    color: #6B7280;
    margin-top: 0.125rem;
}

.result-note span {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.5;
}

/* result-form-title and result-form-desc styles are defined in wizard section above */

/* Result summary list items (generated by JS) */
.result-summary li {
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9375rem;
    color: #D1D5DB;
    line-height: 1.6;
}

.result-summary li strong {
    color: #9CA3AF;
    font-weight: 600;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.125rem;
}

/* Wizard section anchor offset */
.calculator .section-header-center {
    margin-bottom: 3rem;
}

/* Contact overlay from template */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 12, 21, 0.9), rgba(11, 12, 21, 0.7));
    z-index: 1;
}
