﻿:root {
  --primary: #f05a1a;
  --primary-dark: #c7430e;
  --success: #18a957;
  --bg: #f7f9fc;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.1);
  --glass: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.08);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 40px));
}

.text-primary {
  color: var(--primary);
}

/* Base reset and shared primitives */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--dark);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Sticky header and navigation */
.loader-mark {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--white);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
}

.topbar {
  color: var(--white);
  background: #f05a1a;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 500;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-location::before {
  width: 15px;
  height: 15px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6.1 7-12A7 7 0 1 0 5 9c0 5.9 7 12 7 12Z' stroke='white' stroke-width='2'/%3E%3Ccircle cx='12' cy='9' r='2.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.topbar-info span + span {
  position: relative;
}

.topbar-info span + span::before {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 13px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}

.topbar-phone::before {
  width: 15px;
  height: 15px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.11 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.79a2 2 0 0 1-.45 2.11L9.1 10.83a16 16 0 0 0 4.07 4.07l1.21-1.21a2 2 0 0 1 2.11-.45c.89.31 1.83.53 2.79.66A2 2 0 0 1 22 16.92Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 28px;
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 190px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.site-header.is-scrolled .brand strong,
.site-header.is-open .brand strong,
.site-footer .brand strong {
  color: var(--dark);
}

.site-header.is-scrolled .brand small,
.site-header.is-open .brand small,
.site-footer .brand small {
  color: var(--muted);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
  padding-right: 116px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header.is-scrolled .nav-links a,
.site-header.is-open .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--primary);
}

.site-header.is-scrolled .nav-links a.is-active,
.site-header.is-open .nav-links a.is-active {
  color: var(--primary);
}

.brand-partner {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  flex-shrink: 0;
  transform: translateY(-50%);
}

.brand-partner .brand-mark {
  width: 76px;
  height: 76px;
}

.brand-partner .brand-mark img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-icon {
  gap: 9px;
}

.btn-icon::before {
  width: 18px;
  height: 18px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-review::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-contact::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Z' stroke='%230F172A' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m4 7 8 6 8-6' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-primary.btn-contact::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Z' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m4 7 8 6 8-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-call-dark::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.11 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.79a2 2 0 0 1-.45 2.11L9.1 10.83a16 16 0 0 0 4.07 4.07l1.21-1.21a2 2 0 0 1 2.11-.45c.89.31 1.83.53 2.79.66A2 2 0 0 1 22 16.92Z' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn-whatsapp-dark::before {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230F172A' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.6 32 2 131.6 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-221.9 0-59.3-25.2-115-67.1-157.1zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 40px rgba(240, 90, 26, 0.34);
}

.btn-light {
  color: var(--dark);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .btn-ghost,
.site-header.is-open .btn-ghost {
  color: var(--primary);
  border-color: rgba(240, 90, 26, 0.2);
  background: rgba(240, 90, 26, 0.06);
}

.btn-success {
  color: var(--white);
  background: var(--success);
  box-shadow: 0 18px 36px rgba(24, 169, 87, 0.3);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.06);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: rgba(240, 90, 26, 0.08);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-open .menu-toggle span {
  background: var(--primary);
}

.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);
}

/* Full-screen hero slider */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide picture,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(240, 90, 26, 0.35), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.56) 48%, rgba(15, 23, 42, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-top: 140px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #cde0ff;
  padding: 9px 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1180px) / 2));
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.slider-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.slider-dot.is-active {
  border-color: var(--white);
  background: var(--white);
  transform: scale(1.24);
}

/* Cards, sections and content blocks */
.feature-strip {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -72px;
}

.feature-card,
.info-card,
.benefit-card,
.blog-card,
.legal-box,
.illustration-card,
.process-media,
.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 180px;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.info-card:hover,
.benefit-card:hover,
.blog-card:hover,
.timeline-item:hover,
.reveal.is-visible.feature-card:hover,
.reveal.is-visible.info-card:hover,
.reveal.is-visible.benefit-card:hover,
.reveal.is-visible.blog-card:hover,
.reveal.is-visible.timeline-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-bubble {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0;
  font-weight: 900;
  background: var(--primary);
  border-radius: 18px;
  animation: float 3.8s ease-in-out infinite;
}

