/* FUTURA Centre - static, dependency-free design system */
:root {
    --blue: #2f4f88;
    --green: #4fa36c;
    --ink: #101a2b;
    --muted: #697386;
    --paper: #f5f5f1;
    --line: #dfe4e7;
    --dark: #0b1120;
    --dark-surface: #121c2e;
    --white: #fff;
    --accent: #f2c56b;
    --radius: 24px;
    --shadow: 0 18px 60px rgba(16, 26, 43, .1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.55;
    overflow-x: hidden
}

body.is-dark {
    --paper: #0b1120;
    --ink: #f7f9fb;
    --muted: #a9b3c2;
    --line: #2a3548;
    background: var(--dark)
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(1180px, calc(100% - 64px));
    margin-inline: auto
}

.section {
    padding: 132px 0
}

.section-light {
    background: var(--paper)
}

.section-dark {
    color: var(--white);
    background: var(--dark)
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    padding: 12px 18px;
    background: var(--accent);
    color: var(--ink);
    z-index: 100
}

.skip-link:focus {
    top: 16px
}

.announcement {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 7px 48px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    letter-spacing: .02em;
    position: relative
}

.announcement p {
    margin: 0
}

.announcement-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 8px
}

.announcement a {
    font-weight: 700
}

.announcement-close {
    position: absolute;
    right: 20px;
    color: #fff !important
}

.icon-button {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 5px
}

.site-header {
    height: 82px;
    position: sticky;
    top: 0;
    z-index: 20;
    transition: background .25s, box-shadow .25s, color .25s;
    background: rgba(245, 245, 241, .9);
    backdrop-filter: blur(14px)
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(16, 26, 43, .08)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font: 800 19px/1 "Manrope", sans-serif;
    letter-spacing: -.04em
}

.brand img {
    width: 37px;
    height: 37px;
    object-fit: contain
}

.brand>span>span {
    font-weight: 600;
    color: var(--green)
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted)
}

.primary-nav a {
    transition: color .2s
}

.primary-nav a:hover {
    color: var(--blue)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700
}

.language-switcher span {
    color: var(--muted)
}

.lang-btn {
    border: 0;
    padding: 5px 2px;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700
}

.lang-btn.is-active {
    color: var(--blue)
}

.theme-toggle {
    font-size: 18px;
    color: var(--blue)
}

.menu-toggle {
    display: none
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s, background .2s, box-shadow .2s
}

.button:hover {
    transform: translateY(-3px)
}

.button-small {
    padding: 11px 16px;
    font-size: 12px
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 8px 20px rgba(47, 79, 136, .18)
}

.button-accent {
    color: var(--ink);
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(242, 197, 107, .2)
}

.button-dark {
    color: #fff;
    background: var(--ink)
}

.button-outline {
    border-color: var(--blue);
    color: var(--blue)
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.eyebrow>span:first-child {
    width: 24px;
    height: 2px;
    background: currentColor
}

.eyebrow.light {
    color: var(--accent)
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -.055em;
    margin: 0
}

h1 {
    font-size: clamp(48px, 6.3vw, 86px);
    line-height: 1.02;
    font-weight: 800
}

h2 {
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.06
}

h3 {
    font-size: 23px
}

em {
    font-style: normal;
    color: var(--green)
}

.light em {
    color: var(--accent)
}

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #0b1120 0%, #13294a 52%, #24495a 100%)
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 73% 44%, rgba(79, 163, 108, .22), transparent 28%), radial-gradient(circle at 13% 80%, rgba(47, 79, 136, .22), transparent 34%);
    pointer-events: none
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to right, black, transparent 80%)
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-copy {
    padding: 60px 0
}

.hero h1 {
    margin: 25px 0 27px;
    max-width: 700px
}

.hero-lead {
    max-width: 490px;
    color: #c6d0dc;
    font-size: 17px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 35px
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800
}

.text-link span {
    font-size: 18px;
    transition: transform .2s
}

.text-link:hover span {
    transform: translate(3px, -3px)
}

.light-link {
    color: #fff
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 72px;
    color: #aab7c8;
    font-size: 12px
}

