@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #071b33;
    --navy-light: #0d2949;
    --blue: #0878f9;
    --blue-dark: #0562d1;
    --cyan: #28c6ef;
    --orange: #ff9f1c;
    --green: #24b86a;
    --white: #ffffff;
    --background: #f4f8fc;
    --background-light: #f8fbfe;
    --text: #14243a;
    --text-light: #657287;
    --border: #dce6f0;
    --shadow: 0 18px 50px rgba(7, 27, 51, 0.10);
    --radius: 22px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}


.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.topbar-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-item,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-item {
    gap: 9px;
}

.topbar a {
    transition: color 0.25s ease;
}

.topbar a:hover {
    color: var(--white);
}

.topbar-icon {
    color: var(--cyan);
    font-size: 8px;
}

.topbar-separator {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.22);
}

.site-header {
    position: relative;
    z-index: 1000;
}

.main-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(7, 27, 51, 0.07);
    box-shadow: 0 4px 20px rgba(7, 27, 51, 0.04);
}

.header-container {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-icon {
    width: 47px;
    height: 47px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--blue), var(--cyan));
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(8, 120, 249, 0.25);
}

.brand-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.brand-text,
.footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-text strong,
.footer-brand strong {
    font-size: 18px;
    color: var(--navy);
    font-weight: 800;
}

.brand-text small,
.footer-brand small {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-top: 4px;
}

.main-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;
    padding: 32px 0;
    color: #445268;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--blue);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
}

.header-call-button {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    border-radius: 15px;
    background: var(--navy);
    color: var(--white);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.header-call-button:hover {
    transform: translateY(-2px);
    background: var(--blue);
}

.call-icon {
    width: 33px;
    height: 33px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
}

.header-call-button > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.header-call-button small {
    font-size: 10px;
    opacity: 0.72;
}

.header-call-button strong {
    font-size: 13px;
}

.mobile-menu-button {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--background);
    cursor: pointer;
    padding: 12px;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.hero-section {
    position: relative;
    background:
        radial-gradient(circle at 80% 10%, rgba(40, 198, 239, 0.13), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #eef6fd 100%);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 665px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding-top: 70px;
    padding-bottom: 85px;
}

.hero-background-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    width: 440px;
    height: 440px;
    right: -180px;
    top: -170px;
    border: 80px solid rgba(8, 120, 249, 0.04);
}

.hero-shape-two {
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -140px;
    background: rgba(40, 198, 239, 0.06);
}

.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(8, 120, 249, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 23px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(36, 184, 106, 0.12);
}

.hero-content h1 {
    max-width: 700px;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2.6px;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--blue);
}

