@font-face {
  font-family: "Inter";
  src: local("Inter"), local("Arial");
  font-display: swap;
}

:root {
  --bg: #07080a;
  --text: #f4f1ea;
  --muted: #aaa69e;
  --muted-2: #77736c;
  --border: rgba(255,255,255,.09);
  --card: rgba(255,255,255,.045);
  --g-blue: #4285F4;
  --g-red: #EA4335;
  --g-yellow: #FBBC05;
  --g-green: #34A853;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(66,133,244,.16), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(251,188,5,.11), transparent 30%),
    radial-gradient(circle at 48% 100%, rgba(52,168,83,.09), transparent 34%),
    #07080a;
  line-height: 1.55;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .024;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 260px;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--g-blue), var(--g-red), var(--g-yellow), var(--g-green));
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 10, .82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.header.is-scrolled {
  background: rgba(7, 8, 10, .93);
  border-color: rgba(244,241,234,.12);
  box-shadow: 0 14px 44px rgba(0,0,0,.24);
}

.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo__mark {
  width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(90deg, #4285F4 0%, #4285F4 25%, #EA4335 25%, #EA4335 50%, #FBBC05 50%, #FBBC05 75%, #34A853 75%, #34A853 100%);
}

.logo__text { font-size: 17px; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  position: relative;
  transition: color .2s ease;
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--g-blue);
  transition: width .35s var(--ease);
}

.nav a:hover { color: var(--text); }
.nav a:hover:after { width: 100%; }

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.lang-switch button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(244,241,234,.55);
  font-size: 12px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.lang-switch button.is-active {
  background: rgba(66,133,244,.18);
  color: #d9e6ff;
}

.lang-switch button:hover { color: #fff; }

.header__btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.header__btn,
.btn--primary {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--g-blue), #2f6eea);
  box-shadow: 0 18px 48px rgba(66,133,244,.20);
  overflow: hidden;
}

.header__btn:before,
.btn--primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease);
}

.header__btn:hover:before,
.btn--primary:hover:before { left: 140%; }

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.035);
  border-color: var(--border);
}

.header__btn:hover,
.btn:hover { transform: translateY(-2px); }

.btn--ghost:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.065);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  padding: 0;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 100px 0 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .75;
  will-change: transform;
}

.hero__bg--one {
  width: 420px;
  height: 420px;
  background: rgba(66,133,244,.16);
  top: 8%;
  left: 5%;
  animation: floatOne 18s ease-in-out infinite;
}

.hero__bg--two {
  width: 380px;
  height: 380px;
  background: rgba(251,188,5,.13);
  right: 4%;
  top: 18%;
  animation: floatTwo 22s ease-in-out infinite;
}

@keyframes floatOne {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(48px,-30px); }
}

@keyframes floatTwo {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-34px,28px); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
  gap: 52px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(66,133,244,.28);
  background: rgba(66,133,244,.08);
  color: #d9e6ff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 99px;
  background: var(--g-green);
  box-shadow: 0 0 18px rgba(52,168,83,.85);
  animation: pulseDot 2.2s ease-in-out infinite;
}

.badge b {
  font-weight: 600;
}

@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: .55; }
}

.hero__title {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero__title span {
  display: inline;
}

.hero__subtitle {
  max-width: 690px;
  margin: 0 0 34px;
  color: rgba(244,241,234,.66);
  font-size: clamp(16px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stats div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.stats span {
  display: block;
  color: rgba(244,241,234,.5);
  font-size: 13px;
  line-height: 1.35;
}

.google-board {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.google-board__bar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.035);
}

.g-dot {
  width: 11px;
  height: 11px;
  border-radius: 99px;
}

.g-blue { background: var(--g-blue); }
.g-red { background: var(--g-red); }
.g-yellow { background: var(--g-yellow); }
.g-green { background: var(--g-green); }

.google-board__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 16px;
}

.google-board__top strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.google-board__top span {
  display: block;
  margin-top: 5px;
  color: rgba(244,241,234,.52);
  font-size: 13px;
}

.google-board__top em {
  font-style: normal;
  font-size: 12px;
  color: var(--g-green);
  background: rgba(52,168,83,.1);
  border: 1px solid rgba(52,168,83,.24);
  border-radius: 999px;
  padding: 6px 10px;
}

.google-search {
  margin: 0 22px 18px;
  padding: 15px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(7,8,10,.45);
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-search b {
  font-size: 15px;
  font-weight: 600;
  color: rgba(244,241,234,.9);
}

.google-board__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 22px 22px;
}

.g-card {
  min-height: 92px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035);
  padding: 16px;
}