.icon-bubble::before,
.info-card > span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 28px;
  height: 28px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}

.feature-card:nth-child(1) .icon-bubble::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 12 4 4L19 6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-card:nth-child(2) .icon-bubble::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M12 7v5l3 2' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-card:nth-child(3) .icon-bubble::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10V8a6 6 0 1 1 12 0v2' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M5 10h14v9H5v-9Z' stroke='white' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-card:nth-child(4) .icon-bubble::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='6' width='16' height='14' rx='2' stroke='white' stroke-width='1.8'/%3E%3Cpath d='M8 4v4M16 4v4M4 11h16' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-card h2,
.info-card h3,
.benefit-card h3,
.timeline-item h3,
.blog-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.feature-card p,
.info-card p,
.benefit-card p,
.timeline-item p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 110px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 64px;
}

.section-heading h2,
.legal-box h2,
.cta-content h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-copy h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.75rem, 3.2vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-copy p,
.section-heading p,
.legal-box p,
.cta-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy .btn {
  margin-top: 28px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stats-row div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.stats-row strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.illustration-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.illustration-card img {
  width: 100%;
  height: auto;
  display: block;
}

.vehicle-illustration {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.car-body {
  position: relative;
  width: min(78%, 420px);
  height: 132px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 42px 88px 34px 34px;
  box-shadow: 0 30px 70px rgba(240, 90, 26, 0.28);
}

.car-body::before {
  position: absolute;
  left: 82px;
  top: -74px;
  width: 210px;
  height: 92px;
  content: "";
  background: linear-gradient(135deg, #dbeafe, #ffffff);
  border-radius: 70px 80px 0 0;
  clip-path: polygon(12% 100%, 28% 10%, 78% 0, 100% 100%);
}

.wheel {
  position: absolute;
  bottom: 120px;
  width: 74px;
  height: 74px;
  background: var(--dark);
  border: 12px solid #dbeafe;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px #334155;
}

.wheel-left {
  left: 24%;
}

.wheel-right {
  right: 24%;
}

.chip {
  position: absolute;
  z-index: 3;
  top: 116px;
  right: 18%;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--success);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(24, 169, 87, 0.32);
}

.signal {
  position: absolute;
  z-index: 2;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(240, 90, 26, 0.32);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}

.signal-one {
  top: 88px;
  right: 16%;
}

.signal-two {
  top: 50px;
  right: 10%;
  animation-delay: 0.55s;
}

/* Timeline and process sections */
.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.cards-grid,
.benefit-grid,
.blog-grid {
  display: grid;
  gap: 20px;
}

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

#kimler-icin {
  background: var(--white);
}

#kimler-icin .info-card {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.18);
}

#kimler-icin .info-card h3,
#kimler-icin .info-card p {
  color: var(--white);
}

#kimler-icin .info-card > span {
  background: var(--white);
}

#kimler-icin .info-card > span::before {
  filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(2279%) hue-rotate(351deg) brightness(98%) contrast(92%);
}

.info-card,
.benefit-card,
.blog-card {
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card span {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  font-size: 0;
  background: var(--primary);
  border-radius: 18px;
}

.six-grid .info-card:nth-child(1) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20V8l7-4 7 4v12' stroke='white' stroke-width='1.75' stroke-linejoin='round'/%3E%3Cpath d='M9 20v-7h6v7M8 10h.01M12 10h.01M16 10h.01' stroke='white' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
}

.six-grid .info-card:nth-child(2) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h11v9H4V7ZM15 10h3l2 3v3h-5v-6Z' stroke='white' stroke-width='1.75' stroke-linejoin='round'/%3E%3Ccircle cx='8' cy='18' r='1.5' fill='white'/%3E%3Ccircle cx='17' cy='18' r='1.5' fill='white'/%3E%3C/svg%3E");
}

