/* Googooa site CSS — layered on top of brand.css */

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(250, 251, 253, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center;
  background: var(--surface-2); border-radius: 99px; padding: 3px;
}
.lang-toggle button {
  border: none; background: transparent;
  padding: 6px 12px; border-radius: 99px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-3); cursor: pointer;
  transition: all 0.15s;
}
.lang-toggle button.on {
  background: var(--ink); color: white;
}
.nav .btn { height: 38px; padding: 0 16px; font-size: 14px; }

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

/* ---------- Hero ---------- */
.hero {
  padding: 140px 0 24px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(37, 99, 235, 0.06), transparent 70%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { padding-right: 16px; }
.hero-title {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 20px;
  font-weight: 600;
}
.hero-title > span { display: inline; }
.hero-mark {
  position: relative; display: inline-block; padding: 0 4px;
}
.hero-underline {
  position: absolute; left: 0; right: 0; bottom: -6px;
  width: 100%; height: 14px;
}
.hero-sub {
  margin-top: 28px; font-size: 18px; line-height: 1.6;
  color: var(--ink-2); max-width: 540px;
}
.hero-sub br + br { display: none; }
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-top: 12px;
}
.stat-v {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700; line-height: 1; color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-l { margin-top: 8px; font-size: 13px; color: var(--ink-3); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Hero dashboard mock ---------- */
.mock-dash {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar-top {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D8DEE9;
}
.mock-tab {
  flex: 1; font-size: 11px; color: var(--ink-3);
  text-align: center;
}
.mock-status { display: flex; align-items: center; gap: 6px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.mock-body { padding: 20px; }
.mock-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.mock-kpi {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 14px;
}
.mock-kpi-l { font-size: 10px; color: var(--ink-3); letter-spacing: 0.06em; }
.mock-kpi-v { font-size: 22px; font-weight: 700; margin-top: 6px; line-height: 1; }
.mock-kpi-d { font-size: 11px; color: var(--ink-3); margin-top: 6px; }
.mock-chart {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 16px;
}
.mock-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.mock-svg { width: 100%; height: 110px; display: block; }
.mock-row { display: flex; align-items: center; gap: 12px; padding: 8px 4px; }
.mock-row-l { font-size: 10px; color: var(--ink-3); flex: 0 0 130px; letter-spacing: 0.05em; }
.mock-row-bar {
  flex: 1; height: 8px; background: var(--surface-2);
  border-radius: 4px; overflow: hidden;
}
.mock-row-bar span { display: block; height: 100%; border-radius: 4px; }
.mock-row-v { font-size: 13px; font-weight: 600; flex: 0 0 40px; text-align: right; }

/* ---------- Trusted strip ---------- */
.trusted {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.trusted-label {
  font-size: 12px; color: var(--ink-3);
  text-align: center; letter-spacing: 0.08em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.trusted-track {
  display: flex; gap: 64px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trusted-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}
.trusted-logo:hover { opacity: 1; color: var(--ink); }

/* ---------- Section scaffold ---------- */
.section-tint { background: var(--surface-2); }
.sec-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: end; padding-bottom: 56px;
}
.sec-title {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  margin-top: 16px;
}
.sec-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 460px;
  justify-self: end;
}
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-sub { justify-self: start; }
}

/* ---------- Services ---------- */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.srv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.2s ease;
}
.srv-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.srv-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.srv-tag {
  font-size: 12px; color: var(--ink-3);
}
.srv-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  transition: all 0.2s ease;
}
.srv-card:hover .srv-arrow {
  background: var(--ink); color: white; border-color: var(--ink);
  transform: rotate(45deg);
}
.srv-name { font-size: 24px; margin-bottom: 12px; }
.srv-desc {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.6; margin-bottom: 24px;
}
.srv-bullets { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.srv-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.srv-bullet-dot {
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 720px) { .srv-grid { grid-template-columns: 1fr; } }

/* ---------- Results ---------- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.kpi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.kpi-v {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700; line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.kpi-l { margin-top: 14px; font-size: 16px; font-weight: 500; color: var(--ink); }
.kpi-sub { margin-top: 4px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }

.chart-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.chart-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 12px;
}
.chart-title { font-size: 18px; font-weight: 600; }
.chart-legend { display: flex; gap: 18px; font-size: 13px; color: var(--ink-2); }
.chart-legend .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 2px;
  margin-right: 8px; vertical-align: middle;
}
.chart-body {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  height: 280px;
  align-items: end;
}
.bar-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  height: 100%;
  justify-content: flex-end;
}
.bar-stack {
  width: 100%;
  display: flex; flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  min-height: 24px;
}
.bar-seg:first-child { border-radius: 6px 6px 0 0; }
.bar-label { font-size: 11px; color: var(--ink-3); }

@media (max-width: 720px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .chart-body { height: 200px; }
}

/* ---------- Cases ---------- */
.case-stack { display: flex; flex-direction: column; gap: 16px; }
.case-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.case-thumb { position: relative; min-height: 280px; }
.case-thumb-bg { position: absolute; inset: 0; }
.case-thumb-overlay {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
}
.case-tag {
  font-size: 11px; color: rgba(255,255,255,0.7);
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px; align-self: flex-start;
  letter-spacing: 0.08em;
}
.case-brand {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em;
}
.case-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.case-body {
  padding: 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.case-headline {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.case-desc {
  font-size: 15px; color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}
.case-metrics {
  display: flex; gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.case-metric-v {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em;
}
.case-metric-l {
  font-size: 11px; color: var(--ink-3);
  margin-top: 4px; letter-spacing: 0.06em;
}
@media (max-width: 880px) {
  .case-card { grid-template-columns: 1fr; }
  .case-metrics { gap: 24px; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proc-step { display: flex; flex-direction: column; gap: 20px; }
.proc-line {
  position: relative; height: 24px;
  display: flex; align-items: center;
}
.proc-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex-shrink: 0; position: relative; z-index: 2;
}
.proc-rule {
  position: absolute; left: 16px; right: -24px; top: 50%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line-2) 0 4px, transparent 4px 8px);
}
.proc-meta { display: flex; justify-content: space-between; align-items: baseline; }
.proc-n { font-size: 13px; color: var(--ink-3); letter-spacing: 0.08em; }
.proc-time {
  font-size: 11px; color: var(--ink);
  padding: 3px 8px; background: var(--surface-2);
  border-radius: 99px;
  letter-spacing: 0.04em;
}
.proc-t { font-size: 22px; margin: 14px 0 12px; }
.proc-d { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-rule { display: none; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-portrait {
  position: relative;
  aspect-ratio: 6 / 7;
  overflow: hidden;
}
.portrait-tag {
  position: absolute; left: 16px; bottom: 16px;
  font-size: 10px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  padding: 4px 8px; background: rgba(0,0,0,0.25);
  border-radius: 4px;
}
.team-info { padding: 20px; }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.team-role { font-size: 11px; color: var(--brand); margin-top: 4px; letter-spacing: 0.05em; }
.team-bio { font-size: 13px; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }

@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Contact ---------- */
.contact-section {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.16), transparent 50%);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  position: relative; z-index: 1;
}
.contact-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  margin-top: 16px;
  color: white;
}
.contact-sub {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.6;
}
.contact-deet { margin-top: 56px; display: flex; flex-direction: column; gap: 16px; }
.contact-deet-row {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.contact-deet-l {
  font-size: 11px; color: rgba(255,255,255,0.5);
  width: 80px; flex-shrink: 0;
  letter-spacing: 0.06em;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 18px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font: 15px/1.4 var(--font-body);
  outline: none;
  transition: border 0.15s, background 0.15s;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.form-field.has-error input { border-color: #FB7185; }
.spend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.spend-opt {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 12px;
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.spend-opt:hover { background: rgba(255,255,255,0.08); color: white; }
.spend-opt.on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 500;
}
.spend-opt.err { border-color: #FB7185; }
.form-submit { width: 100%; height: 52px; font-size: 16px; color: var(--ink); margin-top: 8px; }
.form-submit:hover { filter: brightness(1.08); }
.form-privacy {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 14px; line-height: 1.6;
}
.contact-success {
  text-align: center; padding: 32px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.success-mark {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-text { font-size: 18px; color: white; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; max-width: 320px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-addr { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 8px; }
.footer-col-h {
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 14px; color: rgba(255,255,255,0.7);
  cursor: pointer; transition: color 0.15s;
}
.footer-col li:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
