/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --bg:          #03040A;
  --bg-1:        #070810;
  --bg-2:        #0C0E1C;
  --bg-3:        #101328;
  --bg-card:     #080A16;
  --bg-card-2:   #0C0F20;

  --accent:      #FF5B14;
  --accent-2:    #FF8C30;
  --accent-3:    #FF2E00;
  --accent-glow: rgba(255, 91, 20, 0.18);
  --accent-dim:  rgba(255, 91, 20, 0.08);
  --accent-line: rgba(255, 91, 20, 0.28);

  --text:        #ECEAF8;
  --text-sub:    #8A8AAC;
  --text-dim:    #464662;

  --border:      rgba(255, 255, 255, 0.055);
  --border-2:    rgba(255, 255, 255, 0.09);

  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --font-m: 'DM Mono', monospace;
  --font-n: 'Orbitron', sans-serif;

  --max-w: 1160px;
  --r:     14px;
  --r-lg:  22px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.nav, section, footer, .hero-orb, .page-head, .clients { position: relative; z-index: 1; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}

/* ═══════════════════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════════════════ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
}
.tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-b);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  border: none;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn-primary {
  font-size: 15px;
  padding: 14px 30px;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-3));
  box-shadow: 0 4px 28px rgba(255,91,20,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  box-shadow: 0 8px 44px rgba(255,91,20,0.44), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-ghost {
  font-size: 15px;
  padding: 14px 28px;
  color: var(--text-sub);
  background: transparent;
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }

.sh { text-align: center; margin-bottom: 60px; }
.sh .tag { margin-bottom: 20px; }
.sh h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.sh p {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section { padding: 96px 0; }
.page-head + section { padding-top: 62px; }
section + section { border-top: 1px solid var(--border); }

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.18s; }
.rv-d3 { transition-delay: 0.26s; }
.rv-d4 { transition-delay: 0.34s; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  background: rgba(3, 4, 10, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-cta { font-size: 14px; padding: 9px 20px; border-radius: 8px; }

.nav-ham {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 6px;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(3, 4, 10, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  padding: 20px 36px 28px;
  display: none;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 500;
  color: var(--text-sub);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════
   PAGE HEAD (inner pages)
═══════════════════════════════════════════════════════ */
.page-head {
  padding: 130px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(255,91,20,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-head .tag { margin-bottom: 20px; animation: fade-up 0.5s ease both; }
.page-head h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  animation: fade-up 0.5s 0.08s ease both;
}
.page-head p {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  animation: fade-up 0.5s 0.16s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   HERO (home page)
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 130px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 780px;
  background: radial-gradient(ellipse at center top,
    rgba(255,91,20,0.12) 0%,
    rgba(255,91,20,0.04) 40%,
    transparent 65%);
  pointer-events: none;
  animation: orb-breathe 7s ease-in-out infinite;
  z-index: 0;
}
@keyframes orb-breathe {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.7; transform: translateX(-50%) scale(1.06); }
}
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
}

.hero-wordmark {
  font-family: var(--font-n);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 22px;
  animation: fade-up 0.4s ease both;
}
.hero-left .tag { margin-bottom: 28px; animation: fade-up 0.55s ease both; }
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fade-up 0.55s 0.08s ease both;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fade-up 0.55s 0.16s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fade-up 0.55s 0.24s ease both;
}