.six-grid .info-card:nth-child(3) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3' stroke='white' stroke-width='1.75'/%3E%3Cpath d='m10.5 10.5 8 8M15 14l2-2M17 16l2-2' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.six-grid .info-card:nth-child(4) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h8l3 3v13H7V4Z' stroke='white' stroke-width='1.75' stroke-linejoin='round'/%3E%3Cpath d='M14 4v4h4M10 12h5M10 16h5' stroke='white' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
}

.six-grid .info-card:nth-child(5) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 20V6a2 2 0 0 1 2-2h5l3 3v13' stroke='white' stroke-width='1.75' stroke-linejoin='round'/%3E%3Cpath d='M9 14h7M9 17h7M14 4v4h4' stroke='white' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
}

.six-grid .info-card:nth-child(6) > span::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM16 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM4 20a4 4 0 0 1 8 0M12 20a4 4 0 0 1 8 0' stroke='white' stroke-width='1.75' stroke-linecap='round'/%3E%3C/svg%3E");
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(240, 90, 26, 0.32), transparent 34%),
    linear-gradient(135deg, #0f172a, #111f3d);
}

.dark-section .section-heading h2,
.dark-section .timeline-item h3 {
  color: var(--white);
}

.dark-section .section-heading p,
.dark-section .timeline-item p {
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
}

.timeline-item {
  position: relative;
  z-index: 2;
  padding: 24px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-item span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: -2px auto 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(240, 90, 26, 0.35);
}

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

.benefit-card {
  min-height: 215px;
  background: var(--white);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--primary);
  font-weight: 900;
}

.process-section {
  background: var(--white);
}

.process-media {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}

.process-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.04);
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.process-list div {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.process-list div::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--success);
  border: 5px solid rgba(24, 169, 87, 0.18);
  border-radius: 50%;
  background-clip: padding-box;
}

.process-list strong {
  color: var(--dark);
  font-size: 1.05rem;
}

.process-list p {
  margin: 4px 0 0;
  font-size: 0.96rem;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.92), rgba(247, 249, 252, 0.92)),
    url("../images/yasal-zorunluluk-bg.webp") center/cover fixed;
}

.legal-box {
  max-width: 980px;
  padding: clamp(30px, 6vw, 58px);
  margin: auto;
  border-radius: 36px;
}

.faq-section {
  background: var(--white);
}

.accordion {
  max-width: 900px;
  margin: auto;
}

.accordion-item {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 22px;
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  color: var(--dark);
  font-weight: 900;
  text-align: left;
  background: transparent;
  border: 0;
}

.accordion-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

/* Blog, CTA and footer */
.blog-grid {
  grid-template-columns: repeat(5, 1fr);
}

.blog-card {
  min-height: 240px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.blog-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.blog-card span {
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  background: rgba(240, 90, 26, 0.08);
  border-radius: 999px;
}

.cta-section {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(240, 90, 26, 0.62)),
    url("../images/anasayfa/ulasin.png") center/cover;
  transform: translateY(var(--parallax, 0));
  scale: 1.08;
}

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

.cta-content h2,
.cta-content p {
  color: var(--white);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 34px;
  padding: 70px 0 34px;
}

.site-footer .brand strong {
  color: var(--white);
}

.site-footer .brand small,
.site-footer p,
.site-footer a,
.site-footer address {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--white);
}

address {
  font-style: normal;
}

