/* Barış Telekom – Frontend Landing */
:root {
  --color-navy-deep: #07111f;
  --color-navy: #0b1b33;
  --color-navy-light: #132a4a;
  --color-blue: #1f6feb;
  --color-blue-light: #4d8ef5;
  --color-teal: #00c2a8;
  --color-teal-light: #33d4be;
  --color-white: #ffffff;
  --color-gray-50: #f4f7fb;
  --color-gray-100: #e8eef6;
  --color-gray-200: #d0dae8;
  --color-gray-400: #8b9cb5;
  --color-gray-600: #5a6b85;
  --color-gray-800: #2a3a52;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(7, 17, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 17, 31, 0.12);
  --shadow-lg: 0 16px 48px rgba(7, 17, 31, 0.18);
  --shadow-glow: 0 0 40px rgba(31, 111, 235, 0.25);

  --header-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-teal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy-deep);
  margin: 0 0 0.5em;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-white);
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--color-white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--color-navy-deep);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 99;
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  color: var(--color-white);
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-teal) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(31, 111, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.btn-outline:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(160deg, var(--color-navy-deep) 0%, var(--color-navy) 45%, #0d2545 100%);
  overflow: hidden;
  color: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 111, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: var(--color-blue);
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -80px;
  background: var(--color-teal);
}

.hero__phone {
  position: absolute;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(4px);
}

.hero__phone--1 {
  width: 120px;
  height: 220px;
  top: 15%;
  right: 8%;
  transform: rotate(12deg);
  animation: float 6s ease-in-out infinite;
}

.hero__phone--2 {
  width: 90px;
  height: 165px;
  bottom: 20%;
  right: 22%;
  transform: rotate(-8deg);
  animation: float 7s ease-in-out infinite 1s;
}

.hero__phone--3 {
  width: 70px;
  height: 130px;
  top: 35%;
  right: 3%;
  transform: rotate(20deg);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 12deg)); }
  50% { transform: translateY(-16px) rotate(var(--rot, 12deg)); }
}

.hero__phone--1 { --rot: 12deg; }
.hero__phone--2 { --rot: -8deg; }
.hero__phone--3 { --rot: 20deg; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 194, 168, 0.15);
  border: 1px solid rgba(0, 194, 168, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-teal-light);
  margin-bottom: 1.25rem;
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.section__desc {
  color: var(--color-gray-600);
  margin-top: 0.75rem;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(24px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

/* ── Device cards ── */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.device-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.device-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-md);
}

.device-card.is-selected {
  border-color: var(--color-blue);
  background: linear-gradient(180deg, rgba(31, 111, 235, 0.06) 0%, var(--color-white) 100%);
  box-shadow: var(--shadow-glow);
}

.device-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  border-radius: var(--radius-md);
  color: var(--color-teal);
  font-size: 1.5rem;
}

.device-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  color: var(--color-navy);
}

/* ── Floating cards showcase (non-hero) ── */
.showcase {
  position: relative;
  padding: 4rem 0;
}

.floating-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .floating-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.floating-cards .float-card {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

/* ── Steps / How it works ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  position: relative;
  padding: 1.5rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin: 0;
}

/* ── Counters section ── */
.stats-bar {
  background: linear-gradient(135deg, var(--color-navy-deep), var(--color-navy));
  padding: 3rem 0;
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-block__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── CTA band ── */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1558c9 50%, var(--color-teal) 100%);
  text-align: center;
  color: var(--color-white);
}

.cta-band h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--color-teal);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  text-align: center;
}