.note-mark {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border: 1px solid rgba(242, 197, 107, .6);
    border-radius: 50%;
    color: var(--accent)
}

.hero-visual {
    height: 620px;
    position: relative;
    display: grid;
    place-items: center
}

.visual-panel {
    height: 430px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 180px 180px 34px 34px;
    padding: 22px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25)
}

.panel-top,
.panel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a9bbca;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.panel-status {
    color: #a8d5b4
}

.panel-status i {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--green);
    margin-right: 4px
}

.globe {
    width: 235px;
    height: 235px;
    margin: 64px auto 45px;
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at 35% 30%, rgba(79, 163, 108, .5), rgba(47, 79, 136, .1) 44%, transparent 45%)
}

.globe:before,
.globe:after {
    content: "";
    position: absolute;
    inset: 17px 52px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%
}

.globe:after {
    inset: 52px 17px
}

.globe-latitude {
    position: absolute;
    inset: 82px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%
}

.globe-longitude {
    position: absolute;
    inset: 0 104px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%
}

.globe-pin {
    position: absolute;
    color: var(--accent);
    font-size: 15px;
    animation: pulse 2.5s infinite
}

.pin-one {
    top: 36px;
    left: 120px
}

.pin-two {
    top: 104px;
    right: 29px;
    animation-delay: .6s
}

.pin-three {
    bottom: 44px;
    left: 56px;
    animation-delay: 1.1s
}

.panel-bottom {
    position: relative
}

.panel-bottom strong {
    font-size: 18px;
    color: #fff
}

.route-line {
    height: 1px;
    flex: 1;
    margin: 0 14px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    position: relative
}

.route-line:after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    right: 0;
    top: -2px
}

.panel-bottom small {
    position: absolute;
    top: 31px;
    left: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 10px
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    transform: rotate(-25deg)
}

.orbit-one {
    height: 520px;
    width: 270px
}

.orbit-two {
    width: 540px;
    height: 220px
}

.visual-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(79, 163, 108, .2);
    filter: blur(70px)
}

.float-card {
    position: absolute;
    z-index: 3;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .15);
    color: #fff
}

.float-card small {
    display: block;
    margin-top: 5px;
    color: #becbd3;
    font-size: 10px
}

.float-card strong {
    display: block;
    font: 700 23px "Manrope"
}

.float-card-one {
    top: 135px;
    right: 2px
}

.float-card-two {
    right: 10px;
    bottom: 43px
}

.mini-icon {
    color: var(--accent);
    font-size: 20px
}

.language-pills {
    font-size: 15px;
    font-weight: 800
}

.language-pills b {
    color: var(--accent);
    margin: 0 5px
}

.avatar-stack {
    display: flex;
    margin-bottom: 7px
}

.avatar-stack b {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    margin-right: -5px;
    border: 2px solid #25435a;
    border-radius: 50%;
    color: var(--ink);
    background: var(--accent);
    font-size: 9px
}

.avatar-stack b+b {
    color: #fff;
    background: var(--green)
}

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8797aa;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    z-index: 2
}

.scroll-line {
    height: 1px;
    width: 64px;
    background: #8797aa
}

.trust-strip {
    padding: 42px 0;
    background: #fff
}

.is-dark .trust-strip {
    background: var(--dark-surface)
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 35px;
    align-items: center
}

.trust-intro strong {
    display: block;
    max-width: 250px;
    margin-top: 8px;
    font: 700 17px/1.3 "Manrope"
}

.stat {
    padding-left: 25px;
    border-left: 1px solid var(--line)
}

.stat strong {
    display: block;
    color: var(--blue);
    font: 800 28px "Manrope"
}

.stat span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 100px;
    align-items: center
}

.about-media {
    position: relative
}

.about-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 170px 24px 24px 24px;
    filter: saturate(.85)
}

.about-carousel-image {
    opacity: 1;
    transition: opacity .25s ease
}

.about-carousel-image.is-changing {
    opacity: .15
}

