/* ============================================================
   True Line — "Blueprint" technical-editorial system (v3)
   Warm white · Clash Display · mono technical labels ·
   surveying crosshairs · tri-color signature line
   ============================================================ */

:root {
  --sky:   #5BC5F2;
  --green: #A8C34A;
  --teal:  #2F9E8F;
  --blue:  #3E9BDA;
  --accent: #17968a;
  --accent-2: #0f7d78;

  --ink:    #14181a;   /* near-black */
  --ink-2:  #3b444a;
  --muted:  #6c757b;
  --faint:  #9aa0a4;
  --line:   #e3e0d7;   /* warm hairline */
  --line-2: #eeece4;
  --paper:  #FBFAF6;   /* warm off-white ground */
  --paper-2:#F3F1E9;
  --card:   #ffffff;
  --dark:   #14181a;

  --radius:   10px;
  --radius-sm:7px;
  --shadow: 0 1px 2px rgba(20,24,26,.04), 0 18px 50px -30px rgba(20,24,26,.5);
  --shadow-lg: 0 1px 2px rgba(20,24,26,.05), 0 30px 70px -34px rgba(20,24,26,.6);

  --container: 1240px;
  --tri: linear-gradient(90deg, var(--sky), var(--green), var(--teal));
  --tri-v: linear-gradient(180deg, var(--sky), var(--green), var(--teal));

  --f-display: 'Clash Display', 'Tajawal', system-ui, sans-serif;
  --f-sans: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'Space Mono', ui-monospace, 'Courier New', monospace;
  --f-ar: 'Tajawal', system-ui, sans-serif;
}

html[dir="rtl"] { --f-display: 'Tajawal', sans-serif; }
html[dir="rtl"] body { font-family: var(--f-ar); }
html[dir="rtl"] .mono, html[dir="rtl"] .eyebrow { font-family: var(--f-ar); letter-spacing: 0; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-sans); color: var(--ink-2); background: var(--paper); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(var(--container), 90%); margin-inline: auto; }
h1,h2,h3,h4,h5 { color: var(--ink); font-family: var(--f-display); font-weight: 600; line-height: 1.0; letter-spacing: -.02em; }

.mono { font-family: var(--f-mono); }
.svg-ic { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* Technical kicker — mono, catalog index + tri tick */
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--f-mono); font-size: .72rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.eyebrow i { font-style: normal; color: var(--accent); }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--tri); }

/* Corner-bracket "technical frame" */
.corners { position: relative; }
.corners::before, .corners::after { content: ""; position: absolute; width: 12px; height: 12px; border: 1.5px solid var(--ink); pointer-events: none; z-index: 2; }
.corners::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.corners::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

a[href^="tel"], .ltr { direction: ltr; unicode-bidi: embed; }

/* ============================================================ Scroll progress */
.scrollbar { position: fixed; top: 0; inset-inline: 0; height: 3px; z-index: 300; }
.scrollbar__fill { height: 100%; width: 0; background: var(--tri); }

/* ============================================================ Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; font-family: var(--f-sans); font-weight: 600; font-size: .92rem; padding: .85rem 1.5rem; border-radius: var(--radius-sm); border: 1.5px solid transparent; cursor: pointer; transition: transform .18s, background .2s, color .2s, border-color .2s; white-space: nowrap; will-change: transform; }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--accent); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); border-color: transparent; }
.btn--light:hover { background: #fff; }
.btn--text { padding: .3rem 0; color: var(--ink); border-radius: 0; font-family: var(--f-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.btn--text .arw { transition: transform .2s; }
.btn--text:hover .arw { transform: translateX(5px); }
html[dir="rtl"] .btn--text .arw { transform: scaleX(-1); }
html[dir="rtl"] .btn--text:hover .arw { transform: scaleX(-1) translateX(5px); }
.btn--lg { padding: 1rem 2rem; font-size: .98rem; }
.btn--block { width: 100%; }

/* ============================================================ Topbar */
.topbar { border-bottom: 1px solid var(--line); background: var(--paper); font-size: .76rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; color: var(--muted); font-family: var(--f-mono); }
.topbar__contact { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__contact a, .topbar__loc { display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); }
.topbar__contact a:hover { color: var(--ink); }
.topbar .ic { color: var(--accent); }
.lang-toggle { background: transparent; color: var(--ink); border: 1px solid var(--line); padding: .26rem .8rem; border-radius: var(--radius-sm); cursor: pointer; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .05em; transition: border-color .2s; }
.lang-toggle:hover { border-color: var(--ink); }
html[lang="en"] .lang-toggle__en, html[lang="ar"] .lang-toggle__ar { color: var(--accent); }
@media (max-width: 760px){ .topbar__loc { display: none; } .topbar__contact { gap: 1rem; } }

