:root {
    --sky: #56CCF2;
    --blue: #2F80ED;
    --gradient: linear-gradient(135deg, #56CCF2, #2F80ED);
    --ink: #0d1b2a;
    --ink2: #12263a;
    --paper: #f8f5ec;
    --paper2: #f0ece0;
    --olive: #808000;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--ink);
    font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 92px;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(86, 204, 242, 0.15);
    transition: background .3s;
}

#navbar.scrolled {
    background: rgba(13, 27, 42, 0.97);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(18px, 2.5vw, 24px);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--sky);
    transition: all .35s cubic-bezier(.77, 0, .175, 1);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Fullscreen menu */
#fullmenu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--ink2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

#fullmenu.open {
    opacity: 1;
    pointer-events: all;
}

#fullmenu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.05;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    transition: transform .5s, opacity .5s;
}

#fullmenu.open a {
    transform: translateY(0);
    opacity: 1;
}

#fullmenu.open a:nth-child(1) {
    transition-delay: .05s;
}

#fullmenu.open a:nth-child(2) {
    transition-delay: .1s;
}

#fullmenu.open a:nth-child(3) {
    transition-delay: .15s;
}

#fullmenu.open a:nth-child(4) {
    transition-delay: .2s;
}

#fullmenu.open a:nth-child(5) {
    transition-delay: .25s;
}

#fullmenu.open a:nth-child(6) {
    transition-delay: .3s;
}

#fullmenu.open a:nth-child(7) {
    transition-delay: .35s;
}

.menu-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    color: var(--sky);
    margin-top: 24px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform .5s .4s, opacity .5s .4s;
}

#fullmenu.open .menu-phone {
    transform: translateY(0);
    opacity: 1;
}

/* ── HERO ── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-zone {
    position: absolute;
    inset: 0;
}

/* Zone 1 */
.hz1 {
    background: #080808;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Zone 2 — olive diagonal strip */
.hz2 {
    background: linear-gradient(25deg, #56CCF2, #8abfd1, #56CCF2);
    clip-path: polygon(30% 0, 75% 0, 70% 100%, 25% 100%);
    overflow: hidden;
    will-change: transform;
}

.hz2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    mix-blend-mode: luminosity;
}

.hz2-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(15px, 2vw, 22px);
    color: rgba(255, 255, 255, .85);
    text-align: center;
    padding: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

/* Zone 3 */
.hz3 {
    background: #1a1a10;
    clip-path: polygon(72% 0, 100% 0, 100% 100%, 67% 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 clamp(20px, 3vw, 60px);
}

/* Hero content overlay for zones */
.hero-content-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(24px, 4vw, 80px);
    z-index: 10;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 9vw, 120px);
    line-height: .95;
    color: var(--white);
    text-transform: uppercase;
}

.hero-h1 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-diagonal-line {
    position: absolute;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.hero-diagonal-line::before,
.hero-diagonal-line::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--olive);
    box-shadow: 0 0 14px rgba(128, 128, 0, .7);
}

.hero-diagonal-line::before {
    left: 28%;
    transform: skewX(-15deg);
}

.hero-diagonal-line::after {
    left: 72%;
    transform: skewX(-15deg);
}

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(16px, 2vw, 40px);
    z-index: 10;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--sky);
    margin-bottom: 24px;
    line-height: 1.55;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}

.btn-primary:hover {
    opacity: .88;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--sky);
    border: 1.5px solid var(--sky);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 3px;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
}

.btn-outline:hover {
    background: rgba(86, 204, 242, .12);
    transform: translateY(-2px);
}

/* Hero bottom bar */
#hero-bottom {
    background: var(--ink);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    border-bottom: 1px solid rgba(86, 204, 242, .1);
}

.hero-bottom-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--sky);
}

.hero-bottom-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-bottom-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── SECTION LABEL ── */
.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--sky);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

/* ── WHY US ── */
#why {
    background: var(--ink2);
    padding: 100px 40px;
}

.why-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
}

.why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.85);
}

.why-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(86, 204, 242, .15), rgba(47, 128, 237, .28));
}

.why-accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--sky);
    opacity: .5;
    border-radius: 2px;
}

.why-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--gradient);
    border-radius: 20px;
    padding: 6px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--white);
}

.why-content {}

.why-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}