.g-card span {
  display: block;
  color: rgba(244,241,234,.48);
  font-size: 12px;
  margin-bottom: 10px;
}

.g-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.g-card:nth-child(1) { border-top: 3px solid var(--g-blue); }
.g-card:nth-child(2) { border-top: 3px solid var(--g-red); }
.g-card:nth-child(3) { border-top: 3px solid var(--g-yellow); }
.g-card:nth-child(4) { border-top: 3px solid var(--g-green); }

.google-flow {
  display: grid;
  gap: 10px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--border);
  background: rgba(7,8,10,.25);
}

.google-flow div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244,241,234,.68);
  font-size: 14px;
}

.google-flow b {
  font-weight: 500;
}

.google-flow span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--g-blue);
  box-shadow: 0 0 16px rgba(66,133,244,.6);
}

.google-flow div:nth-child(2) span { background: var(--g-yellow); box-shadow: 0 0 16px rgba(251,188,5,.5); }
.google-flow div:nth-child(3) span { background: var(--g-green); box-shadow: 0 0 16px rgba(52,168,83,.5); }

.section { padding: 100px 0; }

.section--soft {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
}

.section--last { padding-top: 40px; }

.section__head {
  max-width: 800px;
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--g-blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow:before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--g-blue), var(--g-red), var(--g-yellow), var(--g-green));
}

