:root {
  /* Palette — premium charcoal + refined gold, subtle Japan-red nod */
  --ink: #0E1217;
  --ink-2: #161B22;
  --ink-3: #1E242D;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --paper: #F7F5F1;
  --paper-2: #EFEBE3;
  --gold: #C8A45C;
  --gold-bright: #E0BE76;
  --gold-deep: #A9863F;
  --jp-red: #C8102E;
  --text: #11151B;
  --text-soft: #5A636F;
  --text-invert: #F4F2ED;
  --text-invert-soft: #A8B0BC;
  --ok: #2E7D5B;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow: 0 18px 50px -20px rgba(8,12,18,0.45);
  --shadow-soft: 0 8px 30px -12px rgba(8,12,18,0.18);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
p { color: var(--text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-dark { background: var(--ink); color: var(--text-invert); }
.section-dark p { color: var(--text-invert-soft); }
.section-paper2 { background: var(--paper-2); }
.center { text-align: center; }
.mw-720 { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.section-dark .kicker { color: var(--gold-bright); }
.kicker.center-k { justify-content: center; }

.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-soft); }
.section-dark .lead { color: var(--text-invert-soft); }
.section-head { margin-bottom: 54px; }
.section-head h2 { margin: 14px 0 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 15px 28px; border-radius: var(--radius-sm); cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.3s var(--ease);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold); color: #1A1206; box-shadow: 0 10px 26px -10px rgba(200,164,92,0.6); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(200,164,92,0.7); }
.btn-dark { background: var(--ink); color: var(--text-invert); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--text-invert); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-outline { background: transparent; border-color: rgba(14,18,23,0.18); color: var(--text); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center-row { justify-content: center; }

/* Header / Nav */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(14,18,23,0.85); backdrop-filter: blur(14px);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text-invert); }
.brand-mark {
  height: 44px; width: auto; display: inline-flex; align-items: center; flex-shrink: 0;
}
.brand-mark svg { height: 44px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-bright); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--text-invert-soft); font-family: var(--font-head); font-weight: 500;
  font-size: 0.92rem; padding: 9px 15px; border-radius: 8px; transition: all 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-invert); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta { margin-left: 10px; background: var(--gold-bright); color: #140F06; font-weight: 700; box-shadow: 0 6px 18px -6px rgba(224,190,118,0.7); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text-invert); margin: 5px 0; transition: all 0.3s var(--ease); border-radius: 2px; }
.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); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--ink); color: var(--text-invert); overflow: hidden;
  padding: 140px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--ink) 28%, rgba(14,18,23,0.72) 60%, rgba(14,18,23,0.35) 100%);
}
.hero-glow {
  position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; z-index: 0;
  background: radial-gradient(circle, rgba(200,164,92,0.18), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .gold { color: var(--gold-bright); }
.hero-lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--text-invert-soft); max-width: 600px; margin-bottom: 36px; }
.hero .btn-row { margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--text-invert); }
.hero-stat .num .gold { color: var(--gold-bright); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--text-invert-soft); letter-spacing: 0.04em; }
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-invert-soft);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6);} 50% { opacity: 1; transform: scaleY(1);} }

/* Page hero (inner pages) */
.page-hero {
  background: var(--ink); color: var(--text-invert); position: relative; overflow: hidden;
  padding: 180px 0 80px; text-align: center;
}
.page-hero .hero-glow { top: -40%; right: 50%; transform: translateX(50%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 18px 0 18px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-invert-soft); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--gold-bright); }

/* Trust bar */
.trustbar { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trustbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text-invert-soft); font-size: 0.92rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* Feature grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid rgba(14,18,23,0.07); border-radius: var(--radius);
  padding: 34px 30px; transition: all 0.35s var(--ease); position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(200,164,92,0.4); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(200,164,92,0.16), rgba(200,164,92,0.05));
  color: var(--gold-deep); margin-bottom: 22px;
}
.card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.section-dark .card { background: var(--ink-2); border-color: var(--line); }
.section-dark .card:hover { border-color: rgba(200,164,92,0.4); }
.section-dark .card h3 { color: var(--text-invert); }