.footer-contact-list {
  display: grid;
  gap: 10px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact-item::before {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-address::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6.1 7-12A7 7 0 1 0 5 9c0 5.9 7 12 7 12Z' stroke='white' stroke-width='2'/%3E%3Ccircle cx='12' cy='9' r='2.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.footer-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.11 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.79a2 2 0 0 1-.45 2.11L9.1 10.83a16 16 0 0 0 4.07 4.07l1.21-1.21a2 2 0 0 1 2.11-.45c.89.31 1.83.53 2.79.66A2 2 0 0 1 22 16.92Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.6 32 2 131.6 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-221.9 0-59.3-25.2-115-67.1-157.1zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

iframe {
  width: 100%;
  height: 160px;
  margin-top: 18px;
  border: 0;
  border-radius: 20px;
  filter: saturate(0.86);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.agency-link {
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.agency-link:hover,
.agency-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.agency-link img {
  width: auto;
  height: auto;
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  gap: 10px;
}

.sticky-actions a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.24);
}

.sticky-call {
  background: var(--primary);
}

.sticky-whatsapp {
  background: var(--success);
}

.scroll-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 91;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top::after {
  position: absolute;
  inset: 0;
  content: "";
  background: conic-gradient(#f05a1a var(--scroll-progress), rgba(240, 90, 26, 0.18) 0);
  border-radius: 50%;
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top::before {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  content: "";
  border-top: 5px solid #f05a1a;
  border-left: 5px solid #f05a1a;
  transform: translateY(4px) rotate(45deg);
}

/* Inner pages */
.inner-page .site-header {
  background: var(--white);
  backdrop-filter: none;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(240, 90, 26, 0.55)),
    url("../images/page-title.png") center/cover;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 146px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.45rem, 5.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.content-grid aside {
  position: sticky;
  top: 130px;
  align-self: start;
}

.content-card,
.sidebar-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.content-card + .content-card,
.sidebar-card + .sidebar-card {
  margin-top: 20px;
}

.content-card h2,
.sidebar-card h2 {
  margin: 0 0 14px;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.sidebar-card h2 {
  color: var(--primary);
}

.content-card p,
.content-card li,
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
}

.content-card ul,
.sidebar-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 40px) 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.contact-card .icon-bubble {
  margin-bottom: 0;
  animation: none;
}

.contact-card-icon--phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.11 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.79a2 2 0 0 1-.45 2.11L9.1 10.83a16 16 0 0 0 4.07 4.07l1.21-1.21a2 2 0 0 1 2.11-.45c.89.31 1.83.53 2.79.66A2 2 0 0 1 22 16.92Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-card-icon--whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.6 32 2 131.6 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-221.9 0-59.3-25.2-115-67.1-157.1zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}

.contact-card-icon--address::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6.1 7-12A7 7 0 1 0 5 9c0 5.9 7 12 7 12Z' stroke='white' stroke-width='2'/%3E%3Ccircle cx='12' cy='9' r='2.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.contact-card-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card-value {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
}

a.contact-card-value:hover {
  color: var(--primary);
}

.contact-map-section {
  margin-top: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-map {
  display: block;
  width: 100%;
  height: 420px;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  filter: none;
}

.page-link-list {
  padding: 0 !important;
  list-style: none;
}

.page-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--text);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.page-link-list a::after {
  content: "→";
  color: var(--primary);
}

.layer-stack {
  display: grid;
  gap: 22px;
}

.layer-card {
  position: relative;
  overflow: hidden;
}

.layer-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--primary), var(--success));
}

.layer-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 !important;
  margin-top: 20px;
  list-style: none;
}

.pill-grid li {
  padding: 14px 16px;
  color: var(--text);
  font-weight: 800;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notice-card {
  padding: 22px;
  margin-top: 22px;
  background: rgba(240, 90, 26, 0.07);
  border: 1px solid rgba(240, 90, 26, 0.14);
  border-radius: 20px;
}

.notice-card p {
  margin: 0;
}

.notice-card + .btn {
  margin-top: 22px;
}

.info-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(240, 90, 26, 0.08), rgba(240, 90, 26, 0.03));
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: 20px;
}

.info-banner p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.info-banner p strong {
  color: var(--primary);
}

.info-banner .btn {
  flex-shrink: 0;
}

.info-banner-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(240, 90, 26, 0.28);
}

.info-banner-primary p {
  color: rgba(255, 255, 255, 0.9);
}