.section h2,
.cta h2 {
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section h2 {
  font-size: clamp(32px, 4.6vw, 54px);
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  min-height: 310px;
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  transform-style: preserve-3d;
}

.card:hover {
  border-color: rgba(66,133,244,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}

.card--accent {
  border-color: rgba(66,133,244,.30);
  background:
    radial-gradient(circle at 20% 0%, rgba(66,133,244,.15), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}

.card--small { min-height: 230px; }

.card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: #d9e6ff;
  background: rgba(66,133,244,.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.card h3 {
  max-width: 90%;
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -.025em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chips span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  font-size: 12px;
}

.num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--g-blue);
  background: rgba(66,133,244,.12);
  font-weight: 700;
}

.steps { display: grid; gap: 14px; }

.step {
  display: grid;
  grid-template-columns: 80px minmax(0,1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(66,133,244,.22);
  background: rgba(255,255,255,.05);
}

.step > span {
  color: var(--g-blue);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.step em {
  color: var(--muted-2);
  font-size: 14px;
  font-style: normal;
  text-align: right;
}

.fit-list { display: grid; gap: 14px; }

.fit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.fit:hover {
  transform: translateY(-3px);
  border-color: rgba(66,133,244,.22);
}

.fit--yes {
  border-color: rgba(52,168,83,.22);
  background: rgba(52,168,83,.055);
}

.fit--no {
  border-style: dashed;
  opacity: .72;
}

.fit h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.fit p {
  margin: 0;
  color: var(--muted);
}

.fit span {
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.fit--yes span {
  color: var(--g-green);
  background: rgba(52,168,83,.11);
}

.fit--no span {
  color: #ff6b6b;
  background: rgba(255,107,107,.1);
}

.faq {
  max-width: 850px;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}

details[open] {
  border-color: rgba(66,133,244,.22);
  background: rgba(255,255,255,.05);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 24px;
  font-weight: 600;
  letter-spacing: -.025em;
  position: relative;
}

summary:after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g-blue);
  font-size: 24px;
  transition: transform .2s ease;
}

details[open] summary:after {
  transform: translateY(-50%) rotate(45deg);
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.cta {
  position: relative;
  text-align: center;
  padding: 54px;
  border: 1px solid rgba(66,133,244,.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 0%, rgba(66,133,244,.18), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(251,188,5,.11), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(52,168,83,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(66,133,244,.18), transparent 34%);
  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta h2 {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: clamp(34px, 4.6vw, 58px);
}

.cta p {
  max-width: 690px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(7,8,10,.54);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(66,133,244,.48);
  background: rgba(7,8,10,.7);
  transform: translateY(-1px);
}

.form textarea {
  grid-column: 1 / -1;
  min-height: 118px;
  resize: vertical;
}

.form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
}

.form-result {
  display: none;
  margin-top: 18px;
  color: var(--g-green);
  font-size: 15px;
}

.footer {
  padding: 46px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 32px;
}

.footer p { max-width: 320px; }

.footer h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}

.footer a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.footer a:hover { color: var(--g-blue); }

.footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 14px;
}

.reveal,
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible,
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }

.tilt { will-change: transform; }

@media (max-width: 1080px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .header__btn {
    display: none;
  }
}

@media (max-width: 920px) {
  .burger { display: block; }

  .nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(7,8,10,.96);
    box-shadow: var(--shadow);
  }

  .nav a { padding: 14px 12px; }
  .nav a:after { display: none; }
  .menu-open .nav { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .google-board {
    max-width: 680px;
  }

  .stats,
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step:hover { transform: translateY(-3px); }

  .step em {
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 22px, var(--container)); }

  .header__inner {
    height: 68px;
    gap: 10px;
  }

  .logo__text {
    font-size: 15px;
  }

  .logo__mark {
    width: 40px;
    height: 32px;
    font-size: 12px;
  }

  .header__right {
    gap: 8px;
  }

  .lang-switch {
    gap: 2px;
    padding: 3px;
  }

  .lang-switch button {
    min-width: 34px;
    height: 28px;
    font-size: 11px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .hero__title {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .badge {
    align-items: center;
    border-radius: 18px;
    line-height: 1.35;
  }

  .hero__actions,
  .cta__buttons {
    flex-direction: column;
  }

  .btn,
  .header__btn {
    width: 100%;
  }

  .stats,
  .cards--3,
  .google-board__grid,
  .form {
    grid-template-columns: 1fr;
  }

  .google-board,
  .cta {
    border-radius: 24px;
  }

  .google-search {
    border-radius: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .cta h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.12;
  }

  .fit {
    align-items: flex-start;
    flex-direction: column;
  }

  .form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Thank you page */
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 96px 0;
}

.thanks-card {
  position: relative;
  width: min(100%, 780px);
  padding: 54px;
  border: 1px solid rgba(66,133,244,.28);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 0%, rgba(66,133,244,.18), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(251,188,5,.11), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(52,168,83,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.thanks-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--g-blue), var(--g-green));
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.thanks-card h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.thanks-card p {
  max-width: 590px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 680px) {
  .thanks-page {
    padding: 72px 0;
  }

  .thanks-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .thanks-actions {
    flex-direction: column;
  }
}


/* Cases section */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(66,133,244,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,133,244,.28);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
}

.case-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.case-card__top span {
  color: rgba(244,241,234,.62);
  font-size: 13px;
}

.case-card__top b {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  color: #d9e6ff;
  background: rgba(66,133,244,.12);
  font-size: 12px;
  font-weight: 600;
}

.case-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.case-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.case-metrics {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.case-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(7,8,10,.28);
}

.case-metrics span {
  color: rgba(244,241,234,.48);
  font-size: 13px;
}

.case-metrics strong {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
}

.case-metrics .green {
  color: var(--g-green);
}

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

  .case-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .case-card {
    padding: 22px;
  }

  .case-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-metrics div {
    flex-direction: column;
    gap: 4px;
  }

  .case-metrics strong {
    text-align: left;
  }
}


.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important;width:1px!important;height:1px!important;pointer-events:none!important;}


.contact-type-select{
width:100%;
background:#0b0d12;
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
padding:18px 20px;
color:#fff;
font-size:18px;
margin-bottom:14px;
outline:none;
appearance:none;
}

.contact-type-select option{
background:#0b0d12;
color:#fff;
}


/* Designer logo + favicon update */
.logo {
  gap: 14px;
}

.logo__mark {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 15px;
  background:
    linear-gradient(90deg, #4285F4 0 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75% 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 12px 34px rgba(66,133,244,.20);
}

.logo__mark:before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.16);
}

.logo__mark span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.logo__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* Discuss personally instead of hard refusal */
.fit--no {
  opacity: 1;
  border-style: solid;
  border-color: rgba(251,188,5,.24);
  background: rgba(251,188,5,.055);
}

.fit--no span {
  color: #fbd35d;
  background: rgba(251,188,5,.13);
}

.fit--no:hover {
  border-color: rgba(251,188,5,.36);
}

@media (max-width: 680px) {
  .logo__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .logo__mark:before {
    border-radius: 10px;
  }

  .logo__mark span {
    font-size: 17px;
  }
}