/* ============================================================ Header */
.header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--paper) 82%, transparent); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .25s; }
.header.scrolled { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand__logo { height: 32px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-2); white-space: nowrap; position: relative; }
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn)::after { content:""; position:absolute; inset-inline-start:0; bottom:-6px; height:2px; width:0; background: var(--accent); transition: width .25s; }
.nav a:not(.btn):hover::after { width: 100%; }
.nav .btn { font-family: var(--f-sans); text-transform: none; letter-spacing: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1060px){
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset-inline: 0; top: 116px; flex-direction: column; align-items: stretch; background: var(--paper); gap: 0; padding: .5rem 5% 1.4rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s; z-index: 90; max-height: 82vh; overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .95rem .2rem; border-bottom: 1px solid var(--line-2); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: .9rem; }
}

/* ============================================================ Blueprint grid bg */
.grid-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px; opacity: .5;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 30%, transparent 75%);
}

/* ============================================================ Hero */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero__inner { position: relative; z-index: 1; padding: 4.5rem 0 0; }
.hero__kick { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero__kick .coord { color: var(--accent); }
.hero__kick .sep { width: 34px; height: 1px; background: var(--line); }
.hero__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.6rem, 7.2vw, 6rem); line-height: .96; letter-spacing: -.035em; color: var(--ink); text-transform: none; }
.hero__title .u { position: relative; white-space: nowrap; }
.hero__title .u::after { content:""; position:absolute; inset-inline-start:0; bottom:.02em; width:100%; height:.12em; background: var(--tri); border-radius: 3px; }
.hero__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: end; margin-top: 2.4rem; }
.hero__text { color: var(--muted); font-size: 1.1rem; max-width: 460px; }
.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 1.8rem; }
.hero__trust { margin-top: 1.6rem; font-family: var(--f-mono); font-size: .74rem; color: var(--faint); letter-spacing: .04em; }
.hero__route { align-self: end; display: grid; border-top: 1.5px solid var(--ink); }
.hero__route li { display: flex; align-items: center; gap: .9rem; padding: .78rem 0; border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: .82rem; color: var(--ink); letter-spacing: .03em; }
.hero__route li > span:first-child { color: var(--accent); }
.hero__route li::after { content: ""; margin-inline-start: auto; width: 20px; height: 1px; background: var(--ink); }
@media (max-width: 880px){ .hero__grid { grid-template-columns: 1fr; gap: 1.8rem; align-items: start; } .hero__route { max-width: 340px; } }