/* Bridge section */
.bridge { position: relative; overflow: hidden; }
.bridge-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; max-width: 900px; margin-inline: auto; }
.bridge-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--line);
}
.bridge-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.bridge-route { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0; z-index: 2; }
.route-node { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.route-flag { font-size: 2.6rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4)); }
.route-label { font-family: var(--font-head); font-weight: 700; color: var(--text-invert); font-size: 1.1rem; }
.route-sub { font-size: 0.76rem; color: var(--text-invert-soft); letter-spacing: 0.1em; text-transform: uppercase; }
.route-line { width: 2px; height: 70px; background: linear-gradient(var(--gold-bright), var(--gold-deep)); position: relative; margin: 14px 0; }
.route-line::before, .route-line::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); }
.route-line::before { top: -2px; } .route-line::after { bottom: -2px; }
.route-ship { position: absolute; left: 50%; transform: translateX(-50%); font-size: 1.4rem; animation: sail 3.5s var(--ease) infinite; }
@keyframes sail { 0%,100% { top: 8%; opacity: 0.5; } 50% { top: 70%; opacity: 1; } }
.bridge-list { margin-top: 28px; display: grid; gap: 16px; }
.bridge-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-invert-soft); }
.bridge-list svg { width: 22px; height: 22px; color: var(--gold-bright); flex-shrink: 0; margin-top: 2px; }
.bridge-list b { color: var(--text-invert); font-weight: 600; }

/* Quote block */
.quote-block {
  border-left: 3px solid var(--gold); padding: 8px 0 8px 26px; margin: 30px 0;
  font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500;
  line-height: 1.45; font-style: italic; color: var(--text-invert);
}
.section-light .quote-block { color: var(--text); }

/* How it works / timeline */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.step { position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  background: var(--ink); color: var(--gold-bright); border: 2px solid var(--gold); margin-bottom: 20px;
}
.section-dark .step-num { background: var(--ink-2); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; }
.step-connector { position: absolute; top: 26px; left: 52px; right: -26px; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(200,164,92,0.1)); z-index: 0; }
.step:last-child .step-connector { display: none; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--ink-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse .split-media { order: 2; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(200,164,92,0.14); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; }
.feature-list .fi-icon svg { width: 17px; height: 17px; }
.feature-list b { display: block; color: var(--text); font-family: var(--font-head); font-size: 1rem; }
.feature-list span { font-size: 0.93rem; color: var(--text-soft); }

/* Dealer / partner band */
.partner-band { background: linear-gradient(135deg, var(--ink), var(--ink-3)); position: relative; overflow: hidden; }
.partner-band .hero-glow { top: 50%; left: -10%; transform: translateY(-50%); }
.partner-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.partner-types { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.partner-type { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: all 0.3s var(--ease); }
.partner-type:hover { border-color: rgba(200,164,92,0.4); background: rgba(255,255,255,0.06); }
.partner-type svg { width: 26px; height: 26px; color: var(--gold-bright); margin-bottom: 12px; }
.partner-type h4 { color: var(--text-invert); font-size: 1.02rem; margin-bottom: 5px; }
.partner-type p { font-size: 0.86rem; color: var(--text-invert-soft); }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stats-band.stats-3 { grid-template-columns: repeat(auto-fit, minmax(190px, 240px)); gap: 30px 44px; justify-content: center; }
.stat-big .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-bright); line-height: 1; }
.stat-big .lbl { color: var(--text-invert-soft); font-size: 0.92rem; margin-top: 10px; }

