/* ============================================================
   SUBAŞIOĞLU GLOBAL GÜMRÜK MÜŞAVİRLİĞİ
   subasiogluglobalgumruk.com — kurumsal tema (lacivert & gümüş)
   ============================================================ */

:root {
  --navy-950: #060d18;
  --navy-900: #0a1424;
  --navy-850: #0e1a2e;
  --navy-800: #132339;
  --navy-700: #1c3049;
  --silver-100: #f2f4f7;
  --silver-200: #e4e8ee;
  --silver-300: #c9cfd9;
  --silver-400: #a8b0bd;
  --silver-500: #8a94a4;
  --line: rgba(201, 207, 217, 0.14);
  --line-strong: rgba(201, 207, 217, 0.3);
  --grad-silver: linear-gradient(135deg, #f5f7fa 0%, #c3cad4 40%, #8f99a8 60%, #e8ecf1 100%);
  --shadow-lg: 0 24px 64px rgba(2, 8, 20, .55);
  --shadow-md: 0 12px 32px rgba(2, 8, 20, .35);
  --radius: 14px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--silver-200);
  line-height: 1.7; font-size: 16.5px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
::selection { background: #2c4a70; color: #fff; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-950); border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--silver-400); position: relative; z-index: 40;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 16px; flex-wrap: wrap;
}
.topbar a:hover { color: var(--silver-100); }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar svg { width: 13px; height: 13px; vertical-align: -2px; margin-right: 6px; opacity: .7; }
.social-links { display: flex; gap: 12px; }
.social-links a { opacity: .65; transition: opacity .2s; }
.social-links a:hover { opacity: 1; }
.social-links svg { width: 15px; height: 15px; margin: 0; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 15, 28, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { height: 64px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.brand-text { line-height: 1.25; white-space: nowrap; }
.brand-name {
  font-family: var(--font-display); font-size: 18px; letter-spacing: .1em; font-weight: 700;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-sub { font-size: 10px; letter-spacing: .3em; color: var(--silver-500); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px; font-size: 14px; font-weight: 700;
  color: var(--silver-300); border-radius: 8px; letter-spacing: .01em;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-item > a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-item > a .caret { width: 10px; height: 10px; transition: transform .25s; opacity: .7; }
.nav-item.open > a .caret, .nav-item:hover > a .caret { transform: rotate(180deg); }
.nav-item.active > a { color: #fff; }
.nav-item.active > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; background: var(--grad-silver); border-radius: 2px;
}
/* dropdown */
.sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 258px;
  background: rgba(10, 20, 36, .98);
  border: 1px solid var(--line-strong); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 70;
}
.nav-item:hover > .sub, .nav-item.open > .sub { opacity: 1; visibility: visible; transform: none; }
.sub::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--silver-300);
  transition: background .2s, color .2s, padding-left .2s;
}
.sub a::before {
  content: ""; width: 6px; height: 6px; flex: none; border-radius: 50%;
  background: var(--silver-500); transition: background .2s;
}
.sub a:hover { background: rgba(255,255,255,.06); color: #fff; padding-left: 18px; }
.sub a:hover::before { background: #fff; }
.sub a.active { color: #fff; background: rgba(255,255,255,.05); }

.nav-cta {
  padding: 11px 20px !important; margin-left: 8px; white-space: nowrap;
  background: var(--grad-silver); color: var(--navy-950) !important;
  border-radius: 10px !important; font-weight: 800 !important;
  box-shadow: 0 4px 18px rgba(200,210,225,.18);
}
.nav-cta:hover { filter: brightness(1.06); background: var(--grad-silver) !important; }
.header-tools { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  border: 1px solid var(--line); background: transparent; color: var(--silver-300);
  font: 700 13px var(--font-body); letter-spacing: .08em;
  padding: 9px 13px; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.lang-switch:hover { border-color: var(--silver-400); color: #fff; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--silver-200); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============ HERO SLIDER ============ */
.slider { position: relative; overflow: hidden; background: var(--navy-950); }
.slides { position: relative; height: clamp(520px, 74vh, 700px); }
.slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s;
}
.slide.active { opacity: 1; visibility: visible; }
.slide-bg { position: absolute; inset: 0; overflow: hidden; }
.slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,207,217,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,207,217,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(900px 620px at 50% 40%, #000 15%, transparent 78%);
}
.slide-bg .tint { position: absolute; inset: 0; }
.slide:nth-child(1) .tint { background: radial-gradient(1100px 560px at 76% 8%, rgba(44,74,112,.5), transparent 62%), radial-gradient(760px 420px at 6% 100%, rgba(28,48,73,.55), transparent 62%); }
.slide:nth-child(2) .tint { background: radial-gradient(1000px 520px at 20% 10%, rgba(38,64,98,.5), transparent 60%), radial-gradient(820px 460px at 90% 90%, rgba(24,42,66,.6), transparent 62%); }
.slide:nth-child(3) .tint { background: radial-gradient(1200px 600px at 50% 0%, rgba(46,78,116,.45), transparent 62%), radial-gradient(700px 420px at 10% 90%, rgba(20,36,58,.6), transparent 60%); }
.slide-watermark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: min(620px, 55%); opacity: .13; pointer-events: none;
  filter: grayscale(.2) drop-shadow(0 20px 50px rgba(0,0,0,.6));
}
.slide.active .slide-watermark { animation: kenburns 12s ease-out both; }
@keyframes kenburns { from { transform: translateY(-50%) scale(1); } to { transform: translateY(-50%) scale(1.12); } }
.slide-inner { position: relative; z-index: 2; max-width: 760px; padding: 40px 0; }
.slide.active .slide-inner > * { animation: slideUp .9s cubic-bezier(.2,.7,.3,1) both; }
.slide.active .slide-inner > *:nth-child(2) { animation-delay: .12s; }
.slide.active .slide-inner > *:nth-child(3) { animation-delay: .24s; }
.slide.active .slide-inner > *:nth-child(4) { animation-delay: .36s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.slide-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--silver-400); border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 18px; margin-bottom: 24px;
}
.slide-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-silver); }
.slide h2, .slide h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.15; font-weight: 700; color: #f6f8fb; margin-bottom: 20px;
}
.slide h2 .accent, .slide h1 .accent {
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.slide p { font-size: 17.5px; color: var(--silver-400); max-width: 580px; margin-bottom: 32px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(10,20,36,.6); border: 1px solid var(--line-strong);
  color: var(--silver-200); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: rgba(20,36,60,.9); border-color: var(--silver-400); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow.prev { left: 26px; }
.slider-arrow.next { right: 26px; }
.slider-dots {
  position: absolute; bottom: 104px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slider-dots button {
  width: 34px; height: 4px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(201,207,217,.28); transition: background .3s, width .3s;
}
.slider-dots button.active { background: var(--grad-silver); width: 52px; }

/* ============ SECTIONS ============ */
section.block { padding: 92px 0; }
section.block.alt { background: var(--navy-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.block.tight { padding: 64px 0; }
.section-head { max-width: 740px; margin: 0 auto 54px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--silver-500); margin-bottom: 14px; display: block;
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(27px, 3.3vw, 39px);
  font-weight: 700; color: #f4f6f9; line-height: 1.22; margin-bottom: 15px;
}
.section-head p { color: var(--silver-400); font-size: 16.5px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 12px;
  font-weight: 800; font-size: 15px; letter-spacing: .02em;
  transition: transform .2s, filter .2s, background .2s, border-color .2s;
  cursor: pointer; border: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-silver); color: var(--navy-950); box-shadow: 0 8px 28px rgba(190,200,215,.2); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--silver-200); background: rgba(255,255,255,.03); }
.btn-ghost:hover { border-color: var(--silver-300); background: rgba(255,255,255,.07); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ============ HIGHLIGHT (3 kolon) ============ */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: -70px; position: relative; z-index: 8; }
.highlight {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-lg);
  transition: transform .3s ease, border-color .3s;
}
.highlight:hover { transform: translateY(-6px); border-color: var(--silver-400); }
.highlight .card-icon { margin-bottom: 18px; }
.highlight h3 { font-size: 18px; font-weight: 800; color: #f2f4f8; margin-bottom: 9px; }
.highlight p { font-size: 14.5px; color: var(--silver-400); }

/* ============ CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-silver); opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 19px; font-weight: 800; color: #f2f4f8; margin-bottom: 10px; }
.card p { font-size: 14.8px; color: var(--silver-400); }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 18px; font-size: 14px; font-weight: 700; color: var(--silver-300); }
.card .more:hover { color: #fff; }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,207,217,.07); border: 1px solid var(--line); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--silver-300); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ============ STATS ============ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-900); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: 40px 16px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat b { display: block; font-family: var(--font-display); font-size: 38px; font-weight: 700; color: #fff; line-height: 1.1; }
.stat b .plus { color: var(--silver-400); }
.stat span { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-500); font-weight: 700; }

/* ============ SPLIT ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  min-height: 380px; display: flex; align-items: center; justify-content: center;
}
.split .visual img { width: 66%; filter: drop-shadow(0 20px 44px rgba(0,0,0,.6)); }
.feature-list { display: grid; gap: 20px; margin-top: 32px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-badge {
  flex: none; width: 46px; height: 46px; border-radius: 10px;
  background: rgba(201,207,217,.07); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.feature-badge svg { width: 22px; height: 22px; stroke: var(--silver-300); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h4 { font-size: 16.5px; color: #f2f4f8; font-weight: 800; margin-bottom: 4px; }
.feature p { font-size: 14.5px; color: var(--silver-400); }

/* ============ PROCESS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  background: linear-gradient(180deg, rgba(201,207,217,.5), rgba(201,207,217,.06));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px; line-height: 1;
}
.step h4 { font-size: 16.5px; color: #f2f4f8; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--silver-400); }

/* ============ SEKTÖR CAROUSEL ============ */
.carousel { position: relative; }
.carousel-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.sector {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: border-color .3s, transform .3s;
}
.sector:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.sector h4 { font-size: 17px; font-weight: 800; color: #f2f4f8; margin-bottom: 8px; }
.sector p { font-size: 14px; color: var(--silver-400); }
.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-strong);
  color: var(--silver-200); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.carousel-nav button:hover { background: rgba(255,255,255,.08); border-color: var(--silver-400); }
.carousel-nav svg { width: 18px; height: 18px; }

/* ============ REFERANS MARQUEE ============ */
.marquee { position: relative; overflow: hidden; padding: 8px 0; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--navy-900), transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ref-logo {
  flex: none; width: 208px; height: 104px; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  transition: border-color .3s, background .3s;
}
.ref-logo:hover { border-color: var(--line-strong); background: rgba(255,255,255,.06); }
.ref-logo .mark {
  font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: .06em;
  background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ref-logo .label { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-500); font-weight: 700; }

.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ref-grid .ref-logo { width: 100%; height: 128px; }

/* ============ BLOG ============ */
.post {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.post:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.post-cover {
  height: 168px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex; align-items: center; justify-content: center;
}
.post-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,207,217,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201,207,217,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.post-cover svg { width: 54px; height: 54px; stroke: var(--silver-300); fill: none; stroke-width: 1.4; opacity: .75; position: relative; z-index: 2; }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-500); font-weight: 700; margin-bottom: 12px; }
.post h3 { font-size: 18px; font-weight: 800; color: #f2f4f8; margin-bottom: 10px; line-height: 1.4; }
.post p { font-size: 14.5px; color: var(--silver-400); }
.post .more { margin-top: auto; padding-top: 18px; font-size: 14px; font-weight: 700; color: var(--silver-300); }
.post:hover .more { color: #fff; }

/* makale içeriği */
.article { max-width: 820px; }
.article h2 { font-family: var(--font-display); font-size: 26px; color: #f2f4f8; margin: 36px 0 14px; }
.article h3 { font-size: 19px; color: #f2f4f8; margin: 28px 0 10px; font-weight: 800; }
.article p { color: var(--silver-400); margin-bottom: 16px; }
.article ul { margin: 0 0 18px 0; list-style: none; display: grid; gap: 9px; }
.article ul li { padding-left: 24px; position: relative; color: var(--silver-300); font-size: 15.5px; }
.article ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 11px; height: 11px;
  background: var(--grad-silver); clip-path: polygon(40% 0, 60% 0, 100% 50%, 60% 100%, 40% 100%, 75% 50%);
}
.article .callout {
  border-left: 3px solid var(--silver-400); background: rgba(255,255,255,.03);
  padding: 18px 22px; border-radius: 0 10px 10px 0; margin: 24px 0; color: var(--silver-300); font-size: 15.5px;
}

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(950px 420px at 78% -25%, rgba(44,74,112,.42), transparent 62%), var(--navy-900);
  border-bottom: 1px solid var(--line); padding: 78px 0 62px; text-align: center;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,207,217,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,207,217,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(700px 340px at 50% 40%, #000 10%, transparent 75%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(29px, 3.9vw, 45px); color: #f5f7fa; font-weight: 700; margin-bottom: 13px; }
.page-hero p { color: var(--silver-400); max-width: 640px; margin: 0 auto; font-size: 16.5px; }
.crumbs { margin-top: 20px; font-size: 12.5px; color: var(--silver-500); letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.crumbs a:hover { color: var(--silver-200); }
.crumbs .sep { margin: 0 9px; opacity: .5; }

/* ============ SIDEBAR LAYOUT ============ */
.with-sidebar { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.with-sidebar.right { grid-template-columns: 1fr 300px; }
.sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.side-box { background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.side-box h4 {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver-300); font-weight: 800; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.side-menu { list-style: none; display: grid; gap: 4px; }
.side-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 600;
  color: var(--silver-400); transition: all .25s;
}
.side-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.side-menu a.active { background: rgba(255,255,255,.07); color: #fff; }
.side-menu a::after { content: "›"; opacity: .5; font-size: 17px; }
.side-cta { background: linear-gradient(160deg, var(--navy-700), var(--navy-850)); text-align: center; }
.side-cta img { width: 92px; margin: 0 auto 14px; }
.side-cta p { font-size: 14px; color: var(--silver-400); margin-bottom: 16px; }
.side-cta .phone { font-family: var(--font-display); font-size: 20px; color: #fff; display: block; margin-bottom: 14px; }

/* ============ SERVICE CONTENT ============ */
.svc-body > p { color: var(--silver-400); margin-bottom: 18px; font-size: 16px; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 24px 0; }
.check-list li { font-size: 14.8px; color: var(--silver-300); padding-left: 28px; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 5px;
  background: rgba(201,207,217,.1); border: 1px solid var(--line-strong);
}
.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 7px; height: 4px;
  border-left: 2px solid var(--silver-200); border-bottom: 2px solid var(--silver-200);
  transform: rotate(-45deg);
}
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.info-box { background: var(--navy-850); border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }
.info-box b { display: block; font-size: 15px; color: #f2f4f8; margin-bottom: 6px; }
.info-box span { font-size: 14px; color: var(--silver-400); }

/* ============ ACCORDION (SSS) ============ */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--navy-850); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font: 800 16px var(--font-body); color: #f2f4f8;
}
.faq-q .ico { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--silver-300); border-radius: 2px; transition: transform .3s;
}
.faq-q .ico::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq-q .ico::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item.open .faq-q .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--silver-400); font-size: 15px; }

/* ============ CTA BAND ============ */
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(700px 300px at 85% 20%, rgba(44,74,112,.5), transparent 65%), linear-gradient(120deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--line); border-radius: 20px; padding: 58px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(23px, 2.9vw, 33px); color: #f4f6f9; line-height: 1.25; max-width: 600px; }
.cta-band p { color: var(--silver-400); margin-top: 10px; max-width: 540px; }

/* ============ FORMS ============ */
.form-card { background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 36px; }
.form-card h3 { font-family: var(--font-display); font-size: 23px; color: #f2f4f8; margin-bottom: 8px; }
.form-card .form-intro { color: var(--silver-400); font-size: 14.5px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.fieldset-title {
  grid-column: 1 / -1; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver-500); font-weight: 800; margin-top: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--silver-400); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--navy-950); border: 1px solid var(--line); border-radius: 10px;
  color: var(--silver-100); padding: 13px 15px; font: 500 15px var(--font-body); transition: border-color .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--silver-400); }
.field-check { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--silver-400); }
.field-check input { width: 17px; height: 17px; flex: none; margin-top: 3px; accent-color: #8f99a8; }
.form-note { font-size: 12.5px; color: var(--silver-500); margin-top: 14px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--navy-850); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.contact-item .card-icon { margin: 0; flex: none; width: 48px; height: 48px; }
.contact-item h4 { font-size: 15px; font-weight: 800; color: #f2f4f8; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--silver-400); }
.contact-item a:hover { color: #fff; }
.map-wrap { margin-top: 56px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); filter: grayscale(1) invert(.92) contrast(.9); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
footer { background: var(--navy-950); border-top: 1px solid var(--line); padding: 68px 0 0; color: var(--silver-400); font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; }
.footer-brand img { height: 92px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 14px; color: var(--silver-500); margin-bottom: 18px; }
footer h5 { font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--silver-300); margin-bottom: 20px; font-weight: 800; }
footer ul { list-style: none; display: grid; gap: 11px; }
footer ul a { color: var(--silver-500); transition: color .2s; }
footer ul a:hover { color: #fff; }
footer ul li { display: flex; gap: 10px; align-items: flex-start; }
footer ul li svg { width: 15px; height: 15px; flex: none; margin-top: 5px; opacity: .6; }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; font-size: 13px; color: var(--silver-500); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 11px;
  background: #25d366; color: #06331a; font-weight: 800; font-size: 14.5px;
  padding: 13px 20px 13px 16px; border-radius: 100px;
  box-shadow: 0 12px 34px rgba(0,0,0,.45); transition: transform .25s, filter .25s;
}
.wa-float:hover { transform: translateY(-3px); filter: brightness(1.05); }
.wa-float svg { width: 24px; height: 24px; fill: #06331a; }
.to-top {
  position: fixed; right: 24px; bottom: 88px; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,26,46,.92); border: 1px solid var(--line-strong); color: var(--silver-200);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: rgba(28,48,73,.95); }
.to-top svg { width: 18px; height: 18px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1400px) {
  .brand-name { font-size: 16px; letter-spacing: .07em; }
  .brand-sub { font-size: 9px; letter-spacing: .24em; }
  .nav-item > a { padding: 12px 11px; font-size: 13.4px; }
  .nav-cta { padding: 10px 16px !important; }
}
@media (max-width: 1520px) {
  .brand-text { display: none; }
  .nav-item > a { padding: 12px 13px; font-size: 13.8px; }
  .nav-cta { padding: 11px 18px !important; }
}
@media (max-width: 1020px) {
  .highlights { grid-template-columns: 1fr; margin-top: -50px; }
  .cards, .cards.two { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 30px; }
  .with-sidebar, .with-sidebar.right { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
  .slider-arrow { display: none; }
}
@media (max-width: 900px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(8,15,28,.97); }
  .main-nav {
    position: fixed; inset: 0; z-index: 100; background: #060d18;
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 2px; padding: 100px 22px 40px; overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-item > a { padding: 17px 6px; font-size: 16.5px; justify-content: space-between; }
  .nav-item.active > a::after { display: none; }
  .sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none; background: transparent;
    padding: 0 0 12px 12px; min-width: 0;
  }
  .nav-item.open > .sub { display: block; }
  .sub a { font-size: 14.5px; padding: 11px 10px; }
  .nav-cta { margin: 18px 0 0; justify-content: center; }
  .burger { display: block; z-index: 110; position: relative; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .lang-switch { position: relative; z-index: 110; }
  .topbar-left { display: none; }
  .slide-watermark { opacity: .08; right: -20%; width: 90%; }
  .slide p { font-size: 16px; }
}
@media (max-width: 680px) {
  .cards, .cards.two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  section.block { padding: 62px 0; }
  .slides { height: auto; min-height: 540px; }
  .slide { position: relative; }
  .slide:not(.active) { display: none; }
  .slide-inner { padding: 66px 0 90px; }
  .form-card { padding: 28px 22px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .brand img { height: 54px; }
}