.media-stamp {
    position: absolute;
    right: -30px;
    bottom: 28px;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    transform: rotate(9deg)
}

.media-stamp span {
    font: 800 22px "Manrope"
}

.media-stamp small {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase
}

.about-copy h2 {
    margin: 22px 0 26px
}

.about-copy>p:not(.eyebrow) {
    max-width: 530px;
    color: var(--muted);
    font-size: 15px
}

.about-copy .text-link {
    margin-top: 26px
}

.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 100px
}

.pillars>div {
    padding-top: 19px;
    border-top: 1px solid var(--line)
}

.pillars span {
    display: block;
    color: var(--green);
    font-size: 11px;
    font-weight: 800
}

.pillars strong {
    display: block;
    margin: 15px 0 4px;
    font: 700 16px "Manrope"
}

.pillars small {
    color: var(--muted);
    font-size: 11px
}

.services-section {
    background: #fff
}

.is-dark .services-section {
    background: var(--dark)
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .7fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px
}

.section-heading h2 {
    margin-top: 22px
}

.section-heading>p {
    margin: 0;
    color: var(--muted);
    font-size: 15px
}

.service-explorer {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    width: 100%;
    max-width: 1180px;
    align-items: center
}

.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.service-tab-group {
    display: flex;
    flex-direction: column
}

.service-tab {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
    text-align: left;
    background: transparent;
    color: var(--muted);
    font: 700 14px "Manrope";
    transition: color .2s, padding .2s
}

.service-tab.is-active {
    padding-left: 17px;
    color: var(--blue);
    position: relative
}

.service-tab.is-active:before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green)
}

.service-category-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 2px 0 8px 17px
}

.service-category-list[hidden] {
    display: none
}

.category-service {
    border: 0;
    border-left: 1px solid var(--line);
    padding: 7px 8px;
    text-align: left;
    background: transparent;
    color: var(--muted);
    font: 500 12px "DM Sans";
    cursor: pointer;
    transition: color .2s, border-color .2s
}

.category-service:hover,
.category-service.is-selected {
    border-color: var(--green);
    color: var(--blue)
}

.service-feature {
    display: grid;
    grid-template-columns: .93fr 1fr;
    min-height: 435px;
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden
}

.service-image-wrap {
    position: relative;
    min-height: 435px
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-index {
    position: absolute;
    left: 24px;
    bottom: 21px;
    color: #fff;
    font: 700 11px "Manrope"
}

.service-content {
    padding: 58px 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.service-kicker {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em
}

.service-content h3 {
    font-size: 36px;
    margin: 15px 0 17px
}

.service-content>p:not(.service-kicker) {
    color: var(--muted);
    font-size: 14px
}

.service-content .button {
    align-self: center;
    margin-top: 18px
}

.service-controls {
    width: min(100%, 360px);
    align-self: center;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto
}

.circle-button {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 16px;
    transition: background .2s, color .2s
}

.circle-button:hover {
    color: #fff;
    background: var(--blue)
}

.service-progress {
    height: 2px;
    flex: 1;
    background: var(--line)
}

.service-progress span {
    height: 100%;
    display: block;
    width: 16%;
    background: var(--blue);
    transition: width .3s
}

.why-section {
    background: linear-gradient(120deg, #0b1120, #152b3d)
}

.why-grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 130px;
    align-items: start
}

.why-statement h2 {
    margin: 23px 0
}

.why-statement>p:not(.eyebrow) {
    max-width: 360px;
    color: #a9b4c4;
    font-size: 15px;
    margin-bottom: 30px
}

.why-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    padding: 20px 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.why-list article:first-child {
    padding-top: 0
}

.why-list article>span {
    color: var(--accent);
    font: 700 12px "Manrope"
}

.why-list h3 {
    font-size: 21px
}

.why-list p {
    max-width: 430px;
    margin: 8px 0 0;
    color: #a9b4c4;
    font-size: 13px
}

.international-section {
    background: #e7ede8
}

.international-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.international-copy h2 {
    max-width: 550px;
    margin: 21px 0
}

.international-copy>p:not(.eyebrow) {
    max-width: 480px;
    color: var(--muted);
    font-size: 15px
}

.destination-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 390px;
    margin: 32px 0 37px;
    border-top: 1px solid rgba(47, 79, 136, .25)
}

.destination-list span {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(47, 79, 136, .25)
}

.destination-list i {
    color: var(--green);
    font-size: 10px;
    font-style: normal;
    font-weight: 800
}

.destination-list b {
    font: 700 14px "Manrope"
}

.map-art {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 42%, #d7e7d9, transparent 2%, transparent 29%, rgba(47, 79, 136, .1) 30%, transparent 31%), radial-gradient(circle at 55% 48%, rgba(79, 163, 108, .45), transparent 40%), #d9e5e0
}

.map-art:after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px dashed rgba(47, 79, 136, .35);
    border-radius: 50%
}