.hero-description {
    max-width: 610px;
    margin-top: 24px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.primary-button,
.secondary-button {
    min-height: 58px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-button {
    gap: 13px;
    padding: 10px 21px;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(8, 120, 249, 0.25);
}

.primary-button:hover {
    transform: translateY(-3px);
    background: var(--blue-dark);
    box-shadow: 0 18px 38px rgba(8, 120, 249, 0.33);
}

.primary-button > span:first-child {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
}

.primary-button > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 11px;
}

.primary-button strong {
    font-size: 14px;
    margin-top: 3px;
}

.secondary-button {
    gap: 22px;
    padding: 0 23px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: var(--shadow);
}

.hero-features {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #536176;
    font-size: 12px;
    font-weight: 700;
}

.feature-check {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(36, 184, 106, 0.11);
    color: var(--green);
    font-size: 11px;
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.hero-image-placeholder {
    min-height: 500px;
    border-radius: 34px 34px 110px 34px;
    background:
        linear-gradient(145deg, rgba(7, 27, 51, 0.82), rgba(8, 120, 249, 0.78)),
        linear-gradient(135deg, #15395f, #0878f9);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    box-shadow: 0 35px 70px rgba(7, 27, 51, 0.2);
    overflow: hidden;
}

.placeholder-icon {
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 42px;
    margin-bottom: 24px;
}

.hero-image-placeholder strong {
    font-size: 25px;
    line-height: 1.35;
}

.hero-image-placeholder small {
    max-width: 300px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.experience-card,
.service-area-card {
    position: absolute;
    background: var(--white);
    box-shadow: var(--shadow);
}

.experience-card {
    top: 42px;
    right: -38px;
    width: 150px;
    padding: 17px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.experience-card strong {
    color: var(--blue);
    font-size: 25px;
}

.experience-card span {
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.service-area-card {
    left: -35px;
    bottom: 37px;
    min-width: 220px;
    padding: 15px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.area-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.1);
    color: var(--blue);
    font-size: 21px;
}

.service-area-card div {
    display: flex;
    flex-direction: column;
}

.service-area-card small {
    color: var(--text-light);
    font-size: 10px;
}

.service-area-card strong {
    color: var(--navy);
    font-size: 13px;
}

.trust-section {
    position: relative;
    z-index: 10;
    margin-top: -34px;
}

.trust-grid {
    background: var(--white);
    border: 1px solid rgba(7, 27, 51, 0.07);
    border-radius: 23px;
    box-shadow: 0 22px 55px rgba(7, 27, 51, 0.09);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 22px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    padding-top: 3px;
}

.trust-item strong {
    color: var(--navy);
    font-size: 14px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.6;
    margin-top: 4px;
}

.section-label {
    width: fit-content;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 48px;
}

.section-heading .section-label {
    margin-inline: auto;
}

.section-heading h2,
.process-content h2,
.about-preview-content h2 {
    color: var(--navy);
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.about-preview-content h2 span,
.process-content h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 620px;
    margin: 17px auto 0;
    color: var(--text-light);
    font-size: 15px;
}

.services-section {
    padding: 125px 0 110px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.service-card {
    position: relative;
    min-height: 340px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(8, 120, 249, 0.05);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 120, 249, 0.35);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scale(2.2);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    color: #9aa7b7;
    font-size: 11px;
    font-weight: 800;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.09);
    color: var(--blue);
    font-size: 23px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-top: 28px;
}

.service-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.75;
}

.service-card a {
    position: absolute;
    left: 28px;
    bottom: 25px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.service-card a:hover {
    color: var(--blue);
    gap: 17px;
}

.featured-service-card {
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 198, 239, 0.19), transparent 37%),
        var(--navy);
}

.featured-service-card .service-number,
.featured-service-card p {
    color: rgba(255, 255, 255, 0.65);
}

.featured-service-card h3,
.featured-service-card a {
    color: var(--white);
}

.featured-service-card .service-icon {
    background: rgba(255, 255, 255, 0.11);
    color: var(--cyan);
}

.services-bottom {
    margin-top: 34px;
    padding: 21px 25px;
    border-radius: 16px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}

.services-bottom p {
    color: var(--text-light);
    font-size: 13px;
}

.services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}


.process-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(40, 198, 239, 0.1), transparent 28%),
        var(--navy);
    overflow: hidden;
}

.process-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.light-label {
    color: var(--cyan);
}

.process-content h2 {
    color: var(--white);
}

.process-content h2 span {
    color: var(--cyan);
}