/* ── Modal wizard ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }
}

.modal {
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--color-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal-overlay.is-open .modal {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .modal {
    border-radius: var(--radius-xl);
    transform: scale(0.95);
  }

  .modal-overlay.is-open .modal {
    transform: scale(1);
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-100);
  flex-shrink: 0;
}

.modal__title {
  font-size: 1.125rem;
  margin: 0;
}

.modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-50);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-gray-600);
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--color-gray-100);
}

.modal__progress {
  display: flex;
  gap: 4px;
  padding: 0 1.5rem;
  margin-top: -1px;
}

.modal__progress-bar {
  flex: 1;
  height: 3px;
  background: var(--color-gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.modal__progress-bar.is-active,
.modal__progress-bar.is-done {
  background: linear-gradient(90deg, var(--color-blue), var(--color-teal));
}

.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.modal__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-gray-100);
  flex-shrink: 0;
}

.modal__footer .btn {
  flex: 1;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step__title {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.wizard-step__hint {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
}

/* ── Form elements ── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.375rem;
}

.form-label .required {
  color: var(--color-danger);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-navy);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.15);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-blue);
  flex-shrink: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-danger);
  margin-top: 0.375rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.option-btn {
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.option-btn:hover {
  border-color: var(--color-blue);
}

.option-btn.is-selected {
  border-color: var(--color-blue);
  background: rgba(31, 111, 235, 0.08);
  color: var(--color-blue);
}

/* ── Photo upload ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed var(--color-gray-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--color-gray-50);
}

.photo-slot:hover {
  border-color: var(--color-blue);
}

.photo-slot.has-photo {
  border-style: solid;
  border-color: var(--color-teal);
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot__label {
  font-size: 0.75rem;
  color: var(--color-gray-600);
  text-align: center;
  padding: 0 0.5rem;
  z-index: 1;
}

.photo-slot.has-photo .photo-slot__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.375rem;
  background: rgba(7, 17, 31, 0.7);
  color: var(--color-white);
}

.photo-slot__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: var(--color-danger);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 2;
  display: none;
}

.photo-slot.has-photo .photo-slot__remove {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slot input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* ── Success screen ── */
.wizard-success {
  text-align: center;
  padding: 2rem 0;
}

.wizard-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-teal), var(--color-success));
  border-radius: 50%;
  color: var(--color-white);
  font-size: 2rem;
}

.wizard-success__no {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-blue);
  margin: 0.5rem 0 1rem;
}

/* ── Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--color-gray-100) 25%, var(--color-gray-50) 50%, var(--color-gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5rem;
}

.skeleton-text--short {
  width: 60%;
}

.skeleton-card {
  height: 100px;
  border-radius: var(--radius-md);
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.is-loading .skeleton-grid {
  display: grid;
}

.is-loading .device-grid,
.is-loading .option-grid:not(.skeleton-grid) {
  display: none;
}

/* ── Toast / alerts ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 1100;
  padding: 0.875rem 1.25rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  max-width: calc(100% - 2rem);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast--error {
  background: var(--color-danger);
}

.toast--success {
  background: var(--color-success);
}

.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.alert--error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert--info {
  background: rgba(31, 111, 235, 0.08);
  color: var(--color-blue);
  border: 1px solid rgba(31, 111, 235, 0.15);
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-gray-600); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* =========================================================
   HTML class compatibility (home + layout)
   ========================================================= */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
}

.brand:hover { color: var(--color-white); }

.brand-logo { height: 36px; width: auto; }

.brand-text {
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: .65rem;
}
@media (min-width: 1100px) {
  .header-nav { gap: 1rem; }
}
@media (max-width: 760px) {
  .header-link { display: none; }
  .header-phone { display: none !important; }
}

.header-phone {
  display: none;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: .9375rem;
}

@media (min-width: 640px) {
  .header-phone { display: inline; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 85% 20%, rgba(31,111,235,.35), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,194,168,.22), transparent 55%),
    linear-gradient(rgba(31,111,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,111,235,.04) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
  }
}

.hero-content { max-width: 640px; }

.brand-mark {
  display: inline-block;
  margin: 0 0 1rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,194,168,.35);
  background: rgba(0,194,168,.12);
  color: var(--color-teal-light);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: transparent;
}

.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