.info-banner-primary p strong {
  color: var(--white);
}

.section.info-banner-section {
  padding: 48px 0;
}

.mobile-service-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(240, 90, 26, 0.08), rgba(240, 90, 26, 0.03));
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: 24px;
}

.mobile-service-box h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.mobile-service-box p,
.mobile-service-box li {
  color: var(--muted);
}

.mobile-service-box ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 16px 0 0;
}

.mobile-service-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mobile-service-media img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.left {
  transform: translateX(-34px);
}

.reveal.right {
  transform: translateX(34px);
}

.reveal.zoom {
  transform: scale(0.94);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal.is-visible.feature-card,
.reveal.is-visible.info-card,
.reveal.is-visible.benefit-card,
.reveal.is-visible.blog-card,
.reveal.is-visible.timeline-item {
  transition: opacity 0.7s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Motion and responsive behavior */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.65);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 20px;
  }

  .nav-panel {
    padding-right: 108px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

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

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

  .content-grid aside {
    position: static;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .navbar {
    min-height: 82px;
    flex-wrap: nowrap;
  }

  .brand:not(.brand-partner) {
    order: 1;
  }

  .topbar-inner {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .topbar-info {
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 114px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 22px;
    max-height: calc(100vh - 96px);
    padding: 22px;
    padding-right: 22px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  .brand-partner {
    position: static;
    order: 2;
    margin-left: auto;
    margin-right: 12px;
    transform: none;
  }

  .brand-partner .brand-mark,
  .brand-partner .brand-mark img {
    width: 60px;
    height: 60px;
  }

  .menu-toggle {
    order: 3;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.8rem);
  }

  .feature-strip,
  .six-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 78px 0;
  }

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

  .legal-section {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .topbar-phone {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 150px;
    height: 60px;
  }

  .hero {
    min-height: 720px;
  }

  .slider-controls {
    display: none;
  }

  .page-hero {
    min-height: 460px;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 76% 20%, rgba(240, 90, 26, 0.34), transparent 32%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.74));
  }

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

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

  .nav-actions {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    display: grid;
  }

  .info-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-banner .btn {
    width: fit-content;
    max-width: 100%;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: -52px;
  }

  .stats-row,
  .pill-grid,
  .mobile-service-box,
  .six-grid,
  .timeline,
  .benefit-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wheel {
    bottom: 92px;
    width: 58px;
    height: 58px;
    border-width: 9px;
  }

  .chip {
    top: 80px;
    right: 10%;
  }

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

  .site-footer {
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }

  .footer-grid {
    justify-items: center;
  }

  .footer-brand,
  .site-footer ul,
  .footer-contact-list {
    width: 100%;
    justify-items: center;
  }

  .footer-contact-item {
    width: max-content;
    max-width: 100%;
    text-align: left;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .sticky-actions {
    display: flex;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 22px, 100%);
  }

  .hero h1,
  .hero h2 {
    letter-spacing: -0.06em;
  }

  .btn {
    padding-inline: 18px;
  }

  .feature-card,
  .info-card,
  .benefit-card,
  .blog-card a {
    padding: 22px;
  }
}

/* Floating contact buttons replace header contact actions */
.nav-actions {
  display: none !important;
}

.sticky-actions {
  left: 18px;
  right: auto;
  display: flex;
  flex-direction: column;
}

.sticky-actions a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  font-size: 0;
  overflow: hidden;
}

.sticky-actions a::before {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sticky-call::before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.11 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.13.96.35 1.9.66 2.79a2 2 0 0 1-.45 2.11L9.1 10.83a16 16 0 0 0 4.07 4.07l1.21-1.21a2 2 0 0 1 2.11-.45c.89.31 1.83.53 2.79.66A2 2 0 0 1 22 16.92Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sticky-whatsapp::before {
  width: 42px;
  height: 42px;
  background-size: 42px 42px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.6 32 2 131.6 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-221.9 0-59.3-25.2-115-67.1-157.1zM223.9 438.7c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3s19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
}