.map-ring {
    position: absolute;
    border: 1px solid rgba(47, 79, 136, .25);
    border-radius: 50%
}

.ring-a {
    inset: 60px 18px
}

.ring-b {
    inset: 18px 80px
}

.map-route {
    height: 1px;
    position: absolute;
    transform-origin: left center;
    background: var(--blue);
    z-index: 2
}

.route-a {
    width: 180px;
    top: 45%;
    left: 33%;
    transform: rotate(-32deg)
}

.route-b {
    width: 160px;
    top: 47%;
    left: 33%;
    transform: rotate(30deg);
    background: var(--green)
}

.map-marker {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em
}

.map-marker span {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    font-size: 10px
}

.marker-tunis {
    left: 29%;
    top: 42%
}

.marker-future {
    right: 17%;
    top: 28%
}

.marker-future span {
    background: var(--blue);
    color: #fff
}

.map-label {
    position: absolute;
    color: rgba(47, 79, 136, .45);
    font: 700 10px "Manrope";
    letter-spacing: .22em
}

.label-a {
    top: 24%;
    left: 49%
}

.label-b {
    bottom: 25%;
    right: 18%
}

.process-section {
    background: #fff
}

.centered {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.centered>p {
    max-width: 270px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.process-grid article {
    position: relative;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.process-grid article>span {
    color: var(--green);
    font: 700 12px "Manrope"
}

.process-line {
    position: absolute;
    top: -3px;
    left: 0;
    width: 38px;
    height: 5px;
    background: var(--blue)
}

.process-grid h3 {
    margin-top: 43px;
    font-size: 22px
}

.process-grid p {
    color: var(--muted);
    font-size: 13px
}




.faq-section {
    background: #fff
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px
}

.faq-intro h2 {
    margin: 22px 0
}

.faq-intro>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 14px
}

.faq-intro .text-link {
    margin-top: 25px
}

.faq-list details {
    padding: 21px 0;
    border-bottom: 1px solid var(--line)
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font: 700 16px "Manrope"
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary span {
    color: var(--green);
    font: 400 25px/1 "DM Sans";
    transition: transform .2s
}

.faq-list details[open] summary span {
    transform: rotate(45deg)
}

.faq-list details p {
    max-width: 570px;
    margin: 14px 35px 0 0;
    color: var(--muted);
    font-size: 14px
}

.lead-section {
    padding: 90px 0;
    background: var(--green);
    color: #fff
}

.lead-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end
}

.lead-layout h2 {
    margin-top: 20px
}

.lead-layout>div:last-child {
    padding-bottom: 4px
}

.lead-layout p:not(.eyebrow) {
    max-width: 430px;
    color: #e5f1e8;
    font-size: 15px
}

.lead-layout .button {
    margin-top: 15px
}

.contact-section {
    background: var(--paper)
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start
}

.contact-info h2 {
    margin: 22px 0
}

.contact-info>p:not(.eyebrow) {
    max-width: 390px;
    color: var(--muted);
    font-size: 14px
}

.contact-details {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 0
}

.contact-details a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.detail-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--blue);
    background: #e4ebed;
    font-size: 18px
}

.contact-details small,
.contact-details strong {
    display: block
}

.contact-details small {
    color: var(--muted);
    font-size: 13px
}