.why-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-body {
    font-size: 17px;
    color: #a8c5da;
    line-height: 1.75;
    margin-bottom: 32px;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-card {
    border: 1px solid rgba(86, 204, 242, .1);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color .3s, background .3s;
}

.why-card:hover {
    border-color: rgba(86, 204, 242, .4);
    background: rgba(86, 204, 242, .04);
}

.why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-card-text {}

.why-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.why-card-desc {
    font-size: 14px;
    color: #7fa8c0;
    line-height: 1.55;
}

/* ── SERVICES TICKETS ── */
#services {
    background: var(--paper2);
    padding: 100px 40px;
}

.services-inner {
    max-width: 900px;
    margin: auto;
}

.services-header {
    margin-bottom: 48px;
}

.services-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 58px);
    color: var(--ink);
    line-height: 1.05;
}

.services-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket {
    background: var(--paper);
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}

.ticket:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .14);
}

.ticket-stub {
    width: 80px;
    flex-shrink: 0;
    background: var(--gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
    border-right: 2px dashed rgba(255, 255, 255, .4);
}

.stub-holes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 10px;
}

.stub-hole {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--paper2);
}

.stub-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
    margin-left: 6px;
}

.ticket-body {
    flex: 1;
    position: relative;
    padding: 24px 28px;
}

.ticket-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.ticket-stamp {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 2px solid var(--olive);
    transform: rotate(-8deg);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--olive);
    padding: 4px 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    pointer-events: none;
}

.ticket-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1;
}

.ticket-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 14px;
}

.ticket-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ticket-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue);
    background: rgba(47, 128, 237, .1);
    padding: 4px 10px;
    border-radius: 2px;
}

.ticket-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
    background: rgba(240, 236, 224, .6);
    margin-top: 0;
}

.ticket.open .ticket-expand {
    max-height: 360px;
}

.expand-inner {
    padding: 20px 28px 24px;
}

.expand-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.expand-step {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--white);
    background: var(--blue);
    padding: 5px 12px;
    border-radius: 20px;
}

.expand-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 6px;
}

.expand-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 3px;
    margin-top: 4px;
    transition: opacity .2s;
}

.expand-cta:hover {
    opacity: .85;
}

.ticket-toggle-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(47, 128, 237, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .3s;
}

.ticket.open .ticket-toggle-icon {
    transform: rotate(45deg);
    background: rgba(47, 128, 237, .25);
}

.ticket-toggle-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
}

/* ── DETAILED SERVICES ── */
#services2 {
    background: var(--ink);
    padding: 100px 40px;
}

#services2::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--gradient);
    margin-bottom: 60px;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
}

.s2-inner {
    max-width: 860px;
    margin: auto;
}

.s2-header {
    margin-bottom: 40px;
}

.s2-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 50px);
    color: var(--white);
    line-height: 1.05;
}

.s2-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paper-item {
    background: var(--paper);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .3s;
}

.paper-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.paper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    cursor: pointer;
    transition: background .2s;
}

.paper-header:hover {
    background: rgba(86, 204, 242, .03);
}

.paper-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 14px;
}

.paper-title-icon {
    font-size: 22px;
}

.paper-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(47, 128, 237, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .35s, background .3s;
}

.paper-item.open .paper-arrow {
    transform: rotate(180deg);
    background: rgba(47, 128, 237, .1);
}

.paper-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
}

.paper-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.paper-item.open .paper-body {
    max-height: 460px;
}

.paper-fold1,
.paper-fold2 {
    height: 1px;
    background: rgba(0, 0, 0, .07);
    opacity: 0;
    transition: opacity .3s .15s;
}

.paper-item.open .paper-fold1,
.paper-item.open .paper-fold2 {
    opacity: 1;
}

.paper-fold2 {
    margin-top: 1px;
}

.paper-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    display: block;
}

.paper-content {
    padding: 24px 32px 28px;
}

.paper-content-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
}

.paper-content-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
}

.paper-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.paper-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue);
    background: rgba(47, 128, 237, .1);
    padding: 4px 10px;
    border-radius: 2px;
}

/* ── HOW WE WORK ── */
#how {
    background: var(--ink2);
    padding: 100px 40px;
}

.how-inner {
    max-width: 1100px;
    margin: auto;
}

.how-header {
    text-align: center;
    margin-bottom: 70px;
}

.how-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 54px);
    color: var(--white);
    line-height: 1.05;
}