.contact-type-switch{
display:flex;
gap:10px;
margin-bottom:14px;
padding:6px;
border-radius:22px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.06);
width:max-content;
backdrop-filter:blur(12px);
}

.contact-type-btn{
border:none;
background:transparent;
color:rgba(255,255,255,.62);
padding:12px 18px;
border-radius:16px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.25s ease;
}

.contact-type-btn.active{
background:linear-gradient(135deg,#4285F4,#5b8cff);
color:#fff;
box-shadow:0 8px 24px rgba(66,133,244,.28);
}

.contact-type-btn:hover{
color:#fff;
}

@media(max-width:680px){
.contact-type-switch{
width:100%;
display:grid;
grid-template-columns:1fr 1fr 1fr;
}

.contact-type-btn{
padding:11px 10px;
font-size:14px;
}
}


/* Final contact form fix */
.cta__buttons .btn--ghost[href^="mailto:"] {
  display: none !important;
}

.contact-combo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.contact-combo input[name="contact"] {
  width: 100%;
}

.contact-type-switch {
  width: 100% !important;
  max-width: none;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 !important;
  padding: 6px;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
}

.contact-type-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.58);
  padding: 0 12px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.contact-type-btn.active {
  background: linear-gradient(135deg,#4285F4,#5b8cff);
  color: #fff;
  box-shadow: 0 10px 28px rgba(66,133,244,.28);
}

.contact-type-btn:hover {
  color: #fff;
}

.form .contact-combo {
  grid-column: auto;
}

/* make textarea below both columns */
.form textarea {
  grid-column: 1 / -1;
}

@media(max-width:680px){
  .form .contact-combo {
    grid-column: 1 / -1;
  }

  .contact-type-btn {
    min-height: 42px;
    padding: 0 8px;
    font-size: 13px;
  }
}


/* Dropdown contact selector final */
.contact-combo--dropdown {
  display: grid !important;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.contact-select-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.contact-select-wrap > span {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 18px;
  color: rgba(244,241,234,.42);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  pointer-events: none;
}

.contact-type-select {
  width: 100%;
  height: 100%;
  min-height: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    rgba(7,8,10,.54);
  color: var(--text);
  padding: 25px 44px 11px 18px;
  outline: none;
  appearance: none;
  font-size: 17px;
  font-weight: 650;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  cursor: pointer;
}

.contact-select-wrap:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(244,241,234,.55);
  border-bottom: 2px solid rgba(244,241,234,.55);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-type-select:focus {
  border-color: rgba(66,133,244,.48);
  background: rgba(7,8,10,.7);
}

.contact-type-select option {
  background: #0b0d12;
  color: #fff;
}

.contact-combo--dropdown input[name="contact"] {
  height: 100%;
  min-height: 64px;
}

.contact-type-switch,
.contact-type-btn {
  display: none !important;
}

@media(max-width:680px) {
  .contact-combo--dropdown {
    grid-template-columns: 1fr;
  }

  .contact-type-select,
  .contact-combo--dropdown input[name="contact"] {
    min-height: 58px;
  }
}


/* Final form proportions */
.form {
  grid-template-columns: 0.72fr 1.35fr !important;
  gap: 14px !important;
}

.form > input[name="name"] {
  grid-column: 1;
}

.form .contact-combo--dropdown {
  grid-column: 2;
  display: grid !important;
  grid-template-columns: 180px minmax(0, 1fr) !important;
  gap: 12px !important;
}

.contact-type-select {
  min-height: 58px !important;
  padding: 22px 40px 9px 16px !important;
  font-size: 16px !important;
}

.contact-select-wrap > span {
  top: 8px !important;
  left: 16px !important;
  font-size: 10px !important;
}

.contact-combo--dropdown input[name="contact"] {
  min-height: 58px !important;
  width: 100% !important;
}

.form textarea {
  grid-column: 1 / -1 !important;
}

@media (max-width: 920px) {
  .form {
    grid-template-columns: 1fr !important;
  }

  .form > input[name="name"],
  .form .contact-combo--dropdown {
    grid-column: 1 / -1 !important;
  }

  .form .contact-combo--dropdown {
    grid-template-columns: 180px minmax(0, 1fr) !important;
  }
}

@media (max-width: 680px) {
  .form .contact-combo--dropdown {
    grid-template-columns: 1fr !important;
  }
}