.contact-details strong {
    margin-top: 5px;
    font: 700 16px/1.5 "Manrope"
}

.contact-card {
    width: min(100%, 620px);
    justify-self: center;
    padding: 15px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.is-dark .contact-card {
    background: var(--dark-surface)
}

.map-preview {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 470px;
    background: #d8e3df
}

.map-preview iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    pointer-events: auto;
    touch-action: auto
}

.map-actions {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    pointer-events: none
}

.map-actions .button {
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(20, 35, 52, .2)
}

.site-footer {
    padding: 75px 0 25px;
    color: #b8c3d0;
    background: var(--dark)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 45px
}

.brand-light {
    color: #fff
}

.brand-light>span>span {
    color: var(--accent)
}

.footer-brand p {
    max-width: 230px;
    margin: 22px 0;
    color: #8f9baa;
    font-size: 13px
}

.footer-grid h3 {
    margin: 4px 0 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0
}

.footer-grid>div:not(:first-child) a,
.footer-grid>div:not(:first-child) span {
    display: block;
    margin: 11px 0;
    color: #929dab;
    font-size: 12px
}

.footer-grid a:hover {
    color: var(--accent) !important
}

.footer-social {
    display: flex;
    gap: 9px
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #405064;
    border-radius: 50%;
    font-size: 11px;
    color: #fff
}

.footer-social svg,
.whatsapp svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-social svg rect,
.footer-social svg circle {
    fill: none;
}

.footer-social svg .icon-fill {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #263347;
    color: #718094;
    font-size: 11px
}

.footer-bottom span:nth-child(2) {
    margin-right: auto
}

.footer-bottom button {
    border: 0;
    background: transparent;
    color: #718094;
    font-size: 11px
}

.whatsapp {
    position: fixed;
    z-index: 10;
    right: 25px;
    bottom: 25px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
    font-size: 12px;
    font-weight: 800;
    transition: transform .2s
}

.whatsapp svg {
    width: 22px;
    height: 22px;
    stroke: none;
}