/* Hero visual: decorative phones + tiny floating labels */
.hero-visual {
  position: relative;
  min-height: 320px;
  height: clamp(320px, 48vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 959px) {
  .hero-visual {
    min-height: 260px;
    height: 280px;
    order: -1;
    margin-bottom: .5rem;
  }
}

.phone-shape {
  position: absolute;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  pointer-events: none;
}

.phone-shape-1 {
  width: 110px;
  height: 200px;
  left: 8%;
  top: 12%;
  transform: rotate(-14deg);
  animation: float 6s ease-in-out infinite;
  opacity: .55;
}

.phone-shape-2 {
  width: 92px;
  height: 168px;
  right: 6%;
  bottom: 10%;
  transform: rotate(16deg);
  animation: float 7s ease-in-out infinite .8s;
  opacity: .45;
}

.phone-shape-main {
  position: relative;
  width: 180px;
  height: 340px;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, #132a4a 0%, #0b1b33 100%);
  box-shadow: var(--shadow-glow), 0 30px 60px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: float 5.5s ease-in-out infinite .3s;
}

@media (max-width: 959px) {
  .phone-shape-main { width: 140px; height: 260px; border-radius: 26px; }
  .phone-shape-1, .phone-shape-2 { display: none; }
}

.phone-screen {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(31,111,235,.35), transparent 45%),
    radial-gradient(circle at 70% 75%, rgba(0,194,168,.3), transparent 40%),
    linear-gradient(160deg, #0d213f, #07111f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: 1rem;
}

.phone-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.phone-screen small {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
}

/* Tiny floating labels inside hero only — NOT white content boxes */
.hero-visual .float-card {
  position: absolute;
  z-index: 3;
  width: auto;
  max-width: none;
  padding: .55rem .9rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .8125rem;
  font-weight: 650;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  white-space: nowrap;
}

.hero-visual .float-card-1 {
  top: 18%;
  right: 4%;
  animation: float 5s ease-in-out infinite;
}

.hero-visual .float-card-2 {
  bottom: 16%;
  left: 2%;
  animation: float 6s ease-in-out infinite 1s;
}

@media (max-width: 959px) {
  .hero-visual .float-card { display: none; }
}

/* Stats strip under hero */
.stats-strip {
  background: linear-gradient(135deg, var(--color-navy-deep), var(--color-navy));
  padding: 2.25rem 0;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}

.stats-strip .stats-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .stats-strip .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-item .counter,
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.stat-item span {
  display: block;
  margin-top: .35rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  margin-bottom: .5rem;
}

.section-head p {
  margin: 0;
  color: var(--color-gray-600);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  background: #fff;
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  color: var(--color-teal);
  margin-bottom: .75rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.step-card p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: .9rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(3, 1fr); }
}

.advantage-card {
  background: #fff;
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
}

.advantage-index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-blue);
  font-size: .85rem;
  margin-bottom: .55rem;
}

.advantage-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.advantage-card p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: .9rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-blue), #1558c9 55%, var(--color-teal));
  color: #fff;
  padding: 3.5rem 0;
}

.cta-inner {
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.site-footer .footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.site-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-col li,
.site-footer .footer-col p {
  margin: 0 0 .45rem;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.site-footer .footer-col a {
  color: rgba(255,255,255,.7);
}

.site-footer .footer-col a:hover { color: var(--color-teal); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

.whatsapp-float:hover { color: #fff; filter: brightness(1.05); }

/* Offer wizard modal matching HTML */
.offer-wizard.modal,
.modal.offer-wizard {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  border-radius: 0;
  transform: none;
  opacity: 1;
  visibility: visible;
}

.offer-wizard[hidden] { display: none !important; }

.offer-wizard.is-open { display: flex; }

.offer-wizard .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,17,31,.72);
  backdrop-filter: blur(4px);
}

.offer-wizard .modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  max-height: 92dvh;
  overflow: auto;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .offer-wizard.modal,
  .modal.offer-wizard {
    align-items: center;
    padding: 1rem;
  }
  .offer-wizard .modal-dialog {
    border-radius: 20px;
  }
}

.offer-wizard .modal-content { padding: 1.25rem 1.25rem 1.5rem; }

.offer-wizard .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offer-wizard .modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.offer-wizard .modal-close {
  border: 0;
  background: var(--color-gray-100);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-gray-800);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.wizard-step {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-gray-400);
  padding: .45rem .2rem;
  border-radius: 999px;
  background: var(--color-gray-100);
}

.wizard-step.active {
  color: #fff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
}

.wizard-step.done {
  color: var(--color-blue);
  background: rgba(31,111,235,.12);
}

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.wizard-form .form-group { margin-bottom: 1rem; }
.wizard-form label {
  display: block;
  margin-bottom: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.wizard-form input,
.wizard-form select,
.wizard-form textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  font: inherit;
  background: #fff;
}

.wizard-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

@media (min-width: 640px) {
  .wizard-form .form-row { grid-template-columns: 1fr 1fr; }
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.25rem;
}

.panel-hint {
  margin: 0 0 1rem;
  color: var(--color-gray-600);
  font-size: .9rem;
}

.photo-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

@media (min-width: 640px) {
  .photo-slots { grid-template-columns: repeat(3, 1fr); }
}

.photo-slot {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px dashed var(--color-gray-200);
  background: var(--color-gray-50);
  min-height: 110px;
}

