/* Playdate — referans şablon: SaaS landing (pembe→mor gradient, pastel bento, koyu footer) */

:root {
  --bg: #ffffff;
  --bg-soft: #faf8fc;
  --ink: #1a1a2e;
  --ink-soft: #5b5b73;
  --ink-faint: #8b8ba3;
  --line: rgba(26, 26, 46, 0.08);
  /* Site / şablon (pembe → mor) */
  --grad: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.12));
  --pink: #ec4899;
  --purple: #8b5cf6;
  --purple-deep: #6d28d9;
  --teal: #14b8a6;
  --amber: #f59e0b;
  /* Sadece butonlar için logo paleti */
  --btn-grad: linear-gradient(135deg, #e9b854 0%, #7a8450 100%);
  --btn-shadow: 0 12px 28px rgba(233, 184, 84, 0.28);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
  --shadow-card: 0 8px 24px rgba(26, 26, 46, 0.06);
  --font: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.35rem;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(236, 72, 153, 0.1), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(139, 92, 246, 0.1), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.badge.light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.04);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.28);
  background: #fff;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.2rem;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--purple-deep);
}

.mobile-nav-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--line);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.lang-btn:hover,
.lang-switch.is-open .lang-btn {
  box-shadow: inset 0 0 0 1.5px var(--purple);
}

.flag-img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.lang-caret {
  opacity: 0.7;
  transition: transform 0.2s var(--ease);
}

.lang-switch.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 10.5rem;
  padding: 0.4rem;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 14px 34px rgba(92, 86, 69, 0.16);
  border: 1px solid var(--line);
  z-index: 60;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.lang-menu a:hover,