/* Featured vehicles */
.vehicle-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(14,18,23,0.07); transition: all 0.35s var(--ease); }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.vehicle-media { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--ink-3); }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.vehicle-card:hover .vehicle-media img { transform: scale(1.06); }
.vehicle-badge { position: absolute; top: 14px; left: 14px; background: var(--ink); color: var(--gold-bright); font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; padding: 6px 13px; border-radius: 30px; letter-spacing: 0.06em; }
.vehicle-body { padding: 22px 22px 26px; }
.vehicle-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.vehicle-origin { font-size: 0.82rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 14px; }
.vehicle-specs { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid rgba(14,18,23,0.07); }
.vehicle-spec { font-size: 0.82rem; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.vehicle-spec svg { width: 15px; height: 15px; color: var(--gold-deep); }
.cars-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.cars-grid .vehicle-card { flex: 0 1 calc((100% - 48px) / 3); max-width: 380px; min-width: 240px; }
@media (max-width: 980px) { .cars-grid .vehicle-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 720px) { .cars-grid .vehicle-card { flex-basis: 100%; max-width: 460px; min-width: 0; } }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid rgba(14,18,23,0.07); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.section-dark .review-card { background: var(--ink-2); border-color: var(--line); }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review-text { font-size: 0.98rem; color: var(--text); line-height: 1.6; flex-grow: 1; }
.section-dark .review-text { color: var(--text-invert); }
.review-author { display: flex; align-items: center; gap: 13px; padding-top: 6px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #15100A; flex-shrink: 0; }
.review-meta b { display: block; font-family: var(--font-head); font-size: 0.97rem; color: var(--text); }
.section-dark .review-meta b { color: var(--text-invert); }
.review-meta span { font-size: 0.82rem; color: var(--text-soft); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(14,18,23,0.1); border-radius: 30px; padding: 10px 20px; box-shadow: var(--shadow-soft); }
.google-badge .g-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.google-badge .g-logo .b{color:#4285F4}.google-badge .g-logo .r{color:#EA4335}.google-badge .g-logo .y{color:#FBBC05}.google-badge .g-logo .g{color:#34A853}
.google-badge .g-rating { font-weight: 700; color: var(--text); }
.google-badge .stars svg { width: 15px; height: 15px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(14,18,23,0.1); }
.section-dark .faq-item { border-color: var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--text); }
.section-dark .faq-q { color: var(--text-invert); }
.faq-q .icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s var(--ease); font-size: 1.3rem; line-height: 1; }
.section-dark .faq-q .icon { color: var(--gold-bright); }
.faq-item.open .faq-q .icon { background: var(--gold); color: #15100A; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--text-soft); font-size: 0.99rem; max-width: 90%; }
.section-dark .faq-a-inner { color: var(--text-invert-soft); }

/* Forms */
.form-wrap { background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow); border: 1px solid rgba(14,18,23,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--text); }
.field label .req { color: var(--jp-red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 14px 16px; border: 1.5px solid rgba(14,18,23,0.14); border-radius: var(--radius-sm);
  background: var(--paper); transition: all 0.25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(200,164,92,0.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.8rem; color: var(--text-soft); }
.form-note { font-size: 0.85rem; color: var(--text-soft); margin-top: 6px; }
.form-success { display: none; background: rgba(46,125,91,0.1); border: 1.5px solid var(--ok); color: var(--ok); padding: 18px 22px; border-radius: var(--radius-sm); font-weight: 600; align-items: center; gap: 12px; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 40vw; height: 200%; background: rgba(255,255,255,0.08); transform: rotate(18deg); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #1A1206; }
.cta-inner p { color: #3A2C10; font-size: 1.1rem; margin: 16px 0 30px; }
.cta-banner .btn-dark { background: var(--ink); }
.cta-banner .btn-dark:hover { background: #000; }

/* Map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(14,18,23,0.08); min-height: 380px; background: var(--ink-3); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,164,92,0.14); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-item .ci-icon svg { width: 22px; height: 22px; }
.contact-info-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact-info-item a, .contact-info-item p { color: var(--text-soft); font-size: 0.96rem; }
.contact-info-item a:hover { color: var(--gold-deep); }

/* Footer */
.site-footer { background: var(--ink); color: var(--text-invert-soft); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-about p { margin: 20px 0; font-size: 0.94rem; max-width: 320px; }
.footer-col h4 { color: var(--text-invert); font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.93rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.93rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.social-row a:hover { background: var(--gold); color: #15100A; transform: translateY(-3px); border-color: var(--gold); }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* Contact FAB (expanding) */
.contact-fab { position: fixed; right: 26px; bottom: 26px; z-index: 950; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none; }
.cf-options { display: flex; flex-direction: column; align-items: flex-end; gap: 13px; margin-bottom: 2px; }
.cf-opt { display: flex; align-items: center; gap: 11px; text-decoration: none; opacity: 0; transform: translateY(16px) scale(0.85); pointer-events: none; transition: opacity 0.35s var(--ease), transform 0.45s var(--ease); }
.cf-opt .cf-name { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.01em; color: #13181f; background: #fff; padding: 9px 14px; border-radius: 11px; white-space: nowrap; box-shadow: 0 10px 24px -10px rgba(0,0,0,0.55); position: relative; }
.cf-opt .cf-name::after { content: ""; position: absolute; right: -5px; top: 50%; width: 10px; height: 10px; background: #fff; transform: translateY(-50%) rotate(45deg); border-radius: 2px; }
.cf-opt .cf-ic { flex: none; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 26px -8px rgba(0,0,0,0.5); color: #fff; transition: transform 0.2s var(--ease); }
.cf-opt .cf-ic svg { width: 26px; height: 26px; }
.cf-opt:hover .cf-ic { transform: scale(1.09); }
.cf-opt:hover .cf-name { color: #000; }
.cf-wa .cf-ic { background: #25D366; }
.cf-vb .cf-ic { background: #7360F2; }
.cf-call .cf-ic { background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep)); }
.cf-call .cf-ic svg { width: 24px; height: 24px; }
.cf-fb .cf-ic { background: #1877F2; }
.cf-fb .cf-ic svg { width: 24px; height: 24px; }
.cf-ig .cf-ic { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.contact-fab.open .cf-opt { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.contact-fab.open .cf-ig { transition-delay: 0.04s; }
.contact-fab.open .cf-fb { transition-delay: 0.09s; }
.contact-fab.open .cf-call { transition-delay: 0.14s; }
.contact-fab.open .cf-vb { transition-delay: 0.19s; }
.contact-fab.open .cf-wa { transition-delay: 0.24s; }
.cf-trigger { position: relative; width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer; pointer-events: auto; background: #25D366; display: grid; place-items: center; box-shadow: 0 14px 32px -8px rgba(37,211,102,0.62); transition: background 0.3s var(--ease), transform 0.3s var(--ease); animation: wapulse 2.8s infinite; }
.cf-trigger:hover { transform: scale(1.06); }
.cf-trigger svg { position: absolute; width: 32px; height: 32px; color: #fff; transition: opacity 0.25s var(--ease), transform 0.35s var(--ease); }
.cf-ic-chat { opacity: 1; transform: rotate(0) scale(1); }
.cf-ic-x { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.contact-fab.open .cf-trigger { background: var(--ink-3); box-shadow: 0 14px 32px -10px rgba(0,0,0,0.6); animation: none; }
.contact-fab.open .cf-ic-chat { opacity: 0; transform: rotate(90deg) scale(0.6); }
.contact-fab.open .cf-ic-x { opacity: 1; transform: rotate(0) scale(1); color: var(--gold-bright); }
@keyframes wapulse { 0% { box-shadow: 0 14px 32px -8px rgba(37,211,102,0.62), 0 0 0 0 rgba(37,211,102,0.42);} 70% { box-shadow: 0 14px 32px -8px rgba(37,211,102,0.62), 0 0 0 15px rgba(37,211,102,0);} 100% { box-shadow: 0 14px 32px -8px rgba(37,211,102,0.62), 0 0 0 0 rgba(37,211,102,0);} }
.cf-tip { position: absolute; right: 74px; bottom: 14px; background: #fff; color: #13181f; font-family: var(--font-head); font-weight: 700; font-size: 0.84rem; padding: 10px 15px; border-radius: 12px; white-space: nowrap; box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5); opacity: 0; transform: translateX(10px) scale(0.9); pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.cf-tip::after { content: ""; position: absolute; right: -6px; bottom: 18px; width: 12px; height: 12px; background: #fff; transform: rotate(45deg); border-radius: 2px; }
.cf-tip .cf-wave { display: inline-block; margin-left: 4px; }
.cf-tip.show { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; animation: tipbob 2.4s ease-in-out 1s infinite; }
.cf-tip-close { position: absolute; top: -7px; left: -7px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink-3); color: #fff; border: none; cursor: pointer; font-size: 12px; line-height: 1; display: grid; place-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.35); }
@keyframes tipbob { 0%, 100% { transform: translateX(0);} 50% { transform: translateX(-5px);} }
@media (prefers-reduced-motion: reduce) { .cf-trigger { animation: none; } .cf-tip.show { animation: none; } .cf-opt { transition: opacity 0.2s linear; } }
@media (max-width: 560px) { .contact-fab { right: 18px; bottom: 18px; } .cf-tip { right: 70px; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; } .reveal-d2 { transition-delay: 0.16s; } .reveal-d3 { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .bridge-grid, .split, .partner-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .reviews-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(80vw, 320px);
    background: var(--ink-2); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 100px 28px 40px; gap: 6px; transform: translateX(100%); transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line); z-index: 1050;
  }
  .nav-links.open { transform: none; box-shadow: -20px 0 60px -20px rgba(0,0,0,0.6); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: block; }
  .scroll-hint { display: none; }
  .grid-2, .grid-3, .grid-4, .reviews-grid, .form-grid, .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-stat .num { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-row .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ===== Language Switcher (custom UI, Google Translate engine) ===== */
.lang-switch { position: relative; display: inline-flex; }
.lang-btn { display:inline-flex; align-items:center; gap:7px; background:rgba(255,255,255,0.06); border:1px solid var(--line-strong); color:var(--text-invert); font-family:var(--font-head); font-weight:600; font-size:0.85rem; padding:8px 12px; border-radius:8px; cursor:pointer; transition:all .25s var(--ease); }
.lang-btn:hover { background:rgba(255,255,255,0.12); border-color:var(--gold); }
.lang-btn svg { width:16px; height:16px; }
.lang-btn .lf { font-size:1.05rem; line-height:1; }
.lang-chev { transition: transform .3s var(--ease); opacity:.65; }
.lang-switch.open .lang-chev { transform: rotate(180deg); }
.lang-menu { position:absolute; top:calc(100% + 10px); right:0; min-width:195px; background:var(--ink-2); border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow); padding:8px; display:none; flex-direction:column; gap:2px; z-index:1200; }
.lang-switch.open .lang-menu { display:flex; animation: langFade .25s var(--ease); }
.lang-menu button { display:flex; align-items:center; gap:11px; width:100%; text-align:left; background:none; border:none; color:var(--text-invert-soft); font-family:var(--font-body); font-size:0.95rem; padding:10px 13px; border-radius:8px; cursor:pointer; transition:all .2s; }
.lang-menu button:hover { background:rgba(255,255,255,0.07); color:var(--text-invert); }
.lang-menu button.active { color:var(--gold-bright); background:rgba(200,164,92,0.1); }
.lang-menu .lf { font-size:1.15rem; line-height:1; }
@keyframes langFade { from{opacity:0; transform:translateY(-6px);} to{opacity:1; transform:none;} }

/* Hide Google Translate default chrome */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate, iframe.goog-te-banner-frame { display:none !important; }
body { top:0 !important; position: static !important; }
#google_translate_element { display:none !important; }
.goog-tooltip, #goog-gt-tt, .goog-te-balloon-frame { display:none !important; }
.goog-text-highlight { background:none !important; box-shadow:none !important; }

@media (max-width: 720px) {
  .lang-switch { width:100%; margin-top:6px; }
  .lang-btn { width:100%; justify-content:center; }
  .lang-menu { position:static; width:100%; margin-top:8px; box-shadow:none; }
}

/* ===== Premium scroll motion ===== */
.scroll-progress{position:fixed;top:0;left:0;height:3px;width:100%;background:linear-gradient(90deg,var(--gold,#C8A45C),var(--gold-bright,#E0BE76));transform:scaleX(0);transform-origin:0 50%;z-index:1100;will-change:transform;pointer-events:none}
.hero-bg img,.split-media img,.bridge-visual img,.vehicle-media img{will-change:transform}
.hero-inner{will-change:transform,opacity}
.reveal{transform:translateY(30px) scale(.985)}
.reveal.in{transform:none}
.to-top{position:fixed;bottom:96px;right:26px;z-index:88;width:48px;height:48px;border-radius:50%;background:var(--ink,#0E1217);color:var(--gold-bright,#E0BE76);border:1px solid var(--line-strong,rgba(255,255,255,.16));display:grid;place-items:center;cursor:pointer;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity .35s,visibility .35s,transform .35s,background .25s}
.to-top.show{opacity:1;visibility:visible;transform:none}
.to-top:hover{background:var(--gold,#C8A45C);color:#15100A}
.to-top svg{width:20px;height:20px}
@media(prefers-reduced-motion:reduce){.scroll-progress,.to-top{display:none!important}.hero-bg img,.split-media img,.bridge-visual img,.vehicle-media img,.hero-inner{transform:none!important;opacity:1!important}}

/* ===== Hero sliding banner (hb-) ===== */
.hb-hero{position:relative;height:100vh;min-height:580px;overflow:hidden}
.hb-slider{position:absolute;inset:0;z-index:0}
.hb-track{display:flex;height:100%;transition:transform 1.1s cubic-bezier(.66,0,.2,1)}
.hb-slide{height:100%;position:relative;overflow:hidden;flex:0 0 auto}
.hb-img{position:absolute;inset:-2%;background-size:cover;background-position:center;animation:hbkb 9s ease-in-out infinite alternate}
@keyframes hbkb{from{transform:scale(1.03)}to{transform:scale(1.15)}}
.hb-grad{position:absolute;inset:0;background:linear-gradient(105deg,var(--ink,#0E1217) 26%,rgba(14,18,23,.6) 58%,rgba(14,18,23,.28) 100%)}
.hb-slide.hb-dark{background:radial-gradient(120% 110% at 30% 40%,#1a222c,#0b0f14 72%)}
.hb-wrap{position:relative;max-width:1180px;height:100%;margin:0 auto;z-index:2}
.hb-copy{position:absolute;left:40px;right:40px;bottom:50%;padding-bottom:14px}
.hb-eyebrow{font-family:var(--font-head,'Sora',sans-serif);font-weight:700;font-size:.72rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold-bright,#E0BE76)}
.hb-copy h1{font-family:var(--font-head,'Sora',sans-serif);font-weight:800;color:#fff;letter-spacing:-.02em;line-height:1.05;margin:18px 0 0;font-size:clamp(2.2rem,4.4vw,3.9rem)}
.hb-copy h1 .g{color:var(--gold-bright,#E0BE76)}
.hb-mrows{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;gap:30px;z-index:1;opacity:.42}
.hb-mrow{display:flex;gap:46px;white-space:nowrap;width:max-content;animation:hbmarq 40s linear infinite}
.hb-mrow.hb-r2{animation:hbmarq 52s linear infinite;align-self:flex-end}
.hb-mrow span{font-family:var(--font-head,'Sora',sans-serif);font-weight:700;font-size:clamp(1.3rem,2.4vw,2rem);color:#6f7782}
@keyframes hbmarq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.hb-static{position:absolute;inset:0;z-index:4;pointer-events:none}
.hb-cta{position:absolute;left:40px;top:50%;padding-top:14px;pointer-events:auto;max-width:1180px}
.hb-sub{color:var(--text-invert-soft,#A8B0BC);font-size:1.1rem;max-width:44ch;line-height:1.5}
.hb-chips{display:flex;gap:12px;flex-wrap:wrap;margin:22px 0 26px}
.hb-chip{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);color:#E8E4DC;font-family:var(--font-head,'Sora',sans-serif);font-weight:600;font-size:.86rem;padding:10px 17px;border-radius:30px}
.hb-chip .hb-t{color:var(--gold-bright,#E0BE76);font-weight:800}
.hb-btns{display:flex;gap:14px;flex-wrap:wrap}
.hb-btn{font-family:var(--font-head,'Sora',sans-serif);font-weight:600;font-size:1rem;padding:15px 30px;border-radius:9px;border:1.5px solid transparent;text-decoration:none;display:inline-block}
.hb-btn.gold{background:var(--gold,#C8A45C);color:#15100A}
.hb-btn.ghost{background:transparent;border-color:rgba(255,255,255,.45);color:#fff}
.hb-dots{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);z-index:6;display:flex;gap:9px}
.hb-dot{width:26px;height:3px;background:rgba(255,255,255,.28);border-radius:3px;transition:background .4s,width .4s}
.hb-dot.on{background:var(--gold-bright,#E0BE76);width:40px}
.hb-cta{left:max(40px,calc((100% - 1180px)/2 + 40px))}
@media(max-width:760px){.hb-copy,.hb-cta{left:24px;right:24px}}
@media(prefers-reduced-motion:reduce){.hb-img,.hb-mrow{animation:none}.hb-track{transition:none}}

/* Voyage ship-map */
.shipmap-section { position: relative; overflow: hidden; background: #0A0D12; padding: 0; }
.shipmap-stage { position: relative; width: 100%; max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); }
.shipmap-stage svg { display: block; width: 100%; height: auto; }
.shipmap-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; padding: 7vh 7vw; pointer-events: none; }
.shipmap-head { position: relative; z-index: 0; isolation: isolate; max-width: 640px; margin: 0; }
.shipmap-head::before { content: ''; position: absolute; inset: -26px -58px -42px -58px; z-index: -1; background: rgba(9,11,16,0.6); border-radius: 28px; filter: blur(26px); }
.shipmap-head .kicker { color: var(--gold-bright); justify-content: center; }
.shipmap-head h2 { color: #fff; margin: 12px auto 0; max-width: 20ch; }
.shipmap-head .lead { color: #dfe4ee; margin: 14px auto 0; max-width: 48ch; text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 18px rgba(0,0,0,0.8); }
@media (min-width: 761px) {
  .shipmap-section::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 30px; background: linear-gradient(to bottom, rgba(10,13,18,0), var(--paper-2)); z-index: 1; pointer-events: none; }
}
@media (max-width: 760px) {
  .shipmap-section { display: flex; flex-direction: column; }
  .shipmap-overlay { position: relative; inset: auto; order: 0; padding: 34px 6vw 20px; }
  .shipmap-stage { order: 1; }
  .shipmap-head::before { display: none; }
}
.sm-dots circle { fill: #C8A45C; opacity: 0.40; }
.sm-route-bg { fill: none; stroke: rgba(224,190,118,0.32); stroke-width: 1.8; stroke-dasharray: 2 6; stroke-linecap: round; }
.sm-route-trail { fill: none; stroke: url(#smgold); stroke-width: 3.2; stroke-linecap: round; filter: url(#smsoft); }
.sm-pin-label { font-family: var(--font-head); font-weight: 700; font-size: 15px; fill: #F4F2ED; letter-spacing: 0.12em; }
.sm-pin-sub { font-family: var(--font-body); font-size: 11px; fill: var(--text-invert-soft); letter-spacing: 0.04em; }
@media (prefers-reduced-motion: reduce) { .sm-anim { display: none; } .sm-route-trail { stroke-dashoffset: 0 !important; } }
@media (max-width: 560px) { .sm-pin-label { font-size: 19px; } .sm-pin-sub { font-size: 14px; } }
.reviews-widget { max-width: 1100px; margin: 8px auto 0; }

/* ===== Globe -> Map morph (voyage) ===== */
.gm-section{position:relative;height:100vh;min-height:560px;background:#14161E}
.gm-sticky{position:relative;height:100%;width:100%;overflow:hidden;background:radial-gradient(120% 90% at 50% 16%, #1b1f2b 0%, #14161E 55%, #0e1016 100%)}
.gm-canvas{position:absolute;inset:0;width:100%;height:100%;display:block}
.gm-overlay{position:absolute;inset:0;pointer-events:none;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;text-align:center;padding:9vh 7vw;background:linear-gradient(180deg, rgba(13,15,21,.45) 0%, rgba(13,15,21,.08) 26%, rgba(13,15,21,0) 44%)}
.gm-copy{position:relative;z-index:0;isolation:isolate;max-width:640px}
.gm-copy::before{content:'';position:absolute;inset:-28px -64px -58px -64px;z-index:-1;background:rgba(9,11,16,.93);border-radius:30px;filter:blur(26px)}
.gm-copy .kicker{color:var(--gold-bright);justify-content:center}
.gm-copy h2{color:#fff;font-size:clamp(1.9rem,4.4vw,3.1rem);line-height:1.06;margin:12px auto 0;max-width:20ch;text-shadow:0 2px 30px rgba(0,0,0,.6)}
.gm-copy p{margin:16px auto 0;max-width:50ch;color:#dfe4ee;font-size:clamp(.95rem,1.4vw,1.08rem);line-height:1.6;text-shadow:0 1px 3px rgba(0,0,0,.95),0 2px 22px rgba(0,0,0,.9)}
.gm-label{position:absolute;transform:translate(-50%,-150%);font-size:.6rem;letter-spacing:.16em;font-weight:600;color:#eef1f6;opacity:0;white-space:nowrap;text-shadow:0 1px 8px rgba(0,0,0,.95);pointer-events:none}
.gm-label::after{content:'';position:absolute;left:50%;top:120%;width:1px;height:11px;background:rgba(255,255,255,.7);transform:translateX(-50%)}
#gmCyprus{transform:translate(-50%,60%)}
#gmCyprus::after{top:auto;bottom:120%}
.gm-nowebgl .gm-canvas{display:none}
.gm-nowebgl .gm-sticky{background:#12141b}
@media (max-width:760px){ .gm-overlay{padding:8vh 6vw} }
@media (prefers-reduced-motion:reduce){ .gm-section{height:100vh} }

/* ===== Contact: optional label, send-channel picker, tel toast ===== */
.field label .opt { color: var(--text-soft); font-weight: 400; font-size: 0.86em; }
.send-options { max-height: 0; overflow: hidden; opacity: 0; margin-top: 0; transition: max-height .4s ease, opacity .35s ease, margin .35s ease; }
.send-options.show { max-height: 420px; opacity: 1; margin-top: 18px; }
.send-options-title { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; text-align: center; }
.send-options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.send-opt { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px 8px; border-radius: 14px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: #fff; text-decoration: none; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.send-opt:hover { transform: translateY(-3px); filter: brightness(1.08); }
.send-opt .so-ic { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.send-opt .so-ic svg { width: 26px; height: 26px; }
.so-wa { background: #25D366; }
.so-viber { background: #7360F2; }
.so-tg { background: #2AABEE; }
.so-email { background: var(--gold-deep); }
@media (max-width: 520px) { .send-options-grid { grid-template-columns: repeat(2, 1fr); } .send-options.show { max-height: 520px; } }
.tel-toast { position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%) translateY(12px); background: #14161E; color: #fff; border: 1px solid var(--line-strong); padding: 12px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 8px 30px rgba(0,0,0,0.4); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 2000; }
.tel-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Hero banner manual controls (arrows) ===== */
.hb-hero { position: relative; }
.hb-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 36px; height: 36px; padding: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,0.6); background: rgba(10,13,18,0.55); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0.9; box-shadow: 0 2px 12px rgba(0,0,0,0.4); transition: background .2s, border-color .2s, opacity .2s; -webkit-tap-highlight-color: transparent; }
.hb-arrow svg { width: 16px; height: 16px; }
.hb-arrow:hover { background: rgba(10,13,18,0.65); border-color: var(--gold); opacity: 1; }
.hb-prev { left: 16px; } .hb-next { right: 16px; }
@media (max-width: 760px) { .hb-arrow { display: none; } }

.range-row { display: flex; align-items: center; gap: 10px; }
.range-row select { flex: 1 1 0; min-width: 0; }
.range-sep { flex: none; color: var(--text-soft); font-weight: 700; }