.photo-preview {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background-size: cover;
  background-position: center;
  padding: .75rem;
  text-align: center;
}

.photo-preview.is-done {
  border-color: var(--color-teal);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.photo-label { font-weight: 700; font-size: .85rem; }
.photo-status { font-size: .75rem; color: var(--color-gray-600); }
.photo-preview.is-done .photo-status { color: #fff; }

.form-check label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: .85rem;
  line-height: 1.45;
}

.form-check input { width: auto; margin-top: .2rem; }

.success-screen {
  text-align: center;
  padding: 1.5rem .5rem 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,.12);
  color: var(--color-success);
  font-size: 1.75rem;
  font-weight: 700;
}

.request-no {
  margin: 1rem 0 1.25rem;
  font-size: 1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2000;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: .25s ease;
  background: var(--color-navy);
  color: #fff;
  padding: .85rem 1.15rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: min(420px, calc(100% - 2rem));
  font-size: .9rem;
}

/* ===== UI polish v2 ===== */
.frontend-body { background: #f3f6fb; }

.brand-mark-mini {
  width: 34px; height: 34px; border-radius: 10px;
  display: inline-grid; place-items: center;
  background: linear-gradient(145deg, var(--color-blue), var(--color-teal));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .75rem;
}
.header-link {
  display: none; color: rgba(255,255,255,.72) !important; font-weight: 600; font-size: .9rem;
}
.header-link:hover { color: #fff !important; }
@media (min-width: 900px) {
  .header-link { display: inline; }
}

.brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-teal);
  display: inline-block; margin-right: .35rem;
  box-shadow: 0 0 0 4px rgba(0,194,168,.18);
  animation: pulse 2s ease infinite;
}
.hero h1 span {
  background: linear-gradient(135deg, #7eb0ff, #33d4be);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta .btn { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .75rem; margin-top: 1.75rem; max-width: 420px;
}
@media (min-width: 640px) {
  .hero-trust { grid-template-columns: repeat(4, minmax(0,1fr)); max-width: none; }
}
.trust-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: .7rem .8rem;
}
.trust-item strong { display: block; color: #fff; font-size: .85rem; }
.trust-item span { color: rgba(255,255,255,.55); font-size: .72rem; }

.hero-visual .float-card {
  display: inline-flex; align-items: center; gap: .45rem;
}
.fc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4d8ef5;
  box-shadow: 0 0 0 4px rgba(77,142,245,.2);
}
.fc-dot.teal { background: var(--color-teal); box-shadow: 0 0 0 4px rgba(0,194,168,.2); }

.phone-chip {
  display: inline-block; margin-bottom: .5rem;
  padding: .25rem .55rem; border-radius: 999px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.8);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
}
.phone-bars { display: flex; gap: 5px; margin-top: 1rem; }
.phone-bars span {
  width: 8px; height: 22px; border-radius: 4px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-blue));
  opacity: .85;
}
.phone-bars span:nth-child(2) { height: 30px; opacity: 1; }
.phone-bars span:nth-child(3) { height: 16px; opacity: .65; }

.section-eyebrow {
  display: inline-block; margin-bottom: .65rem;
  color: var(--color-teal); font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}

.step-card {
  position: relative; overflow: hidden;
}
.step-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: .85rem;
  background: linear-gradient(145deg, rgba(31,111,235,.12), rgba(0,194,168,.12));
  border: 1px solid rgba(31,111,235,.12);
  position: relative;
}
.step-icon::after {
  content: ""; position: absolute; inset: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  opacity: .9;
}
.step-icon[data-icon="device"]::after { clip-path: polygon(30% 8%, 70% 8%, 78% 20%, 78% 92%, 22% 92%, 22% 20%); }
.step-icon[data-icon="offer"]::after { border-radius: 50%; inset: 11px; }
.step-icon[data-icon="check"]::after { clip-path: polygon(14% 52%, 38% 76%, 86% 22%, 78% 14%, 38% 60%, 24% 46%); }
.step-icon[data-icon="store"]::after { clip-path: polygon(12% 40%, 50% 12%, 88% 40%, 88% 88%, 12% 88%); }

.advantage-card {
  display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.advantage-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #eff5ff, #e8fffa);
  font-size: 1.15rem;
  border: 1px solid var(--color-gray-100);
}

