:root {
    --primary: #01B692;
    --dark: #065150;
    --white: #ffffff;
    --bg-dark-header: rgba(3, 10, 9, 0.85); /* Głęboka, elegancka czerń pasująca do dark mode */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GŁÓWNY NAGŁÓWEK (PO SCROLLOWANIU) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: var(--bg-dark-header) !important; 
    backdrop-filter: blur(16px) !important;            
    -webkit-backdrop-filter: blur(16px) !important;  
    border-bottom: 1px solid rgba(1, 182, 146, 0.15); /* Delikatna neonowa linia na dole */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);       /* Głęboki cień separujący */
}

/* Kolor linków po przewinięciu – teraz są białe, aby idealnie pasować do tła */
.site-header .main-nav .menu li a {
    color: var(--white) !important;
}

/* Kolor hamburgera po przewinięciu – również biały */
.site-header .hamburger .bar {
    background-color: var(--white) !important;
}


/* --- NAGŁÓWEK PRZEZROCZYSTY (PRZED SCROLLEM NA STRONIE GŁÓWNEJ) --- */
.site-header.transparent {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.site-header.transparent .main-nav .menu li a {
    color: var(--white) !important;
}

.site-header.transparent .hamburger .bar {
    background-color: var(--white) !important;
}


/* --- STRUKTURA I ELEMENTY WEWNĘTRZNE --- */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    margin-top: 30px;
    height: 45px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.main-nav .menu li a {
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    display: inline-block; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav .menu li a:hover {
    color: var(--primary) !important; 
    transform: translateY(-2px); 
}

/* Animowana linia pod linkami menu */
.main-nav .menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary); 
    transform: scaleX(0); 
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav .menu li a:hover::after {
    transform: scaleX(1); 
}


/* --- PRZYCISK CTA --- */
.mobile-cta {
    display: none;
}

.cta-button {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    margin-top: 20px;
}

.cta-button:hover {
    background: var(--white);
    color: #030a09 !important; /* Odwrócenie kolorów dla kontrastu */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 182, 146, 0.4);
}


/* --- HAMBURGER --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition);
}

.hamburger.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* --- RWD --- */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 10001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 10, 9, 0.98); /* Bardzo gęsta, ciemna zieleń mobilna */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: all 0.4s ease;
        z-index: 9999;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .main-nav .menu {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .main-nav .menu li a {
        font-size: 28px;
        color: white !important;
    }

    .mobile-cta {
        display: inline-block;
        margin-top: 30px;
    }

    .desktop-cta {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Strona główna --------------------------------------------------------------------------------------------------*/
/* Rozmyte kwadraty na zjęciu głównym*/
.hero {
    min-height: 100vh;
    width: 100%;
    background-image: 
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("../img/hero.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 120px; 
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    margin-top: 40px; 
    margin-bottom: 60px; 
    opacity: 0; 
    animation: fadeInUpFade 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-cards-container {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    margin-top: 0; 
    padding: 0 0 40px 0;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.07); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-radius: 12px; 
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px); 
    animation: cardEntrance 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hero-card:nth-child(1) { animation-delay: 0.3s; }
.hero-card:nth-child(2) { animation-delay: 0.45s; }
.hero-card:nth-child(3) { animation-delay: 0.6s; }
.hero-card:nth-child(4) { animation-delay: 0.75s; }
.hero-card:nth-child(5) { animation-delay: 0.9s; }

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: #ffffff; 
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.hero-card h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.15); 
    border-color: var(--primary); 
    transform: translateY(-8px) !important; 
    box-shadow: 0 15px 30px rgba(1, 182, 146, 0.2); 
}

.hero-card:hover .card-icon {
    color: var(--primary);
    transform: scale(1.1); 
}

.hero-card:hover h3 {
    color: #ffffff; 
}

@keyframes fadeInUpFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@media (max-width: 992px) {
    .cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 0;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        margin-bottom: 20px;
    }

    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .hero-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .hero-card {
        padding: 20px 15px;
    }
    
    .hero-card h3 {
        font-size: 14px;
    }

    br.desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .hero-card {
        flex-direction: row; 
        justify-content: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .card-icon {
        margin-bottom: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh !important;
        height: auto !important; 
        padding-top: 120px;
        padding-bottom: 40px;
        background-image: 
            linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
            url("../img/hero.jpg") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 34px;
        color: #ffffff !important;
    }

    .hero-content p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .hero-cards-container {
        width: 100%;
        background: transparent !important; 
        padding-bottom: 20px;
    }

    .cards-wrapper {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-card {
        background: rgba(255, 255, 255, 0.07) !important; 
        backdrop-filter: blur(10px) !important; 
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important; 
        border-radius: 12px;
        padding: 18px 20px;
        min-height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .card-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        flex-shrink: 0;
        color: #ffffff !important;
    }

    .hero-card h3 {
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 500;
        text-align: left;
        margin: 0;
    }

    .hero-card:active {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: var(--primary) !important;
    }

    .hero-card:nth-child(5) {
        grid-column: auto;
    }

    br.desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .hero-card {
        padding: 15px 20px;
    }
}
/* --- Stron  główna SEKCJA: CO NAS WYRÓŻNIA ------------------------------------------------------------------------------------------*/
.features-section {
    padding: 120px 0;
    background-color: #fcfcfc; 
    overflow: hidden;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr; 
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.image-backdrop {
    position: absolute;
    top: 30px;
    left: 0;
    width: 80%;
    height: 90%;
    background-color: rgba(1, 182, 146, 0.05); 
    border-radius: 24px;
    z-index: 1;
}

.features-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.features-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.features-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 45px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.3s ease;
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
    text-align: justify;      
    text-justify: inter-word;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item:hover .feature-icon-box {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(1, 182, 146, 0.3);
}

@media (max-width: 1024px) {
    .features-wrapper {
        grid-template-columns: 1fr; 
        gap: 60px;
    }
    
    .features-main-img {
        height: 400px; 
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }

    .features-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .feature-item {
        flex-direction: row; 
        gap: 20px;
    }
    
    .feature-icon-box {
        flex-shrink: 0; 
    }

    br.desktop-only {
        display: none;
    }
}

/* --- Strona główna Nasza wspólna droga do celu --------------------------------------------------------------------------*/
.process-section {
    padding: 120px 0;
    background-color: #0b1111;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-sticky-side {
    position: sticky;
    top: 140px; 
    height: fit-content;
}

.process-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff; 
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.process-lead {
    font-size: 16px;
    line-height: 1.7;
    color: #aebebe; 
    margin-bottom: 35px;
    text-align: justify;      
    text-justify: inter-word;
}

.process-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.button-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: #ffffff !important;
    color: #0b1111 !important;
    border-color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1);
}

.process-timeline-side {
    position: relative;
    padding-left: 30px; 
}

.timeline-line {
    position: absolute;
    left: 55px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: rgba(1, 182, 146, 0.15); 
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #121919; 
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    border: 4px solid #0b1111; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content {
    padding-top: 8px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #aebebe; 
    margin: 0;
    text-align: justify;    
    text-justify: inter-word;
}

.timeline-item:hover .timeline-number {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(1, 182, 146, 0.4);
}

.timeline-item:hover .timeline-content h3 {
    color: var(--primary);
}

@media (max-width: 992px) {
    .process-wrapper {
        grid-template-columns: 1fr; 
        gap: 50px;
    }

    .process-sticky-side {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-title {
        font-size: 32px;
    }

    .process-timeline-side {
        padding-left: 10px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        gap: 15px;
        margin-bottom: 40px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    br.desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-buttons {
        flex-direction: column; 
        width: 100%;
    }
    
    .process-buttons .cta-button {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- Strona główna Nasza pełna oferta  --------------------------------------------------------------------*/
.offer-section {
    padding: 100px 0;
    background: #0b1111;
    color: #ffffff;
    overflow: hidden;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-badge {
    background: rgba(1, 182, 146, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 38px;
    font-weight: 700;
    margin-top: 15px;
    color: #ffffff;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
}

.card-inner {
    position: relative;
    width: 100%;
    padding: 40px 30px;
    background: #121919;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius:20px;
    z-index:2;
    display:flex;
    flex-direction:column;
    transition:border-color .4s ease;
}

.card-glow {
    position:absolute;
    top:50%;
    left:50%;
    width:130%;
    height:130%;
    background:
    radial-gradient(
        circle,
        rgba(1,182,146,0.2) 0%,
        transparent 60%
    );
    transform:translate(-50%,-50%) scale(.5);
    opacity:0;
    z-index:1;
    transition:
        transform .5s ease,
        opacity .5s ease;
    pointer-events:none;
}

.offer-icon-wrapper {
    width:50px;
    height:50px;
    color:var(--primary);
    margin-bottom:25px;
    transition:transform .4s ease;
}

.offer-icon-wrapper svg {
    width:100%;
    height:100%;
}

.offer-card h3 {
    font-size:22px;
    margin:0 0 15px 0;
    font-weight:600;
    color:#fff;
}

.offer-desc {
    font-size:14px;
    line-height:1.6;
    color:#aebebe;
    margin-bottom:25px;
    flex-grow:1;
}

.offer-features {
    list-style:none;
    padding:20px 0 0 0;
    margin:0 0 30px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.offer-features li {
    font-size:14px;
    color:#fff;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:10px;
}

.check-icon {
    color:var(--primary);
    font-weight:bold;
}

.offer-link {
    font-size:14px;
    font-weight:600;
    color:var(--primary);
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    cursor:pointer;
}

.arrow-icon {
    width:16px;
    height:16px;
    transition:transform .3s ease;
}

@media (hover:hover) {
.offer-card:hover {
    transform:translateY(-8px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.4);
}

.offer-card:hover .card-inner {
    border-color:
    rgba(1,182,146,.3);
}

.offer-card:hover .card-glow {
    opacity:1;
    transform:
    translate(-50%,-50%)
    scale(1);
}

.offer-card:hover .offer-icon-wrapper {
    transform:
    scale(1.1)
    rotate(-5deg);
}

.offer-card:hover .arrow-icon {
    transform:
    translateX(5px);
}
}

@media(max-width:768px){
.offer-card {
    transform:none!important;
    box-shadow:none;
}

.card-glow {
    display:none;
}

.offer-card:hover {
    transform:none;
}

.offer-icon-wrapper {
    transform:none!important;
}
}

@media(max-width:992px){
.offer-grid {
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.offer-title {
    font-size:32px;
}
}

@media(max-width:768px){
.offer-section {
    padding:60px 0;
}

.offer-grid {
    grid-template-columns:1fr;
}

.card-inner {
    padding:30px 20px;
}
}

/* --- FAQ -----------------------------------------------------------------------------------*/
.faq-section {
    padding: 120px 0;
    background: #0b1111; 
    color: #ffffff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.4fr; 
    gap: 80px;
    align-items: flex-start;
}

.faq-sidebar {
    position: sticky;
    top: 120px; 
}

.faq-badge {
    background: rgba(1, 182, 146, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.faq-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #aebebe;
    margin: 0;
    text-align: justify;       
    text-justify: inter-word;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #121919; 
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 10px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content-inner {
    padding: 0 30px 30px 30px;
    text-align: justify;      
    text-justify: inter-word;
}

.faq-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #aebebe;
    margin: 0;
}

.faq-content strong {
    color: var(--primary); 
}

.faq-item.is-open {
    border-color: rgba(1, 182, 146, 0.3);
    background: #14201f; 
}

.faq-item.is-open .faq-trigger {
    color: var(--primary);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
    background-color: #ffffff; 
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    .faq-sidebar {
        position: static; 
    }
    .faq-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-trigger {
        padding: 22px 20px;
        font-size: 16px;
    }
    .faq-content-inner {
        padding: 0 20px 22px 20px;
    }
    .faq-content p {
        font-size: 14px;
    }

    br.desktop-only {
        display: none;
    }
}

/* --- Footer ----------------------------------------------------------------- */
.site-footer {
    background: #0b1111; 
    color: #ffffff;
    padding: 70px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 0.8fr; 
    gap: 40px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #aebebe;
    max-width: 260px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    color: #ffffff;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #aebebe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(4px); 
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    color: #aebebe;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link1 {
    color: #01b692;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.contact-link1:hover {
    color: var(--primary);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--primary); 
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(1, 182, 146, 0.3);
}

.footer-bottom {
    background: #080d0d; 
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 25px 0;
}

.footer-bottom-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #728282;
    margin: 0;
}

.footer-privacy-link {
    font-size: 13px;
    color: #728282;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 60px 0 0 0;
    }
    .footer-container {
        grid-template-columns: 1fr; 
        gap: 35px;
    }
    .footer-heading {
        margin-bottom: 15px;
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.wpcf7-submit {
    background: #2bc0a6;
    color: #fff;
    border-radius: 999px;
    padding: 18px 40px;
    font-weight: 800;
    transition: 0.3s;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .wpcf7-submit {
        width: 100%;
    }

    br.desktop-only {
        display: none;
    }
}