.how-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.how-connector {
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gradient);
    z-index: 0;
}

.how-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.how-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gradient);
    border: 4px solid var(--ink2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: 0 0 0 2px rgba(86, 204, 242, .2);
}

.how-circle svg {
    width: 38px;
    height: 38px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.how-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 10px;
}

.how-step-desc {
    font-size: 14px;
    color: #7fa8c0;
    line-height: 1.65;
}

/* ── SERVICE AREAS ── */
#areas {
    background: var(--ink);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.areas-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(80px, 16vw, 220px);
    white-space: nowrap;
    color: rgba(86, 204, 242, .03);
    pointer-events: none;
    user-select: none;
    letter-spacing: 2px;
}

.areas-inner {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.areas-header {
    margin-bottom: 48px;
}

.areas-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 52px);
    color: var(--white);
    line-height: 1.05;
}

.areas-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.area-card {
    border: 1px solid rgba(86, 204, 242, .12);
    border-radius: 4px;
    padding: 18px 12px;
    text-align: center;
    transition: border-color .3s, background .3s, transform .3s;
    cursor: default;
}

.area-card:hover {
    border-color: var(--sky);
    background: rgba(86, 204, 242, .06);
    transform: translateY(-3px);
}

.area-card.hq {
    border-color: rgba(86, 204, 242, .35);
    background: rgba(86, 204, 242, .06);
}

.area-city {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.area-dist {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── FAQ ── */
#faq {
    background: var(--paper2);
    padding: 100px 40px;
}

.faq-inner {
    max-width: 800px;
    margin: auto;
}

.faq-header {
    margin-bottom: 48px;
}

.faq-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 54px);
    color: var(--ink);
    line-height: 1.05;
}

.faq-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    gap: 20px;
    transition: color .2s;
}

.faq-q:hover .faq-q-text {
    color: var(--blue);
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--ink2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-q-icon-wrap {
    font-size: 18px;
    flex-shrink: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    color: var(--ink2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, color .3s;
    font-size: 18px;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-a {
    max-height: 280px;
}

.faq-a-inner {
    padding: 0 26px 22px;
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

/* ── CONTACT ── */
#contact {
    background: var(--ink2);
    padding: 100px 40px;
    position: relative;
}

#contact::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--gradient);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.contact-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-map iframe {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    display: block;
    border: 1px solid rgba(86, 204, 242, .2);
    filter: grayscale(.3) contrast(1.1);
}

.contact-info {}

.contact-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.05;
}

.contact-h2 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-body {
    font-size: 16px;
    color: #a8c5da;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    border: 1px solid rgba(86, 204, 242, .1);
    border-radius: 4px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: border-color .3s, background .3s;
}

.contact-card:hover {
    border-color: rgba(86, 204, 242, .35);
    background: rgba(86, 204, 242, .04);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--sky);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-card-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
}

.contact-card a {
    color: var(--white);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--sky);
}

/* ── FOOTER ── */
#footer {
    background: var(--ink);
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(86, 204, 242, .12);
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3vw, 30px);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-addr {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #7fa8c0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.footer-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.footer-hr {
    height: 1px;
    background: rgba(86, 204, 242, .1);
    margin-bottom: 24px;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #4a6b82;
    letter-spacing: .5px;
    line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-sm {
    font-size: 13px;
    padding: 10px 20px;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-img-wrap {
        aspect-ratio: 16/9;
    }

    .why-accent-box {
        display: none;
    }

    .how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .how-connector {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-right {
        display: none;
    }

    .hero-diagonal-line::after {
        display: none;
    }

    .hz2 {
        clip-path: polygon(65% 0, 100% 0, 100% 100%, 50% 100%);
    }

    #hero-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:600px) {
    #navbar {
        padding: 0 20px;
    }

    #hero {
        height: auto;
        min-height: 100svh;
    }

    .hero-content-left {
        width: 70%;
        padding: 100px 20px 60px;
    }

    .hero-h1 {
        font-size: 48px;
    }

    .hz2 {
        clip-path: polygon(70% 0, 100% 0, 100% 100%, 55% 100%);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    #services,
    #services2,
    #why,
    #how,
    #areas,
    #faq,
    #contact,
    #footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ticket-body {
        padding: 18px;
    }

    .paper-header {
        padding: 18px 20px;
    }

    .paper-content {
        padding: 18px 20px 22px;
    }
}