/* Dashboard visual */
.hero-visual { animation: fade-up 0.65s 0.2s ease both; }
.hv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,91,20,0.06);
}
.hv-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-dot-r { background: rgba(255,91,20,0.7); }
.hv-dot-y { background: rgba(255,140,0,0.5); }
.hv-dot-g { background: rgba(60,200,80,0.4); }
.hv-topbar-label {
  margin-left: auto;
  font-family: var(--font-m);
  font-size: 10px; color: var(--text-dim); letter-spacing: 0.1em;
}
.hv-body { padding: 22px 22px 18px; }
.hv-kpi { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.hv-kpi-label { font-family: var(--font-m); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.hv-kpi-val { font-family: var(--font-n); font-size: 36px; font-weight: 800; letter-spacing: -0.04em; color: var(--text); line-height: 1; }
.hv-kpi-sub { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.hv-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-m); font-size: 11px; color: #3ccc60; background: rgba(60,204,96,0.10); border: 1px solid rgba(60,204,96,0.2); border-radius: 6px; padding: 5px 10px; }
.hv-chart { display: flex; gap: 5px; align-items: flex-end; height: 52px; margin-bottom: 18px; }
.hv-bar { flex: 1; background: var(--accent-dim); border-radius: 3px 3px 0 0; position: relative; overflow: hidden; }
.hv-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--accent), rgba(255,140,48,0.6)); transform: scaleY(0); transform-origin: bottom; animation: bar-grow 1s calc(var(--delay, 0s) + 0.3s) ease both; }
@keyframes bar-grow { to { transform: scaleY(1); } }
.hv-feed { display: flex; flex-direction: column; gap: 8px; }
.hv-feed-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--bg-1); border: 1px solid var(--border); border-radius: 8px; opacity: 0; animation: feed-in 0.4s ease both; }
@keyframes feed-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.hv-feed-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hv-feed-text { font-size: 12px; color: var(--text-sub); flex: 1; }
.hv-feed-text strong { color: var(--text); font-weight: 600; }
.hv-feed-time { font-family: var(--font-m); font-size: 10px; color: var(--text-dim); flex-shrink: 0; }
.hv-minis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.hv-mini { background: var(--bg-1); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; text-align: center; }
.hv-mini-val { font-family: var(--font-n); font-size: 17px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; margin-bottom: 3px; }
.hv-mini-lbl { font-family: var(--font-m); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════
   CLIENTS MARQUEE
═══════════════════════════════════════════════════════ */
.clients {
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(255,91,20,0.03), transparent);
}
.clients-label {
  text-align: center;
  font-family: var(--font-m);
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 28px;
}
.clients-track-wrap { position: relative; overflow: hidden; }
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: ''; position: absolute; top: 0;
  width: 150px; height: 100%; z-index: 2; pointer-events: none;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.clients-track {
  display: flex; gap: 20px; width: max-content;
  animation: logoScroll 40s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-card {
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; height: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px; flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.logo-card:hover { border-color: var(--accent-line); box-shadow: 0 0 15px rgba(255,91,20,0.12); }
.logo-card img { width: 148px; height: 76px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.55); transition: filter 0.3s; }
.logo-card:hover img { filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(600%) hue-rotate(345deg) brightness(110%) contrast(100%) opacity(0.9); }

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services { position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,91,20,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  left: 0; top: 16px; bottom: 16px; width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s ease; border-radius: 0 2px 2px 0;
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card:hover { border-color: var(--accent-line); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,91,20,0.07); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid var(--accent-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px; transition: background 0.3s;
}
.svc-card:hover .svc-icon { background: var(--accent-glow); }
.svc-card h3 { font-family: var(--font-d); font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   ABOUT / TEAM
═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-left h2 { font-family: var(--font-d); font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 20px 0 22px; }
.about-left p  { font-size: 15px; color: var(--text-sub); line-height: 1.75; margin-bottom: 14px; }
.about-left p:last-of-type { margin-bottom: 0; }
.about-left strong { color: var(--text); font-weight: 600; }

.about-highlight { margin-top: 30px; display: flex; align-items: flex-start; gap: 18px; padding: 24px; background: linear-gradient(135deg, rgba(255,91,20,0.07), rgba(255,140,48,0.03)); border: 1px solid var(--accent-line); border-radius: var(--r); }
.ah-big { font-family: var(--font-n); font-size: 32px; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; white-space: nowrap; }
.ah-text { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.ah-text strong { color: var(--text); }

.team-cards { display: flex; flex-direction: column; gap: 14px; }
.team-card { display: flex; align-items: center; gap: 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; transition: border-color 0.25s; }
.team-card:hover { border-color: var(--accent-line); }
.team-av { width: 80px; height: 80px; min-width: 80px; border-radius: 50%; overflow: hidden; border: 2px solid var(--accent-line); }
.team-av img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-info h4 { font-family: var(--font-d); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3px; }
.team-info span { font-family: var(--font-m); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

.partner-card { margin-top: 4px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; }
.partner-card .tag { margin-bottom: 14px; }
.partner-card p { font-size: 13px; color: var(--text-sub); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 600px) { .t-grid { grid-template-columns: 1fr; } }

.t-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 30px; display: flex; flex-direction: column; gap: 18px; transition: border-color 0.25s; }
.t-card:hover { border-color: var(--border-2); }
.t-card.featured { grid-column: 1 / -1; background: linear-gradient(145deg, rgba(255,91,20,0.07), rgba(255,91,20,0.02)); border-color: var(--accent-line); }
.t-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.t-body  { font-size: 15px; color: var(--text-sub); line-height: 1.75; flex: 1; }
.t-body.lg { font-size: 17px; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-av { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--accent); }
.t-info h5 { font-family: var(--font-d); font-size: 13px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.t-info span { font-size: 11px; color: var(--text-dim); }
.t-stat-bar { margin-top: 48px; background: linear-gradient(135deg, rgba(255,91,20,0.07), rgba(255,91,20,0.02)); border: 1px solid var(--accent-line); border-radius: var(--r-lg); padding: 36px 48px; text-align: center; }
.t-stat-bar p { font-family: var(--font-d); font-size: clamp(18px, 3vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.3; }
.t-stat-bar em { font-style: normal; color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════ */
.cta-band { position: relative; overflow: hidden; background: var(--bg-1); border-top: 1px solid var(--border) !important; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(255,91,20,0.11) 0%, transparent 65%); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-55deg, transparent, transparent 42px, rgba(255,91,20,0.012) 42px, rgba(255,91,20,0.012) 43px); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .tag { margin-bottom: 24px; }
.cta-inner h2 { font-family: var(--font-d); font-size: clamp(32px, 5.5vw, 58px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 18px; }
.cta-inner p { font-size: 18px; color: var(--text-sub); max-width: 480px; margin: 0 auto 44px; line-height: 1.7; }
.cta-inner .btn-primary { font-size: 16px; padding: 17px 38px; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--accent-line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; user-select: none; }
.faq-q span { font-family: var(--font-d); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.faq-ico { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-sub); transition: transform 0.3s, background 0.2s, border-color 0.2s, color 0.2s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--accent-dim); border-color: var(--accent-line); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 20px; border-top: 1px solid var(--border); padding-top: 16px; font-size: 14px; color: var(--text-sub); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }

/* ═══════════════════════════════════════════════════════
   CONTACT / BOOK
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.contact-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-card p  { font-size: 14px; color: var(--text-sub); line-height: 1.65; margin-bottom: 24px; }

.contact-item { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--accent-dim); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item-text { font-size: 13px; color: var(--text-sub); }
.contact-item-text strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; margin-bottom: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-m); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent-line); }
.form-group select option { background: var(--bg-2); }
.form-group textarea { min-height: 120px; }

/* Calendar embed */
.cal-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 650px;
  display: flex; align-items: center; justify-content: center;
}
.cal-wrap iframe {
  width: 100%; border: none;
  min-height: 650px;
}
.cal-placeholder {
  text-align: center; padding: 60px 40px;
}
.cal-placeholder p { font-size: 14px; color: var(--text-dim); margin-top: 12px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-simple { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a { font-size: 13px; color: var(--text-dim); transition: color 0.18s; }
.footer-legal a:hover { color: var(--text-sub); }
.footer-sep { color: var(--text-dim); font-size: 12px; }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════
   GOOGLE REVIEWS WIDGET
═══════════════════════════════════════════════════════ */
.reviews-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,91,20,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 820px) {
  .reviews-layout { grid-template-columns: 1fr; }
}

/* Summary card */
.reviews-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.reviews-g-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.reviews-g-logo span {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}
.reviews-score {
  font-family: var(--font-n);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.reviews-stars svg { color: #FBBC04; }
.reviews-count {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-m);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  background: var(--accent-dim);
  border-radius: 8px;
  padding: 9px 16px;
  transition: opacity 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.reviews-link:hover { opacity: 0.85; transform: translateY(-1px); }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 15px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-meta h5 {
  font-family: var(--font-d);
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-meta span {
  font-size: 11px;
  color: var(--text-dim);
}
/* Google G icon on each card */
.review-g {
  flex-shrink: 0;
  opacity: 0.6;
}

.review-stars {
  display: flex; gap: 2px;
}
.review-stars svg { color: #FBBC04; }

.review-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .page-head { padding: 110px 0 0; }
  .page-head + section { padding-top: 42px; }
  section { padding: 48px 0; }
}