.lang-menu [aria-selected="true"] a {
  background: #f5eefc;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 0.7rem;
  background: #f5eefc;
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.8px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.8px) rotate(-42deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.9rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

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

.btn-sm {
  min-height: 2.45rem;
  padding: 0.45rem 1.05rem;
  font-size: 0.9rem;
}

.btn-lg {
  min-height: 3.25rem;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

.btn-brand {
  background: var(--btn-grad);
  color: #fff;
  box-shadow: var(--btn-shadow);
}

.btn-brand:hover {
  filter: brightness(1.05);
}

.btn-gradient {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

.btn-gradient:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px #e5e7eb;
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--purple);
  color: var(--purple-deep);
}

.btn-white {
  background: #fff;
  color: var(--purple-deep);
  font-weight: 700;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}

/* Hero — ortalı referans şablon */

.hero {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-center h1 {
  margin-bottom: 1.1rem;
  animation: rise 0.8s var(--ease) both;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  animation: rise 0.8s var(--ease) 0.08s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: rise 0.8s var(--ease) 0.14s both;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-weight: 500;
  animation: rise 0.8s var(--ease) 0.2s both;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.tone-1 strong {
  color: var(--purple);
}

.tone-2 strong {
  color: var(--pink);
}

.tone-3 strong {
  color: var(--teal);
}

.tone-4 strong {
  color: var(--amber);
}

/* Sections */

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section.soft {
  background: var(--bg-soft);
}

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 48rem;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}

.section-lead {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.section-lead strong {
  color: var(--ink);
}

/* Bento pastel cards */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

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

.bento-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bento-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
}

.bento-card.compact {
  padding: 1.25rem 1.15rem;
}

.bento-card h3 {
  margin: 0.75rem 0 0.5rem;
}

.bento-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.p-lilac {
  background: #f5eefc;
}

.p-cream {
  background: #fff8e8;
}

.p-sky {
  background: #eaf4ff;
}

.p-mint {
  background: #e9f8f2;
}

.p-blush {
  background: #ffeaf3;
}

.p-lavender {
  background: #eee9ff;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.55rem;
  border-radius: 0.75rem;
  background: var(--grad);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--purple-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-checks {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
}

.mini-checks li {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Split program */

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.split-copy > * + * {
  margin-top: 0.95rem;
}

.split-copy > p {
  color: var(--ink-soft);
}

.check-list {
  margin-top: 1.25rem !important;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 800;
}

.educator-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.edu-logo {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

.educator-card .role {
  color: var(--purple-deep);
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
}

.educator-card > p:last-child {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* CTA banner — gradient block */

.cta-banner {
  margin: 0.5rem 0;
  padding: clamp(3rem, 7vw, 4.5rem) 1rem;
  background: var(--grad);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  top: -6rem;
}

.cta-banner::after {
  width: 14rem;
  height: 14rem;
  right: -3rem;
  bottom: -5rem;
}

.cta-inner {
  position: relative;
  width: min(100%, 42rem);
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 0.85rem;
}

.cta-inner > p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Flow */

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flow-card {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.flow-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.06em;
}

.flow-label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.flow-card h3 {
  margin: 0.35rem 0;
}

.flow-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.extras {
  margin-top: 0.5rem;
}

/* Quotes */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.quote-card > p {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.quote-card cite {
  font-style: normal;
  color: var(--ink-faint);
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.2rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 1rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--purple);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: var(--ink-soft);
  padding-bottom: 1rem;
  font-size: 0.95rem;
}

/* Steps */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.step-card h3 {
  margin-bottom: 0.45rem;
}

.step-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1.5px solid #e8e8ef;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fcfcfe;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-alert {
  margin: 0 auto 1rem;
  max-width: 40rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-alert.ok {
  background: #e7f8f2;
  color: #0f766e;
}

.form-alert.err {
  background: #fde8ef;
  color: #be123c;
}

.contact-side {
  display: grid;
  gap: 0.75rem;
}

.info-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
}

.info-card span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.info-card strong {
  color: var(--purple-deep);
}

.info-card.wa {
  background: #ecfdf5;
  border-color: rgba(20, 184, 166, 0.25);
}

.info-card.wa strong {
  color: #0f766e;
}

.map-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.map-card h3 {
  margin-bottom: 0.3rem;
}

.map-card > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.addr {
  font-weight: 600;
  color: var(--ink) !important;
  margin: 0.5rem 0 0.85rem !important;
}

.map-frame {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  background: #eee9ff;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--purple-deep);
}

/* Footer dark */

.site-footer {
  background: #12122a;
  color: #d7d7e8;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-about {
  margin-top: 0.9rem;
  color: #a4a4bd;
  font-size: 0.95rem;
  max-width: 18rem;
}

.ig-follow {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.22));
  border: 1px solid rgba(236, 72, 153, 0.28);
  color: #fff !important;
}

.ig-follow:hover {
  filter: brightness(1.08);
}

.ig-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb4d4;
  flex-shrink: 0;
}

.ig-follow strong {
  display: block;
  font-size: 0.92rem;
}

.ig-follow small {
  display: block;
  color: #cfc9e8;
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.footer-grid a {
  display: block;
  color: #a4a4bd;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8b8ba3;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-ig-mini {
  color: #f9a8d4 !important;
  font-weight: 700;
}

/* Fixed WhatsApp */

.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.48);
}

.wa-float svg {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    width: 3.4rem;
    height: 3.4rem;
    min-height: 0;
    padding: 0;
    justify-content: center;
  }

  .wa-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

/* Motion */

.reveal {
  opacity: 0;
  transform: translateY(0.9rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-center h1,
  .hero-lead,
  .hero-actions,
  .trust-line {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .header-link,
  .header-actions > .btn {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.5rem;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.85rem 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(26, 26, 46, 0.1);
    max-height: calc(100svh - var(--header-h));
    overflow: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .mobile-nav-actions .btn {
    width: 100%;
  }

  .stat-cards,
  .bento-grid,
  .bento-2,
  .bento-3,
  .bento-4,
  .flow-grid,
  .quote-grid,
  .steps-row,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .lang-btn span {
    display: none;
  }

  .lang-btn {
    padding-inline: 0.55rem;
  }

  .stat-cards,
  .bento-grid,
  .bento-2,
  .bento-3,
  .bento-4,
  .flow-grid,
  .quote-grid,
  .steps-row,
  .form-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

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