.brands-strip { padding-top: 0; }
.brands-label {
  text-align: center; color: var(--color-gray-600);
  font-weight: 700; font-size: .85rem; margin: 0 0 1rem;
}
.brands-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
}
.brand-pill {
  padding: .55rem 1rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--color-gray-100);
  color: var(--color-navy); font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-sm);
}

.cta-banner {
  position: relative; overflow: hidden;
}
.cta-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.25rem; text-align: left;
}
.cta-copy { max-width: 640px; }
.cta-copy p { margin: .4rem 0 0; color: rgba(255,255,255,.82); }
.btn-light {
  background: #fff; color: var(--color-navy-deep); border: 0; font-weight: 800;
}
.btn-light:hover { filter: brightness(0.97); color: var(--color-navy-deep); }

.footer-brand-row {
  display: flex; align-items: center; gap: .65rem; margin-bottom: .5rem;
}
.footer-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-grid; place-items: center;
  background: linear-gradient(145deg, var(--color-blue), var(--color-teal));
  color: #fff; font-weight: 800; font-family: var(--font-display);
}
.footer-brand-row h4 { margin: 0; }

.modal-kicker {
  margin: 0 0 .2rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-teal);
}
.offer-wizard .modal-dialog {
  box-shadow: 0 30px 80px rgba(7,17,31,.35);
}
.wizard-steps {
  background: var(--color-gray-50);
  padding: .4rem; border-radius: 999px;
}
.wizard-step {
  background: transparent;
}
.wizard-step.active {
  box-shadow: 0 6px 16px rgba(31,111,235,.25);
}

.header-whatsapp {
  display: none;
  color: #25d366 !important;
  font-weight: 700;
  font-size: .9rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,.35);
  background: rgba(37,211,102,.1);
}
.header-whatsapp:hover { color: #1ebe57 !important; background: rgba(37,211,102,.16); }
.header-status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,194,168,.4);
  background: rgba(0,194,168,.12);
  color: #0d9488 !important;
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.header-status-btn:hover {
  background: rgba(0,194,168,.2);
  box-shadow: 0 6px 18px rgba(0,194,168,.18);
  transform: translateY(-1px);
  color: #0f766e !important;
}
@media (min-width: 900px) {
  .header-whatsapp { display: inline-flex; align-items: center; }
}
@media (max-width: 899px) {
  .header-status-btn {
    padding: .4rem .7rem;
    font-size: .78rem;
  }
}
.header-phone {
  font-weight: 700 !important;
  letter-spacing: .02em;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1rem;
}
.success-screen .request-no {
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.success-tip {
  margin: .85rem 0 0;
  color: var(--color-muted, #64748b);
  font-size: .9rem;
  line-height: 1.45;
}
/* =========================================================
   LIGHT THEME – müşteri arayüzü (beyaz / açık tonlar)
   ========================================================= */
:root {
  --font-brand: "Outfit", "Sora", system-ui, sans-serif;
  --color-navy-deep: #0f1b2d;
  --color-navy: #1a2b45;
  --color-surface: #ffffff;
  --color-page: #f7f9fc;
  --color-gray-50: #f7f9fc;
  --color-gray-100: #eef2f7;
  --color-gray-200: #dde5ef;
  --color-gray-400: #8a9bb2;
  --color-gray-600: #5b6b82;
  --color-gray-800: #1e2d42;
}

body,
.frontend-body {
  background: var(--color-page);
  color: var(--color-gray-800);
}

/* Brand wordmark */
.brand {
  gap: .15rem;
  color: var(--color-navy-deep);
}
.brand:hover { color: var(--color-navy-deep); }
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: .28rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--color-navy-deep);
}
.brand-word { color: var(--color-navy-deep); }
.brand-word.accent {
  background: linear-gradient(120deg, #1f6feb 0%, #00a996 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.brand-mark-mini { display: none !important; }

/* Header – açık cam */
.site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 27, 45, 0.06);
}
.header-link {
  color: var(--color-gray-600) !important;
}
.header-link:hover { color: var(--color-navy-deep) !important; }
.header-phone {
  color: var(--color-navy) !important;
}
.header-whatsapp {
  color: #1ebe57 !important;
  border-color: rgba(37,211,102,.28);
  background: rgba(37,211,102,.08);
}
.header-status-btn {
  color: #0f766e !important;
  border-color: rgba(0,194,168,.35);
  background: rgba(0,194,168,.1);
}
.header-status-btn:hover {
  color: #0d9488 !important;
  background: rgba(0,194,168,.16);
}

