/* ===== GENERAL ===== */
body {
    font-family: 'Rubik', sans-serif;
}

/* ===== INTRO BLOCK ===== */
section:has(section.intro) {
    padding: 0;
}

.intro {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.intro__inner {
    display: flex;
    gap: 25px;
    align-items: flex-end;
}

.intro__img {
    display: block;
    max-width: 608px;
    width: 100%;
    object-fit: contain;
    margin-left: -140px;
}

.intro__info {
    padding: 79px 0px 129px;
}

.intro__breadcrumbs {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.intro__breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.intro__breadcrumbs a:hover {
    color: #1aa5e4;
    text-decoration: underline;
}

.intro__breadcrumbs span {
    color: #1aa5e4;
}

.intro__title {
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.intro__text {
    margin: 30px 0px;
    font-size: 18px;
    line-height: normal;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro__text p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

.intro__buttons {
    display: flex;
    gap: 15px;
}

.call--button {
    padding: 21px 22px;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
    background: #FFFFFF;
    border: 3px solid #28A6E2;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: .2s;
    justify-content: center;
    color: #000;
    position: relative;
    z-index: 1;
}

.call--button:hover {
    color: #000 !important;
    transform: scale(.95);
}

.book--button {
    background: linear-gradient(180deg, #00C6FF 0%, #0072FF 100%);
    box-shadow: 0px 0px 20px 20px rgba(1, 136, 255, 0.40);
    border-radius: 10px;
    padding: 21px 22px;
    display: flex;
    gap: 4px;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    transition: .2s;
    justify-content: center;
}

.book--button:hover {
    color: #FFFFFF !important;
    transform: scale(.95);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, #1aa5e4 0%, #0f7bb3 50%, #1aa5e4 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

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

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

.trust-bar__item {
    text-align: center;
    padding: 20px;
}

.trust-bar__icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ffffff;
}

.trust-bar__title {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.trust-bar__desc {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== PROBLEM BLOCK ===== */
.problem {
    padding: 60px 0;
    background-color: #f8fafc;
}

.problem__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .problem__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.problem__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.problem__content h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
    color: #0f172a;
}

.problem__content p {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 16px;
}

.problem__content ul {
    margin: 0 0 20px 20px;
    padding-left: 0;
}

.problem__content li {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .problem__image {
        order: -1;
    }
}

/* ===== SERVICE SCOPE ===== */
.service-scope {
    padding: 60px 0;
}

.service-scope__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-scope__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .service-scope__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.service-scope__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.service-scope__content h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
    color: #0f172a;
}

.service-scope__content p {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 16px;
}

.service-scope__content ul {
    margin: 0 0 20px 20px;
    padding-left: 0;
}

.service-scope__content li {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .service-scope__image {
        order: -1;
    }
}

/* ===== PROCESS BLOCK ===== */
.process {
    padding: 60px 0;
    background-color: #f8fafc;
}

.process__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process__header {
    text-align: center;
    margin-bottom: 48px;
}

.process__header h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 12px;
    color: #0f172a;
}

.process__header p {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #475569;
}

.process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.process__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.process__number {
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1aa5e4;
    margin-bottom: 20px;
    line-height: 1;
}

.process__card h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.process__card p {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* ===== LOCAL CONTEXT ===== */
.local-context {
    padding: 60px 0;
}

.local-context__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.local-context__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .local-context__grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.local-context__content h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
    color: #0f172a;
}

.local-context__content h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: #0f172a;
}

.local-context__content p {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 16px;
}

.local-context__content ul {
    margin: 0 0 20px 20px;
    padding-left: 0;
}

.local-context__content li {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 8px;
}

.local-context__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .local-context__image {
        order: -1;
    }
}

/* ===== WHY US ===== */
.why-us {
    padding: 60px 0;
    background-color: #f8fafc;
}

.why-us__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-us__header {
    text-align: center;
    margin-bottom: 48px;
}

.why-us__header h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 0;
    color: #0f172a;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.why-us__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-us__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-us__card div:nth-child(2) {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.why-us__card p {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

.why-us__separator {
    width: 50px;
    height: 3px;
    background-color: #1aa5e4;
    margin: 16px 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 0;
}

.faq .separator {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.faq .separator:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 2px;
    width: 25px;
    height: 4px;
    background-color: #1aa5e4;
}

.faq .separator:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 75px;
    height: 2px;
    background-color: #1aa5e4;
}

.faq__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__heading-wrap h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    color: #0f172a;
    margin-bottom: 16px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

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

@media (min-width: 600px) {
    .faq__inner {
        gap: 20px;
    }
}

.faq details {
    background: #f4f6f8;
    border-radius: 10px;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.faq summary {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    margin: 0;
    font-weight: 400;
    font-size: clamp(18px, 0.8rem + 0.8vw, 20px);
    line-height: 1.35;
    color: #334155;
    cursor: pointer;
    list-style: none;
    text-align: left;
    font-family: 'Rubik', sans-serif;
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
    display: none;
}

.faq summary::after {
    content: "";
    box-sizing: border-box;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1aa5e4;
    background-image:
        linear-gradient(180deg, #fff 0%, #fff 100%),
        linear-gradient(90deg, #fff 0%, #fff 100%);
    background-size: 2px 12px, 12px 2px;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
}

.faq details[open] summary::after {
    background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
    background-size: 12px 2px;
    background-position: center center;
    background-repeat: no-repeat;
}

.faq details[open] summary {
    min-height: unset;
    padding-bottom: 0.75rem;
}

.faq__answer {
    margin: 0;
    padding: 0 1.75rem 1.5rem;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    font-family: 'Rubik', sans-serif;
}

.faq__answer a {
    color: #1d4ed8;
    font-weight: 600;
}

/* ===== PRIMARY CTA ===== */
.primary-cta {
    padding: 60px 0;
    background-color: #fbbf24;
}

.primary-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.primary-cta__title {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.primary-cta__text {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #334155;
    margin-bottom: 32px;
}

.primary-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta__btn {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.primary-cta__btn:hover {
    transform: scale(0.98);
}

.primary-cta__btn--primary {
    background-color: #0f172a;
    color: #ffffff;
}

.primary-cta__btn--primary:hover {
    background-color: #1e293b;
    color: #ffffff;
}

.primary-cta__btn--secondary {
    background-color: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.primary-cta__btn--secondary:hover {
    background-color: rgba(15, 23, 42, 0.05);
    color: #0f172a;
}

/* ===== SERVICE AREA ===== */
.service-area {
    padding: 60px 0;
    background-color: #f8fafc;
}

.service-area__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-area__header {
    text-align: center;
    margin-bottom: 48px;
}

.service-area__header h2 {
    font-family: 'Rubik', sans-serif;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 12px;
    color: #0f172a;
}

.service-area__header p {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #475569;
}

.service-area__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

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

.service-area__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-area__card h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
    padding-bottom: 12px;
    border-bottom: 3px solid #1aa5e4;
    display: inline-block;
}

.service-area__card p {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
    .intro {
        position: relative;
        overflow: hidden;
    }
    .intro__img {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    .intro__info {
        position: relative;
        z-index: 2;
        max-width: 600px;
    }
}

@media (max-width: 1050px) {
    .intro__title {
        font-size: 45px;
        line-height: 60px;
    }
}

@media (max-width: 990px) {
    .intro__buttons {
        flex-direction: column;
    }
    .intro__text {
        font-size: 18px;
    }
    .intro__buttons {
        max-width: 350px;
    }
    .intro__info {
        max-width: 500px;
    }
}

@media (max-width: 820px) {
    .intro__img {
        right: -55px;
    }
}

@media (max-width: 785px) {
    .intro__info {
        padding: 40px 0px 50px;
    }
}

@media (max-width: 767px) {
    .intro__title {
        margin-bottom: 30px;
        text-align: center;
    }
    .intro__img {
        display: none;
    }
    .intro__info {
        max-width: 100%;
    }
    .intro__title {
        text-align: center;
    }
    .intro__inner {
        max-width: 570px;
        margin: 0 auto;
    }
    .intro__buttons {
        margin: 0 auto;
        max-width: 100%;
    }
    .intro__breadcrumbs {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .primary-cta {
        padding: 40px 0;
    }
    .primary-cta__btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .primary-cta__text {
        font-size: 16px;
    }
}

@media (max-width: 625px) {
    .intro__title {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 590px) {
    .intro__title {
        font-size: 36px;
        line-height: 45px;
    }
    .intro__text {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 470px) {
    .intro__title {
        font-size: 30px;
        line-height: 42px;
    }
}