/* Readout strip */
.readout { position: relative; z-index: 1; margin-top: 4rem; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.readout__cell { padding: 1.8rem 1.6rem; border-inline-end: 1px solid var(--line); }
.readout__cell:last-child { border-inline-end: 0; }
.readout__num { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.readout__num .plus { color: var(--accent); }
.readout__label { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: .6rem; }
@media (max-width: 720px){ .readout { grid-template-columns: 1fr 1fr; } .readout__cell:nth-child(2){ border-inline-end: 0; } .readout__cell:nth-child(1),.readout__cell:nth-child(2){ border-bottom: 1px solid var(--line); } }

/* ============================================================ Marquee */
.marquee { border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.marquee__track { display: flex; gap: 3rem; align-items: center; width: max-content; padding: 1rem 0; animation: slide 30s linear infinite; }
.marquee__track span { font-family: var(--f-mono); color: var(--faint); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "/"; color: var(--line); }
@keyframes slide { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* ============================================================ Sections */
.section { padding: 7rem 0; position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--dark); color: #aeb6bb; overflow: hidden; }
.section__head { max-width: 680px; margin-bottom: 3.4rem; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 1.1rem; letter-spacing: -.03em; line-height: 1.02; }
.section--dark .section__title { color: #fff; }
.section__sub { margin-top: 1.2rem; color: var(--muted); font-size: 1.05rem; font-family: var(--f-sans); }
.section--dark .section__sub { color: #8b939a; }
.section--dark .eyebrow { color: #7fd4c9; }
.section--dark .eyebrow i { color: var(--sky); }

/* ============================================================ Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1.5px solid var(--ink); }
.svc { position: relative; background: var(--card); padding: 2.2rem 1.9rem 2rem; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s; }
.svc:nth-child(3n){ border-inline-end: 0; }
.svc:nth-last-child(-n+3){ border-bottom: 0; }
.svc:hover { background: var(--paper-2); }
.svc__no { font-family: var(--f-mono); font-size: .74rem; color: var(--faint); letter-spacing: .05em; }
.svc__ic { width: 44px; height: 44px; color: var(--ink); margin: 1.6rem 0 1.3rem; transition: color .25s, transform .25s; }
.svc:hover .svc__ic { color: var(--accent); transform: translateY(-2px); }
.svc h3 { font-family: var(--f-display); font-size: 1.28rem; font-weight: 600; margin-bottom: .55rem; letter-spacing: -.02em; }
.svc p { font-size: .93rem; color: var(--muted); }
.svc__line { position: absolute; inset-inline: 0; bottom: 0; height: 3px; background: var(--tri); transform: scaleX(0); transform-origin: inline-start; transition: transform .3s; }
.svc:hover .svc__line { transform: scaleX(1); }
@media (max-width: 860px){ .services { grid-template-columns: 1fr 1fr; } .svc:nth-child(3n){ border-inline-end: 1px solid var(--line); } .svc:nth-child(2n){ border-inline-end: 0; } .svc:nth-last-child(-n+3){ border-bottom: 1px solid var(--line); } .svc:nth-last-child(-n+2){ border-bottom: 0; } }
@media (max-width: 560px){ .services { grid-template-columns: 1fr; } .svc, .svc:nth-child(n){ border-inline-end: 0; border-bottom: 1px solid var(--line); } .svc:last-child { border-bottom: 0; } }

.svc-cta { margin-top: 0; border: 1.5px solid var(--ink); border-top: 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--ink); color: #fff; padding: 1.8rem 2.2rem; }
.svc-cta h3 { color: #fff; font-size: 1.35rem; }
.svc-cta p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: .25rem; font-family: var(--f-mono); }

/* ============================================================ Ownership */
.own { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.own__card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--card); transition: transform .25s, border-color .25s, box-shadow .25s; }
.own__card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow); }
.own__no { position: absolute; inset-inline-end: 1.4rem; top: 1.4rem; font-family: var(--f-mono); font-size: .72rem; color: var(--faint); }
.own__ic { width: 42px; height: 42px; color: var(--accent); margin-bottom: 1.1rem; }
.own__card h3 { font-family: var(--f-display); font-size: 1.14rem; font-weight: 600; margin-bottom: .5rem; letter-spacing: -.01em; }
.own__card p { font-size: .91rem; color: var(--muted); }
.own__tag { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.own__tag::before { content: "●"; font-size: .5em; }
@media (max-width: 860px){ .own { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .own { grid-template-columns: 1fr; } }

/* ============================================================ Why */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why__statement { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.08; letter-spacing: -.025em; color: var(--ink); }
.why__statement .dim { color: var(--faint); }
.why__list { display: grid; }
.why__item { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); align-items: start; }
.why__item:first-child { border-top: 0; padding-top: 0; }
.why__no { font-family: var(--f-mono); font-size: .78rem; color: var(--accent); padding-top: .25rem; }
.why__item h4 { font-family: var(--f-display); font-size: 1.12rem; margin-bottom: .3rem; font-weight: 600; }
.why__item p { color: var(--muted); font-size: .93rem; }
@media (max-width: 860px){ .why { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ============================================================ Process + timeline */
.proc { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 940px){ .proc { grid-template-columns: 1fr; gap: 3rem; } }
.tl__item { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding-bottom: 2rem; }
.tl__item:last-child { padding-bottom: 0; }
.tl__rail { display: flex; flex-direction: column; align-items: center; }
.tl__dot { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--paper-2); border: 1.5px solid var(--ink); display: grid; place-items: center; font-family: var(--f-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); z-index: 1; transition: background .35s, color .35s; }
.tl__item.in .tl__dot { background: var(--ink); color: #fff; }
.tl__connector { width: 2px; flex: 1; background: var(--line); margin: 4px 0; position: relative; overflow: hidden; }
.tl__connector::after { content:""; position:absolute; inset:0; background: var(--tri-v); transform: scaleY(0); transform-origin: top; transition: transform .5s ease .1s; }
.tl__item.in .tl__connector::after { transform: scaleY(1); }
.tl__item:last-child .tl__connector { display: none; }
.tl__content h4 { font-family: var(--f-display); font-size: 1.16rem; font-weight: 600; margin-bottom: .35rem; }
.tl__content p { font-size: .9rem; color: var(--muted); }
.tl__tasks { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.tl__tasks span { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .03em; color: var(--ink-2); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem; }

.timeline-card { border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--card); padding: 2rem; position: sticky; top: 100px; }
.timeline-card h4 { font-family: var(--f-mono); font-weight: 400; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 1.6rem; }
.dur { margin-bottom: 1.1rem; }
.dur__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .45rem; }
.dur__label { font-size: .9rem; color: var(--ink); font-weight: 600; }
.dur__days { font-family: var(--f-mono); font-size: .74rem; color: var(--muted); white-space: nowrap; }
.dur__track { height: 8px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.dur__fill { height: 100%; background: var(--tri); border-radius: 999px; width: 0; transition: width 1s cubic-bezier(.4,0,.2,1); }
.timeline-card.in .dur__fill { width: var(--w); }
.timeline-note { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.timeline-note b { color: var(--ink); font-weight: 700; }
@media (max-width: 940px){ .timeline-card { position: static; } }

/* ============================================================ Locations */
.locs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1.5px solid var(--ink); }
.loc { position: relative; padding: 2.2rem 1.9rem; background: var(--card); border-inline-end: 1px solid var(--line); overflow: hidden; transition: background .25s; }
.loc:last-child { border-inline-end: 0; }
.loc:not(.loc--home):hover { background: var(--paper-2); }
.loc--home { background: var(--ink); color: #fff; }
.loc__no { font-family: var(--f-mono); font-size: .74rem; color: var(--faint); }
.loc--home .loc__no { color: rgba(255,255,255,.5); }
.loc h3 { font-family: var(--f-display); font-weight: 600; font-size: 2rem; margin: 1.2rem 0 .3rem; letter-spacing: -.03em; }
.loc--home h3 { color: #fff; }
.loc__role { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.loc--home .loc__role { color: rgba(255,255,255,.6); }
.loc__badge { position: absolute; inset-inline-end: 1.6rem; top: 2rem; font-family: var(--f-mono); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--sky); padding: .28rem .6rem; border-radius: 4px; }
.loc__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.loc__tags span { font-family: var(--f-mono); font-size: .7rem; border: 1px solid var(--line); border-radius: 4px; padding: .3rem .6rem; color: var(--ink-2); }
.loc--home .loc__tags span { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.85); }
@media (max-width: 860px){ .locs { grid-template-columns: 1fr; } .loc { border-inline-end: 0; border-bottom: 1px solid var(--line); } .loc:last-child { border-bottom: 0; } }

/* ============================================================ Investors (dark manifesto) */
.inv { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center; }
.inv__big { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.03em; color: #fff; }
.inv__badge { display: flex; align-items: baseline; gap: .7rem; margin-top: 1.8rem; }
.inv__badge b { font-family: var(--f-display); font-size: 3rem; color: #fff; font-weight: 600; letter-spacing: -.03em; }
.inv__badge span { font-family: var(--f-mono); color: var(--sky); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.flags { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid rgba(255,255,255,.16); }
.flag { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; color: #e6ecef; font-family: var(--f-mono); font-size: .82rem; letter-spacing: .03em; border-inline-end: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); transition: background .2s; }
.flag:hover { background: rgba(255,255,255,.05); }
.flag:nth-child(2n){ border-inline-end: 0; }
.flag:nth-last-child(-n+2){ border-bottom: 0; }
.flag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tri); flex: none; }
@media (max-width: 860px){ .inv { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ============================================================ Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.review { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; background: var(--card); display: flex; flex-direction: column; gap: 1.1rem; transition: transform .25s, border-color .25s; }
.review:hover { transform: translateY(-4px); border-color: var(--ink); }
.stars { color: #E8A317; letter-spacing: .14em; font-size: .95rem; }
.review__text { font-family: var(--f-display); font-weight: 500; font-size: 1.06rem; line-height: 1.4; color: var(--ink); flex: 1; letter-spacing: -.01em; }
.review__by { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--f-mono); font-weight: 700; font-size: .82rem; flex: none; }
.review__name { font-family: var(--f-display); font-weight: 600; color: var(--ink); font-size: .98rem; }
.review__role { font-family: var(--f-mono); font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 860px){ .reviews { grid-template-columns: 1fr; } }

/* ============================================================ Consultation */
.consult { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; }
.consult__list { margin: 1.8rem 0; display: grid; }
.consult__list li { display: flex; gap: .8rem; align-items: center; padding: .9rem 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .95rem; }
.consult__list li:first-child { border-top: 0; }
.consult__list .ic { color: var(--accent); display: inline-flex; }
.consult__direct { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.4rem; font-family: var(--f-mono); }
.consult__direct a { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink); font-size: .9rem; }
.consult__direct a .ic { color: var(--accent); display: inline-flex; }
@media (max-width: 900px){ .consult { grid-template-columns: 1fr; gap: 2.4rem; } }

.form-card { background: var(--card); border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.form { padding: 2.2rem; }
.form__lead { font-family: var(--f-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px){ .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--f-sans); font-size: .95rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .85rem .95rem; width: 100%; transition: border-color .18s, box-shadow .18s, background .18s; }
.field textarea { resize: vertical; min-height: 104px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: #fff; box-shadow: 0 0 0 3px rgba(20,24,26,.06); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #e2574c; box-shadow: 0 0 0 3px rgba(226,87,76,.1); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { margin-top: 1rem; font-size: .9rem; font-weight: 600; display: none; padding: .8rem 1rem; border-radius: var(--radius-sm); }
.form__status.show { display: block; }
.form__status.ok  { background: #eef8f2; color: #1c8a5b; border: 1px solid #cfeadd; }
.form__status.err { background: #fdeceb; color: #c33a2f; border: 1px solid #f5c6c1; }
.form__status.loading { background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line); }
.form__note { margin-top: .9rem; font-family: var(--f-mono); font-size: .7rem; color: var(--faint); text-align: center; letter-spacing: .02em; }
.btn.is-loading { opacity: .75; pointer-events: none; }

/* ============================================================ FAQ */
.faq { max-width: 860px; margin-inline: auto; border-top: 1.5px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1.5px solid var(--ink); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1.4rem; padding: 1.5rem 0; font-family: var(--f-display); font-size: 1.16rem; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__idx { font-family: var(--f-mono); font-size: .78rem; color: var(--accent); flex: none; }
.faq__q { flex: 1; }
.faq__mark { flex: none; width: 24px; height: 24px; position: relative; }
.faq__mark::before, .faq__mark::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq__mark::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq__mark::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: transform .3s, opacity .3s; }
.faq__item[open] .faq__mark::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 0 1.5rem 2.4rem; color: var(--muted); font-size: .97rem; max-width: 92%; }
html[dir="rtl"] .faq__a { padding-inline-start: 2.4rem; padding-inline-end: 0; }

/* ============================================================ Contact */
.contact__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1.5px solid var(--ink); margin-bottom: 1.1rem; background: var(--card); }
.contact__card { padding: 1.9rem 1.6rem; border-inline-end: 1px solid var(--line); transition: background .2s; }
.contact__card:last-child { border-inline-end: 0; }
.contact__card:hover { background: var(--paper-2); }
.contact__ic { color: var(--accent); margin-bottom: .9rem; display: inline-flex; }
.contact__card h4 { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 400; margin-bottom: .4rem; }
.contact__card p { font-size: .98rem; color: var(--ink); word-break: break-word; font-weight: 500; }
@media (max-width: 860px){ .contact__grid { grid-template-columns: 1fr 1fr; } .contact__card:nth-child(2){ border-inline-end: 0; } .contact__card:nth-child(1),.contact__card:nth-child(2){ border-bottom: 1px solid var(--line); } }
@media (max-width: 460px){ .contact__grid { grid-template-columns: 1fr; } .contact__card { border-inline-end: 0; border-bottom: 1px solid var(--line); } .contact__card:last-child { border-bottom: 0; } }
.contact__map { border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden; }
.contact__map iframe { display: block; filter: grayscale(.4) contrast(1.05); }

/* ============================================================ Footer */
.footer { border-top: 1.5px solid var(--ink); background: var(--paper); padding: 4rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.6rem; }
.footer__logo { height: 30px; margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; color: var(--muted); max-width: 320px; }
.footer__col h5 { font-family: var(--f-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 400; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: var(--ink-2); font-size: .92rem; padding: .32rem 0; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line); padding: 1.3rem 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--f-mono); font-size: .74rem; color: var(--faint); letter-spacing: .03em; }
@media (max-width: 860px){ .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px){ .footer__inner { grid-template-columns: 1fr; } }

/* ============================================================ Floating WhatsApp */
.wa-float { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 200; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(37,211,102,.55); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ============================================================ Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } .btn { transition: none; } }