/* Hero – beyaz / soft gradient */
.hero {
  background:
    radial-gradient(900px 420px at 92% 8%, rgba(31,111,235,.12), transparent 55%),
    radial-gradient(700px 380px at 0% 90%, rgba(0,194,168,.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 55%, #eef4fb 100%);
  color: var(--color-gray-800);
}
.hero-bg {
  background:
    radial-gradient(ellipse 50% 45% at 85% 20%, rgba(31,111,235,.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,194,168,.1), transparent 55%),
    linear-gradient(rgba(31,111,235,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,111,235,.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: .9;
}
.brand-mark {
  border: 1px solid rgba(0,194,168,.22);
  background: rgba(0,194,168,.08);
  color: #0f766e;
}
.hero h1 {
  color: var(--color-navy-deep);
}
.hero h1 span {
  background: linear-gradient(135deg, #1f6feb, #00b39a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  color: var(--color-gray-600);
}
.hero .btn-outline {
  color: var(--color-navy);
  border-color: rgba(26, 43, 69, 0.18);
  background: rgba(255,255,255,.7);
}
.hero .btn-outline:hover {
  background: #fff;
  color: var(--color-navy-deep);
  border-color: rgba(31,111,235,.35);
  box-shadow: 0 8px 24px rgba(31,111,235,.12);
}
.trust-item {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,27,45,.06);
  box-shadow: 0 6px 18px rgba(15,27,45,.04);
}
.trust-item strong { color: var(--color-navy-deep); }
.trust-item span { color: var(--color-gray-600); }

/* Hero phone visual – light */
.phone-shape {
  border: 2px solid rgba(15,27,45,.06);
  background: linear-gradient(160deg, #ffffff, #eef3f9);
  box-shadow: 0 18px 40px rgba(15,27,45,.1);
}
.phone-shape-main {
  border: 2px solid rgba(31,111,235,.12);
  background: linear-gradient(180deg, #ffffff 0%, #f0f5fb 100%);
  box-shadow: 0 24px 60px rgba(31,111,235,.16), 0 8px 24px rgba(15,27,45,.08);
}
.phone-screen {
  background: linear-gradient(160deg, #0b1b33 0%, #132a4a 100%);
}
.phone-chip {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}
.hero-visual .float-card {
  background: #fff;
  color: var(--color-navy);
  border: 1px solid rgba(15,27,45,.06);
  box-shadow: 0 12px 30px rgba(15,27,45,.1);
}

/* Stats / CTA – soft light accents */
.stats-bar {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #e8faf6 100%);
  color: var(--color-navy-deep);
  border-top: 1px solid rgba(15,27,45,.05);
  border-bottom: 1px solid rgba(15,27,45,.05);
}
.stat-block__label { color: var(--color-gray-600); }
.cta-band,
.cta-banner {
  background: linear-gradient(135deg, #edf4ff 0%, #e8f9f5 100%);
  color: var(--color-navy-deep);
  border-top: 1px solid rgba(31,111,235,.08);
}
.cta-band h2,
.cta-banner h2 {
  color: var(--color-navy-deep);
}
.cta-copy p,
.cta-band p {
  color: var(--color-gray-600) !important;
  opacity: 1;
}
.cta-banner .btn-light {
  background: linear-gradient(135deg, var(--color-blue), #1558c9 55%, var(--color-teal));
  color: #fff;
}
.cta-banner .btn-light:hover {
  filter: brightness(1.05);
  color: #fff;
}

/* Footer – açık */
.site-footer {
  background: #ffffff;
  color: var(--color-gray-600);
  border-top: 1px solid rgba(15,27,45,.06);
}
.footer-brand,
.site-footer .footer-col h4 {
  color: var(--color-navy-deep);
}
.footer-wordmark {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.footer-wordmark .accent {
  background: linear-gradient(120deg, #1f6feb, #00a996);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.footer-mark { display: none !important; }
.site-footer .footer-col li,
.site-footer .footer-col p {
  color: var(--color-gray-600);
}
.site-footer .footer-col a {
  color: var(--color-gray-600);
}
.site-footer .footer-col a:hover {
  color: var(--color-blue);
}
.footer-links a {
  color: var(--color-gray-600);
}
.footer-links a:hover {
  color: var(--color-blue);
}

/* Sections stay airy white */
.section {
  background: transparent;
}
.step-card,
.adv-card,
.brand-pill {
  background: #fff;
}