.whatsapp:hover {
    transform: translateY(-4px)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-delay {
    transition-delay: .15s
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@keyframes pulse {
    50% {
        transform: scale(1.25);
        opacity: .6
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .visual-orbit,
    .globe-pin {
        animation: none
    }

    .button,
    .text-link span {
        transition: none
    }
}

@media(max-width:900px) {
    .container {
        width: min(100% - 40px, 700px)
    }

    .nav-wrap {
        gap: 18px
    }

    .primary-nav {
        gap: 15px
    }

    .nav-cta {
        display: none
    }

    .hero-layout,
    .international-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero {
        min-height: auto
    }

    .hero-copy {
        padding: 80px 0 20px
    }

    .hero-visual {
        height: 500px
    }

    .hero-bottom {
        display: none
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-details {
        grid-column: 1;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: -25px
    }

    .trust-intro {
        grid-column: 1/-1
    }

    .about-grid {
        gap: 55px
    }

    .service-explorer {
        grid-template-columns: 1fr;
        max-width: none
    }

    .service-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 20px;
        overflow: visible
    }

    .service-tab-group {
        min-width: 0
    }

    .service-category-list {
        padding-left: 0
    }

    .service-tab {
        width: 100%;
        white-space: nowrap
    }

    .why-grid {
        gap: 60px
    }

    .faq-layout {
        gap: 50px
    }

    .lead-layout {
        gap: 50px
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr
    }
}

@media(max-width:650px) {
    .container {
        width: calc(100% - 36px)
    }

    .announcement {
        justify-content: flex-start;
        padding: 7px 42px 7px 18px;
        font-size: 10px
    }

    .announcement a {
        display: none
    }

    .site-header {
        height: 70px
    }

    .nav-wrap {
        justify-content: space-between
    }

    .brand {
        font-size: 17px
    }

    .brand img {
        width: 32px;
        height: 32px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-left: auto
    }

    .menu-toggle span {
        display: block;
        width: 23px;
        height: 2px;
        background: currentColor
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 25px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background: var(--paper);
        box-shadow: 0 15px 30px rgba(16, 26, 43, .12)
    }

    .primary-nav.is-open {
        display: flex
    }

    .nav-mobile-cta {
        display: block
    }

    .nav-actions {
        gap: 8px
    }

    .theme-toggle {
        font-size: 16px
    }

    .language-switcher {
        font-size: 11px
    }

    .hero-layout {
        display: block
    }

    .hero-copy {
        padding: 70px 0 0
    }

    .hero h1 {
        font-size: 48px
    }

    .hero-lead {
        font-size: 15px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px
    }

    .hero-note {
        margin: 40px 0 0
    }

    .hero-visual {
        height: 450px;
        transform: scale(.86);
        margin: -20px -30px
    }

    .visual-panel {
        height: 370px;
        width: 300px
    }

    .globe {
        width: 200px;
        height: 200px;
        margin: 48px auto 35px
    }

    .float-card-one {
        top: 80px;
        right: 20px
    }

    .float-card-two {
        right: auto;
        left: 15px;
        bottom: 85px
    }

    .float-card {
        width: min(185px, 46vw);
        min-width: 0;
        padding: 10px 12px;
        overflow: hidden
    }

    .float-card strong {
        font-size: 18px
    }

    .float-card small {
        font-size: 9px;
        line-height: 1.35;
        white-space: normal
    }

    .section {
        padding: 85px 0
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px
    }

    .trust-intro strong {
        font-size: 15px
    }

    .stat {
        padding-left: 15px
    }

    .stat strong {
        font-size: 23px
    }

    .about-media img {
        width: 100%;
        height: 370px
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .media-stamp {
        right: 8px;
        bottom: 20px;
        width: clamp(96px, 25vw, 112px);
        height: clamp(96px, 25vw, 112px)
    }

    .media-stamp span {
        font-size: clamp(17px, 4.8vw, 21px);
        white-space: nowrap
    }

    .media-stamp small {
        font-size: clamp(9px, 2.5vw, 11px)
    }


    .section-heading {
        display: block;
        margin-bottom: 35px
    }

    .section-heading>p {
        margin-top: 25px
    }

    .service-feature {
        display: block
    }

    .service-image-wrap {
        height: 250px;
        min-height: 0
    }

    .service-content {
        padding: 32px 25px;
        min-height: 360px
    }

    .service-content h3 {
        font-size: 30px
    }

    .service-controls {
        margin-top: 35px
    }

    .why-grid {
        display: block
    }

    .why-list {
        margin-top: 55px
    }

    .international-layout {
        display: block
    }

    .map-art {
        height: 330px;
        margin: 55px -25px 0
    }

    .centered {
        display: block
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px
    }

    .process-grid h3 {
        margin-top: 33px;
        font-size: 19px
    }

    .story-heading h2 {
        font-size: 42px
    }

    .story-controls {
        position: static;
        margin-top: 25px
    }

    .story-card {
        padding: 30px
    }

    .faq-layout {
        display: block
    }

    .faq-list {
        margin-top: 50px
    }

    .lead-layout {
        display: block
    }

    .lead-layout>div:last-child {
        margin-top: 35px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-grid > div:nth-child(2) {
        display: none
    }

    .footer-bottom {
        margin-top: 45px;
        flex-wrap: wrap
    }

    .footer-bottom span:nth-child(2) {
        width: 100%;
        order: 5
    }

    .whatsapp {
        right: 16px;
        bottom: 16px
    }
}

body.is-dark .site-header,
body.is-dark .trust-strip,
body.is-dark .services-section,
body.is-dark .process-section,
body.is-dark .faq-section,
body.is-dark .contact-section {
    background: var(--dark)
}

body.is-dark .service-feature,
body.is-dark .contact-card {
    background: var(--dark-surface)
}

body.is-dark .international-section {
    background: #142b2d
}

body.is-dark .map-art {
    background: #183d3b
}

body.is-dark .service-tab {
    color: var(--muted)
}

body.is-dark .service-content .button-dark,
body.is-dark .map-actions .button-dark {
    color: #101a2b
}