.process-content > p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.light-button {
    margin-top: 28px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.light-button:hover {
    transform: translateY(-3px);
    background: var(--cyan);
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 55px;
    bottom: 55px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 22px;
    padding: 23px 0;
}

.process-step-number {
    flex-shrink: 0;
    width: 51px;
    height: 51px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(8, 120, 249, 0.27);
}

.process-step h3 {
    color: var(--white);
    font-size: 17px;
}

.process-step p {
    max-width: 510px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.about-preview-section {
    padding: 115px 0;
    background: var(--background-light);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-preview-visual {
    position: relative;
    min-height: 500px;
}

.about-main-box {
    position: absolute;
    inset: 0 50px 40px 0;
    border-radius: 30px 30px 90px 30px;
    background:
        linear-gradient(145deg, rgba(8, 120, 249, 0.86), rgba(7, 27, 51, 0.92)),
        var(--blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(7, 27, 51, 0.18);
}

.about-main-box span {
    font-size: 60px;
}

.about-main-box strong {
    max-width: 280px;
    margin-top: 20px;
    font-size: 27px;
    line-height: 1.35;
}

.about-small-box {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 240px;
    padding: 21px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.about-small-box strong {
    color: var(--blue);
    font-size: 15px;
}

.about-small-box span {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 11px;
}

.about-preview-content > p {
    margin-top: 22px;
    color: var(--text-light);
    font-size: 14px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #445268;
    font-size: 12px;
    font-weight: 700;
}

.about-list li span {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(36, 184, 106, 0.1);
    color: var(--green);
}

.text-link {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    transition: gap 0.25s ease;
}

.text-link:hover {
    gap: 21px;
}

.cta-section {
    padding: 0 0 110px;
    background: var(--background-light);
}

.cta-box {
    position: relative;
    padding: 50px 55px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(40, 198, 239, 0.2), transparent 31%),
        var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(8, 120, 249, 0.23);
}

.cta-small-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin-top: 7px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    margin-top: 10px;
}

.cta-buttons {
    flex-shrink: 0;
    display: flex;
    gap: 12px;
}

.cta-phone-button,
.cta-whatsapp-button {
    min-height: 58px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.cta-phone-button {
    gap: 11px;
    padding: 8px 17px;
    background: var(--white);
    color: var(--navy);
}

.cta-phone-button > span:first-child {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.1);
    color: var(--blue);
}

.cta-phone-button > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cta-phone-button small {
    color: var(--text-light);
    font-size: 9px;
}

.cta-phone-button strong {
    font-size: 13px;
}

.cta-whatsapp-button {
    gap: 15px;
    padding: 0 19px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.cta-phone-button:hover,
.cta-whatsapp-button:hover {
    transform: translateY(-3px);
}

.site-footer {
    background: #051629;
    color: rgba(255, 255, 255, 0.67);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 0.9fr 1fr;
    gap: 60px;
    padding-top: 75px;
    padding-bottom: 60px;
}

.footer-brand .brand-icon {
    width: 43px;
    height: 43px;
}

.footer-brand strong {
    color: var(--white);
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.46);
}

.footer-brand-column > p {
    max-width: 340px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column li a {
    font-size: 12px;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column li a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    flex-direction: column;
    margin-bottom: 13px;
    font-size: 12px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.37);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    min-height: 60px;
    padding: 9px 17px 9px 10px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(36, 184, 106, 0.34);
    display: flex;
    align-items: center;
    gap: 10px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(36, 184, 106, 0.42);
}

.whatsapp-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    font-size: 21px;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.whatsapp-text small {
    font-size: 9px;
    opacity: 0.77;
}

.whatsapp-text strong {
    font-size: 11px;
}

.mobile-contact-bar {
    display: none;
}


@media (max-width: 1120px) {

    .header-container {
        gap: 22px;
    }

    .main-navigation {
        gap: 20px;
    }

    .header-call-button {
        display: none;
    }

    .hero-container {
        gap: 45px;
    }

    .experience-card {
        right: -10px;
    }

    .service-area-card {
        left: -10px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 12px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {

    .topbar {
        display: none;
    }

    .header-container {
        min-height: 76px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 76px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-15px);
        opacity: 0;
        visibility: hidden;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .main-navigation.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation a {
        padding: 14px;
        border-radius: 10px;
    }

    .main-navigation a::after {
        display: none;
    }

    .main-navigation a:hover,
    .main-navigation a.active {
        background: var(--background);
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 65px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image-wrapper {
        margin-inline: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-container,
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .process-content {
        text-align: center;
    }

    .process-content .section-label {
        margin-inline: auto;
    }

    .about-preview-visual {
        max-width: 600px;
        width: 100%;
        margin-inline: auto;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {

    body {
        padding-bottom: 64px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 8px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .hero-container {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 75px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.7px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-features {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-placeholder {
        min-height: 395px;
        padding: 40px 25px;
        border-radius: 27px 27px 75px 27px;
    }

    .experience-card {
        top: 18px;
        right: -5px;
    }

    .service-area-card {
        left: -4px;
        bottom: 20px;
    }

    .trust-section {
        margin-top: -25px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        padding: 17px;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding: 17px 6px;
        margin: 0;
    }

    .trust-item:nth-child(-n + 2) {
        padding-bottom: 17px;
        margin-bottom: 0;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .services-section,
    .about-preview-section {
        padding: 85px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .process-section {
        padding: 85px 0;
    }

    .process-container {
        gap: 40px;
    }

    .process-step {
        gap: 15px;
    }

    .about-preview-visual {
        min-height: 400px;
    }

    .about-main-box {
        inset: 0 22px 35px 0;
    }

    .about-small-box {
        min-width: 210px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding-bottom: 85px;
    }

    .cta-box {
        padding: 38px 22px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-phone-button,
    .cta-whatsapp-button {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 60px;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .footer-bottom-container {
        padding: 18px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }

    .whatsapp-button {
        display: none;
    }

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        height: 64px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: 0 -7px 25px rgba(7, 27, 51, 0.09);
    }

    .mobile-contact-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--white);
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-contact-bar a:first-child {
        background: var(--blue);
    }

    .mobile-contact-bar a:last-child {
        background: var(--green);
    }
}

.page-hero {
    position: relative;
    padding: 95px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(40, 198, 239, 0.14), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #edf6fd 100%);
    overflow: hidden;
}

.page-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 85px;
}

.page-hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-circle-one {
    width: 430px;
    height: 430px;
    right: -180px;
    top: -210px;
    border: 75px solid rgba(8, 120, 249, 0.04);
}

.page-hero-circle-two {
    width: 250px;
    height: 250px;
    left: -140px;
    bottom: -130px;
    background: rgba(40, 198, 239, 0.06);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
}

.page-breadcrumb a {
    transition: color 0.25s ease;
}

.page-breadcrumb a:hover {
    color: var(--blue);
}

.page-breadcrumb strong {
    color: var(--blue);
}

.page-label {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 120, 249, 0.09);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.page-hero-content h1 {
    max-width: 720px;
    margin-top: 20px;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -2.3px;
}

.page-hero-content h1 span {
    display: block;
    color: var(--blue);
}

.page-hero-content > p {
    max-width: 640px;
    margin-top: 23px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.85;
}

.page-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 31px;
}

.page-whatsapp-button {
    min-height: 58px;
    padding: 0 22px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(36, 184, 106, 0.22);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.page-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(36, 184, 106, 0.32);
}

.page-hero-info {
    position: relative;
    padding: 42px;
    border-radius: 30px 30px 85px 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 198, 239, 0.2), transparent 37%),
        var(--navy);
    color: var(--white);
    box-shadow: 0 30px 65px rgba(7, 27, 51, 0.18);
}

.page-hero-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 32px;
    margin-bottom: 25px;
}

.page-hero-info > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero-info > strong {
    display: block;
    max-width: 390px;
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.35;
}

.page-hero-info > p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.page-hero-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.page-hero-info-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
}

.page-hero-info-list div span {
    width: 23px;
    height: 23px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(40, 198, 239, 0.13);
    color: var(--cyan);
    font-size: 10px;
}

.services-detail-section {
    padding: 115px 0;
}

.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 500px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(7, 27, 51, 0.06);
}

.service-detail-card.reverse {
    grid-template-columns: 1.2fr 0.8fr;
}

.service-detail-card.reverse .service-detail-visual {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-visual {
    position: relative;
    min-height: 100%;
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    color: var(--white);
    overflow: hidden;
}

.service-detail-visual::before,
.service-detail-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-detail-visual::before {
    width: 270px;
    height: 270px;
    right: -120px;
    top: -110px;
    border: 50px solid rgba(255, 255, 255, 0.08);
}

.service-detail-visual::after {
    width: 160px;
    height: 160px;
    left: -80px;
    bottom: -80px;
    background: rgba(255, 255, 255, 0.06);
}

.service-detail-blue {
    background: linear-gradient(145deg, #0878f9, #0654b4);
}

.service-detail-dark {
    background: linear-gradient(145deg, #0d2949, #051629);
}

.service-detail-cyan {
    background: linear-gradient(145deg, #12a9dc, #0878a8);
}

.service-detail-orange {
    background: linear-gradient(145deg, #ff9f1c, #e67800);
}

.service-detail-green {
    background: linear-gradient(145deg, #24b86a, #12814a);
}

.service-detail-purple {
    background: linear-gradient(145deg, #7557d8, #4c35a1);
}

.service-detail-number {
    position: absolute;
    top: 32px;
    left: 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 800;
}

.service-detail-icon {
    position: relative;
    z-index: 2;
    width: 82px;
    height: 82px;
    border-radius: 25px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(7px);
    font-size: 37px;
    margin-bottom: 24px;
}

.service-detail-visual strong {
    position: relative;
    z-index: 2;
    max-width: 330px;
    font-size: 31px;
    line-height: 1.3;
}

.service-detail-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-label {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-detail-content h2 {
    max-width: 650px;
    margin-top: 10px;
    color: var(--navy);
    font-size: clamp(27px, 3vw, 37px);
    line-height: 1.25;
    letter-spacing: -1px;
}

.service-detail-content > p {
    max-width: 720px;
    margin-top: 18px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.85;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
    margin-top: 25px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #445268;
    font-size: 12px;
    font-weight: 700;
}

.service-detail-features li span {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(36, 184, 106, 0.1);
    color: var(--green);
    font-size: 10px;
}

.service-detail-button {
    width: fit-content;
    margin-top: 29px;
    min-height: 49px;
    padding: 0 18px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    gap: 17px;
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.service-detail-button:hover {
    transform: translateY(-3px);
    background: var(--blue);
}

.service-benefits-section {
    padding: 0 0 115px;
}

.service-benefits-box {
    padding: 65px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 10%, rgba(40, 198, 239, 0.11), transparent 27%),
        var(--navy);
}

.service-benefits-heading {
    max-width: 720px;
}

.service-benefits-heading h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.service-benefits-heading h2 span {
    color: var(--cyan);
}

.service-benefits-heading p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
    margin-top: 45px;
}

.service-benefit {
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.04);
}

.service-benefit > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
}

.service-benefit strong {
    display: block;
    margin-top: 15px;
    color: var(--white);
    font-size: 16px;
}

.service-benefit p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.services-contact-section {
    padding: 0 0 110px;
}

.services-contact-box {
    padding: 52px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(40, 198, 239, 0.17), transparent 30%),
        var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 24px 55px rgba(8, 120, 249, 0.22);
}

.services-contact-content {
    max-width: 680px;
}

.services-contact-content > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-contact-content h2 {
    margin-top: 8px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.services-contact-content p {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.services-contact-actions {
    flex-shrink: 0;
    display: flex;
    gap: 12px;
}

.services-contact-phone,
.services-contact-whatsapp {
    min-height: 59px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.services-contact-phone {
    gap: 12px;
    padding: 8px 17px;
    background: var(--white);
    color: var(--navy);
}

.services-contact-phone > span {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.1);
    color: var(--blue);
}

.services-contact-phone div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.services-contact-phone small {
    color: var(--text-light);
    font-size: 9px;
}

.services-contact-phone strong {
    font-size: 13px;
}

.services-contact-whatsapp {
    gap: 18px;
    padding: 0 20px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.services-contact-phone:hover,
.services-contact-whatsapp:hover {
    transform: translateY(-3px);
}

@media (max-width: 1000px) {

    .page-hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-breadcrumb,
    .page-hero-buttons {
        justify-content: center;
    }

    .page-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-info {
        width: 100%;
        max-width: 650px;
        margin-inline: auto;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-visual,
    .service-detail-card.reverse .service-detail-content {
        order: initial;
    }

    .service-detail-visual {
        min-height: 370px;
    }

    .service-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-contact-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 650px) {

    .page-hero {
        padding: 65px 0;
    }

    .page-hero-content h1 {
        font-size: 41px;
        letter-spacing: -1.6px;
    }

    .page-hero-content > p {
        font-size: 14px;
    }

    .page-hero-buttons {
        flex-direction: column;
    }

    .page-hero-buttons .primary-button,
    .page-whatsapp-button {
        width: 100%;
    }

    .page-hero-info {
        padding: 32px 25px;
        border-radius: 25px 25px 65px 25px;
    }

    .page-hero-info > strong {
        font-size: 24px;
    }

    .services-detail-section {
        padding: 85px 0;
    }

    .services-detail-list {
        gap: 25px;
    }

    .service-detail-card {
        min-height: auto;
        border-radius: 23px;
    }

    .service-detail-visual {
        min-height: 310px;
        padding: 32px 26px;
    }

    .service-detail-visual strong {
        font-size: 26px;
    }

    .service-detail-content {
        padding: 35px 25px;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
    }

    .service-detail-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .service-benefits-section {
        padding-bottom: 85px;
    }

    .service-benefits-box {
        padding: 40px 24px;
    }

    .service-benefits-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .services-contact-section {
        padding-bottom: 85px;
    }

    .services-contact-box {
        padding: 38px 23px;
    }

    .services-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .services-contact-phone,
    .services-contact-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

.about-hero-card {
    position: relative;
    padding: 44px;
    border-radius: 30px 30px 85px 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 198, 239, 0.2), transparent 37%),
        var(--navy);
    color: var(--white);
    box-shadow: 0 30px 65px rgba(7, 27, 51, 0.18);
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    border: 48px solid rgba(255, 255, 255, 0.05);
}

.about-hero-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 32px;
    margin-bottom: 25px;
}

.about-hero-card > span {
    position: relative;
    z-index: 2;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-card > strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 420px;
    margin-top: 9px;
    font-size: 29px;
    line-height: 1.35;
}

.about-hero-card > p {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.about-hero-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.about-hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
}

.about-hero-features div span {
    width: 23px;
    height: 23px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(40, 198, 239, 0.13);
    color: var(--cyan);
    font-size: 10px;
}

.about-story-section {
    padding: 115px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-story-visual {
    position: relative;
    min-height: 520px;
}

.about-story-main-box {
    position: absolute;
    inset: 0 50px 45px 0;
    border-radius: 32px 32px 100px 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 198, 239, 0.18), transparent 34%),
        linear-gradient(145deg, var(--blue), var(--navy));
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 48px;
    box-shadow: 0 30px 65px rgba(7, 27, 51, 0.18);
}

.about-story-main-box > span {
    width: 78px;
    height: 78px;
    border-radius: 23px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 35px;
    margin-bottom: 25px;
}

.about-story-main-box strong {
    max-width: 360px;
    font-size: 31px;
    line-height: 1.3;
}

.about-story-main-box p {
    max-width: 370px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.about-story-small-box {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 270px;
    padding: 23px;
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.about-story-small-box strong {
    color: var(--blue);
    font-size: 15px;
}

.about-story-small-box span {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 11px;
}

.about-story-content h2 {
    color: var(--navy);
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.about-story-content h2 span {
    color: var(--blue);
}

.about-story-content > p {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;
}

.about-story-highlight {
    position: relative;
    margin-top: 28px;
    padding: 25px 27px 25px 55px;
    border-left: 3px solid var(--blue);
    border-radius: 0 16px 16px 0;
    background: var(--background);
}

.about-story-highlight > span {
    position: absolute;
    left: 20px;
    top: 9px;
    color: var(--blue);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.about-story-highlight p {
    color: #445268;
    font-size: 13px;
    font-weight: 700;
}

.about-values-section {
    padding: 110px 0;
    background: var(--background-light);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    position: relative;
    min-height: 330px;
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-value-card::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(8, 120, 249, 0.05);
    transition: transform 0.35s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 120, 249, 0.34);
    box-shadow: var(--shadow);
}

.about-value-card:hover::before {
    transform: scale(2);
}

.about-value-number {
    color: #9aa7b7;
    font-size: 11px;
    font-weight: 800;
}

.about-value-icon {
    width: 58px;
    height: 58px;
    margin-top: 25px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.09);
    font-size: 25px;
}

.about-value-card h3 {
    margin-top: 25px;
    color: var(--navy);
    font-size: 19px;
}

.about-value-card p {
    margin-top: 11px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.75;
}

.about-approach-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 10% 5%, rgba(40, 198, 239, 0.11), transparent 27%),
        var(--navy);
}

.about-approach-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.about-approach-content h2 {
    color: var(--white);
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.about-approach-content h2 span {
    color: var(--cyan);
}

.about-approach-content > p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.about-approach-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.about-approach-item {
    min-height: 190px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.04);
}

.about-approach-item > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
}

.about-approach-item h3 {
    margin-top: 14px;
    color: var(--white);
    font-size: 16px;
}

.about-approach-item p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.about-service-area-section {
    padding: 100px 0;
    background: var(--background-light);
}

.about-service-area-box {
    padding: 52px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(40, 198, 239, 0.17), transparent 30%),
        var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 24px 55px rgba(8, 120, 249, 0.22);
}

.about-service-area-content {
    max-width: 680px;
}

.about-service-area-content > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-service-area-content h2 {
    margin-top: 8px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.about-service-area-content p {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.about-service-area-actions {
    flex-shrink: 0;
    display: flex;
    gap: 12px;
}

.about-area-phone,
.about-area-whatsapp {
    min-height: 59px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.about-area-phone {
    gap: 12px;
    padding: 8px 17px;
    background: var(--white);
    color: var(--navy);
}

.about-area-phone > span {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(8, 120, 249, 0.1);
    color: var(--blue);
}

.about-area-phone div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.about-area-phone small {
    color: var(--text-light);
    font-size: 9px;
}

.about-area-phone strong {
    font-size: 13px;
}

.about-area-whatsapp {
    gap: 18px;
    padding: 0 20px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.about-area-phone:hover,
.about-area-whatsapp:hover {
    transform: translateY(-3px);
}

@media (max-width: 1000px) {

    .about-story-grid,
    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-story-visual {
        width: 100%;
        max-width: 620px;
        margin-inline: auto;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-approach-content {
        text-align: center;
    }

    .about-approach-content .section-label {
        margin-inline: auto;
    }

    .about-service-area-box {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 650px) {

    .about-hero-card {
        padding: 33px 25px;
        border-radius: 25px 25px 65px 25px;
    }

    .about-hero-card > strong {
        font-size: 24px;
    }

    .about-story-section,
    .about-values-section,
    .about-approach-section,
    .about-service-area-section {
        padding: 85px 0;
    }

    .about-story-visual {
        min-height: 430px;
    }

    .about-story-main-box {
        inset: 0 22px 35px 0;
        padding: 33px 25px;
    }

    .about-story-main-box strong {
        font-size: 26px;
    }

    .about-story-small-box {
        min-width: 215px;
        padding: 19px;
    }

    .about-story-content h2 {
        font-size: 35px;
    }

    .about-values-grid,
    .about-approach-list {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-approach-item {
        min-height: auto;
    }

    .about-service-area-box {
        padding: 38px 23px;
    }

    .about-service-area-actions {
        width: 100%;
        flex-direction: column;
    }

    .about-area-phone,
    .about-area-whatsapp {
        width: 100%;
        justify-content: center;
    }

}

