:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #526071;
  --line: rgba(15, 23, 42, 0.12);
  --primary: #0b6ea9;
  --primary-deep: #085685;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.14);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 110, 169, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

.site-shell,
.login-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 16px clamp(18px, 2.6vw, 36px) 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 13px 20px;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
  font-size: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.brand img {
  width: clamp(164px, 16vw, 234px);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-right: 2px;
  font-family: "Roboto", Arial, sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #0f213a;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

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

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

.btn-large {
  min-height: 60px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #0a7cc1 100%);
  box-shadow: 0 18px 36px rgba(11, 110, 169, 0.26);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #0d5f94 0%, var(--primary) 100%);
  box-shadow: 0 16px 34px rgba(13, 95, 148, 0.22);
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #11c9b6 0%, #0ab8c3 100%);
  box-shadow: 0 18px 36px rgba(17, 201, 182, 0.24);
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.section {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, 0.96fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(26px, 2.2vw, 34px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(11, 110, 169, 0.07), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.06), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eef5fb 100%);
  box-shadow: 0 22px 72px rgba(15, 23, 42, 0.08);
}

.hero-copy {
  max-width: 540px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(11, 110, 169, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 110, 169, 0.12), rgba(17, 201, 182, 0.12));
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.45rem, 4.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero .hero-copy h1,
.hero .hero-copy p {
  color: var(--text);
}

.hero .hero-copy p {
  max-width: 530px;
  color: var(--muted);
}

.hero p,
.section-heading p,
.split-copy p,
.contact-panel p,
.site-footer p,
.login-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.hero-stage-panel {
  position: absolute;
  top: 42px;
  right: 20px;
  left: 14px;
  height: 304px;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 110, 169, 0.06), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(245, 158, 11, 0.06), transparent 16%),
    linear-gradient(135deg, #ffffff 0%, #f8fbfe 56%, #edf4fb 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.hero-stage-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #5d7188;
  font-size: 0.98rem;
  text-align: center;
}

.hero-stage-card {
  position: absolute;
  top: 84px;
  right: 0;
  width: min(38%, 224px);
  height: 398px;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.hero-stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stage-card-copy {
  position: absolute;
  bottom: 42%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b1b38;
  white-space: nowrap;
}

.floating-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  font-size: 0.86rem;
  font-weight: 700;
}

.note-otp {
  top: 10px;
  left: 4px;
  color: #0b6ea9;
  padding-left: 12px;
  padding-right: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.note-call {
  left: 8px;
  bottom: 14px;
  gap: 8px;
  color: #0f213a;
}

.note-otp::before {
  content: "OTP";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  margin-right: 6px;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.note-call span:last-child {
  font-weight: 800;
}

.call-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0d8bd4);
}

.note-route {
  right: 14px;
  bottom: 14px;
  border: 1px dashed rgba(11, 110, 169, 0.22);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metrics article,
.card,
.info-tile,
.shot,
.login-card,
.cta-band,
.contact-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.metrics article {
  padding: 24px;
  border-radius: 24px;
}

.metrics strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-deep);
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.block,
.showcase,
.split,
.cta-band,
.contact-panel {
  padding: clamp(18px, 2vw, 28px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 16px 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

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

.shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.shot-large {
  grid-column: span 7;
}

.shot:nth-child(2),
.shot:nth-child(3),
.shot:nth-child(4),
.shot:nth-child(5) {
  grid-column: span 5;
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.shot figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.bullet-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  color: #0f172a;
  font-weight: 600;
}

.split-panel {
  display: grid;
  gap: 16px;
}

.info-tile {
  padding: 22px;
  border-radius: 22px;
}

.info-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.info-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
}

.site-footer {
  margin-top: 34px;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 18px 30px;
  text-align: center;
  color: rgba(248, 251, 255, 0.82);
  background: linear-gradient(135deg, #071126 0%, #0b1b38 100%);
  border-radius: 32px;
}

.site-footer img {
  width: clamp(180px, 20vw, 280px);
}

.login-page {
  min-height: 100vh;
}

.login-header {
  margin-bottom: 0;
}

.login-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 120px);
  padding: 28px 0 50px;
}

.login-layout {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.login-card {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(11, 110, 169, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.98));
}

.login-aside {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top left, rgba(11, 110, 169, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: var(--shadow);
}

.login-promo h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.login-promo p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.login-points {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.login-points div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.login-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-deep);
}

.login-points span {
  color: var(--muted);
  line-height: 1.7;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-weight: 700;
}

.login-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.subpage {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.11), transparent 22%),
    radial-gradient(circle at top right, rgba(11, 110, 169, 0.11), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.subpage .site-header {
  margin-bottom: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding: 60px clamp(18px, 2vw, 28px);
  min-height: auto;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.page-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 0 clamp(18px, 2vw, 28px) 40px;
}

.subpage-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-visual {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.subpage-card:hover .card-visual img {
  transform: scale(1.05);
}

.icon-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.icon-illustration svg {
  width: 64px;
  height: 64px;
  color: var(--primary);
  z-index: 2;
  transition: transform 0.3s ease;
}

.subpage-card:hover .icon-illustration svg {
  transform: scale(1.1) rotate(-5deg);
}

.animation-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: dot-bounce 1.5s ease-in-out infinite;
}

.dot-1 { top: 30%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 60%; left: 75%; animation-delay: 0.5s; }
.dot-3 { top: 75%; left: 25%; animation-delay: 1s; }

@keyframes dot-bounce {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-10px) scale(1.3); opacity: 1; }
}

.taxi-road {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 50%, #94a3b8 50%, #64748b 100%);
  overflow: hidden;
}

.road-line {
  position: absolute;
  height: 3px;
  width: 30px;
  background: #fbbf24;
  bottom: 25%;
  animation: road-move 1.5s linear infinite;
}

.road-line:nth-child(1) { left: 10%; }
.road-line:nth-child(2) { left: 40%; animation-delay: 0.5s; }
.road-line:nth-child(3) { left: 70%; animation-delay: 1s; }

@keyframes road-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(50px); }
}

.taxi-car {
  position: absolute;
  bottom: 30%;
  left: -60px;
  width: 60px;
  height: 30px;
  color: var(--primary);
  animation: taxi-drive 3.5s linear infinite;
}

.taxi-car svg {
  width: 100%;
  height: 100%;
}

@keyframes taxi-drive {
  0% { transform: translateX(0); }
  100% { transform: translateX(400px); }
}

.pulse-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fly-path {
  position: absolute;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  top: 50%;
  left: 10%;
  animation: fly-across 3s linear infinite;
}

.airplane-icon {
  position: absolute;
  top: 45%;
  left: -20px;
  font-size: 1.5rem;
  color: var(--primary);
  animation: fly-across 3s linear infinite;
}

@keyframes fly-across {
  0% { transform: translateX(0); }
  100% { transform: translateX(400px); }
}

.people-group {
  position: absolute;
  width: 100%;
  height: 100%;
}

.person {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: person-walk 2s ease-in-out infinite;
}

.person::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 3px;
  width: 6px;
  height: 12px;
  background: var(--primary);
  border-radius: 3px;
}

.p-1 { top: 60%; left: 20%; animation-delay: 0s; }
.p-2 { top: 60%; left: 50%; animation-delay: 0.3s; }
.p-3 { top: 60%; left: 80%; animation-delay: 0.6s; }

@keyframes person-walk {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.school-alert {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 24px;
  height: 24px;
}

.alert-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f59e0b;
  border-radius: 50%;
  animation: alert-pulse 1.5s ease-in-out infinite;
}

.alert-pulse::after {
  content: '!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

@keyframes alert-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.brand-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: brand-float 3s ease-in-out infinite;
}

.c-1 { top: 25%; left: 20%; animation-delay: 0s; }
.c-2 { top: 60%; left: 60%; animation-delay: 1s; background: #f59e0b; }
.c-3 { top: 35%; right: 15%; animation-delay: 2s; background: #10b981; }

@keyframes brand-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -10px) scale(1.1); }
}

.subpage-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.subpage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card.featured {
  border-color: rgba(11, 110, 169, 0.22);
  background:
    radial-gradient(circle at top left, rgba(11, 110, 169, 0.06), transparent 28%),
    rgba(255, 255, 255, 0.98);
  transform: translateY(-6px);
}

.feature-stack {
  display: grid;
  gap: 16px;
  padding: 0 clamp(18px, 2vw, 28px) 28px;
}

.feature-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-row strong {
  display: block;
  font-size: 1.15rem;
}

.feature-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.faq-section {
  display: grid;
  gap: 18px;
  padding: 0 clamp(18px, 2vw, 28px) 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 0 clamp(18px, 2vw, 28px) 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 14px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--primary-deep);
  font-weight: 700;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.contact-side .page-panel {
  padding: 24px;
}

.contact-side h2 {
  margin: 14px 0 10px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.contact-side p {
  margin-top: 0;
}

.accordion-section {
  padding: 0 clamp(18px, 2vw, 28px) 28px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-toggle:hover {
  background: rgba(11, 110, 169, 0.04);
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion-icon::before {
  width: 14px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
}

.accordion-item.open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.accordion-item.open .accordion-content {
  max-height: 800px;
}

.accordion-inner {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 20px;
}

.accordion-inner p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion-inner ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.accordion-inner li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
  list-style: none;
}

.accordion-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

.floating-call {
  position: fixed;
  bottom: 24px;
  right: 180px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0a7cc1 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(11, 110, 169, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11, 110, 169, 0.35);
}

.floating-call svg {
  width: 24px;
  height: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  padding: 20px clamp(18px, 3vw, 32px);
  background: linear-gradient(135deg, #071126 0%, #0b1b38 100%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-banner a {
  color: #25D366;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.cookie-btn.accept {
  background: #25D366;
  border: none;
  color: #fff;
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 2vw, 28px) 10px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-stars span {
  color: #f59e0b;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0a7cc1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info strong {
  display: block;
  font-size: 1rem;
}

.testimonial-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-section {
  padding: 0 clamp(18px, 2vw, 28px) 10px;
}

.pricing-comparison {
  padding: 0 clamp(18px, 2vw, 28px) 28px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-table th {
  background: rgba(11, 110, 169, 0.08);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-table td {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .check {
  color: #10b981;
}

.pricing-table .cross {
  color: #ef4444;
}

.legal-content {
  padding: 0 clamp(18px, 2vw, 28px) 28px;
}

.legal-section {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 10px;
}

.legal-section a {
  color: var(--primary);
}

/* Hero Section - Corporate Design */
.hero-section {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: center;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
  min-height: 70vh;
}

.hero-text {
  color: var(--text);
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(11, 110, 169, 0.1);
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-offer-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
}

.hero-offer-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 36px 36px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
  border: 2px solid #f59e0b;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.3);
  text-align: center;
  max-width: 320px;
  width: 100%;
  animation: offer-float 3s ease-in-out infinite;
  overflow: hidden;
}

.offer-scroll-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.offer-scroll-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.offer-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 180px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  opacity: 0;
  animation: offer-slide-show 9s infinite;
}

.offer-slide:nth-child(1) { animation-delay: 0s; }
.offer-slide:nth-child(2) { animation-delay: 3s; }
.offer-slide:nth-child(3) { animation-delay: 6s; }

@keyframes offer-slide-show {
  0%, 28% { opacity: 1; transform: translateY(0); }
  33%, 94% { opacity: 0; transform: translateY(-20px); }
  95%, 100% { opacity: 0; transform: translateY(20px); }
}

.offer-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.offer-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(146, 64, 14, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.offer-dots .dot:nth-child(1) {
  animation: dot-pulse-1 9s infinite;
}

.offer-dots .dot:nth-child(2) {
  animation: dot-pulse-2 9s infinite;
}

.offer-dots .dot:nth-child(3) {
  animation: dot-pulse-3 9s infinite;
}

@keyframes dot-pulse-1 {
  0%, 28% { background: #b45309; transform: scale(1.2); }
  33%, 100% { background: rgba(146, 64, 14, 0.3); transform: scale(1); }
}

@keyframes dot-pulse-2 {
  0%, 32% { background: rgba(146, 64, 14, 0.3); transform: scale(1); }
  33%, 61% { background: #b45309; transform: scale(1.2); }
  66%, 100% { background: rgba(146, 64, 14, 0.3); transform: scale(1); }
}

@keyframes dot-pulse-3 {
  0%, 65% { background: rgba(146, 64, 14, 0.3); transform: scale(1); }
  66%, 94% { background: #b45309; transform: scale(1.2); }
  95%, 100% { background: rgba(146, 64, 14, 0.3); transform: scale(1); }
}

.offer-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: #b45309;
  line-height: 1.2;
  text-align: center;
}

@keyframes offer-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.offer-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc2626;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.offer-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #f59e0b;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.offer-icon svg {
  width: 28px;
  height: 28px;
}

.offer-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #92400e;
  flex-wrap: wrap;
}

.offer-prefix {
  font-size: 1rem;
  font-weight: 500;
  color: #92400e;
}

.offer-price {
  font-size: 3rem;
  font-weight: 800;
  color: #b45309;
  letter-spacing: -0.03em;
  line-height: 1;
}

.offer-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: #92400e;
}

.offer-description {
  font-size: 0.95rem;
  color: #78350f;
  font-weight: 500;
  line-height: 1.4;
}

.offer-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #b45309;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}

.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-sparkle {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.4rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1;
  margin: 16px 0 12px;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--text);
}

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

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text .hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stats .stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Platform Section */
.platform-section {
  padding: 80px 0;
  background: #fff;
}

.card {
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

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

/* About Section */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-content .about-text {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  gap: 20px;
}

.feature-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: #10b981;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-box h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feature-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background: #fff;
}

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

.news-card {
  background: var(--bg);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.news-date {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card h3 {
  font-size: 1.05rem;
  margin: 0 0 12px;
  line-height: 1.4;
  font-weight: 600;
}

.news-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0 0 16px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--text);
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 16px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-buttons .btn-light {
  color: var(--primary);
  background: #fff;
  border: none;
}

/* Metrics Section */
.metrics-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* Contact Quick Info */
.contact-quick-info {
  padding: 0 clamp(18px, 2vw, 28px) 40px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.quick-info-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0d8bd4 100%);
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
}

.quick-info-icon svg {
  width: 26px;
  height: 26px;
}

.quick-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-info-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.quick-info-value {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

/* Company Info Panel */
.company-info-panel {
  padding: 32px;
}

.company-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(11, 110, 169, 0.04);
  border: 1px solid rgba(11, 110, 169, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}

a.contact-item:hover {
  background: rgba(11, 110, 169, 0.08);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-item-value {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

/* Map Section */
.map-section {
  padding: 60px clamp(18px, 2vw, 28px);
  background: #fff;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-info-card {
  padding: 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.map-info-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  color: var(--text);
}

.map-info-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.map-info-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.map-info-card a:hover {
  text-decoration: underline;
}

.map-info-card .btn {
  margin-top: 16px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 clamp(18px, 2vw, 28px);
}

.metric-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease;
}

.metric-item:hover {
  transform: translateY(-4px);
}

.metric-item strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.metric-item span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 clamp(18px, 2vw, 28px);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.15rem;
  margin: 0 0 12px;
  font-weight: 600;
}

.process-step p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Testimonial Mini Section */
.testimonial-mini {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0 0 24px;
}

.testimonial-author-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-author-info span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  margin-top: 0;
  border-radius: 0;
  padding: 60px clamp(18px, 3vw, 40px) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr) 1fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 20px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 40px;
  }

  .hero-offer-side {
    justify-content: center;
    padding-right: 0;
  }

  .hero-offer-badge {
    max-width: 400px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .testimonial-grid,
  .news-grid,
  .metrics-grid,
  .process-grid,
  .quick-info-grid,
  .map-info {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .testimonial-grid,
  .news-grid,
  .metrics-grid,
  .process-grid,
  .quick-info-grid,
  .map-info {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .metric-item strong {
    font-size: 2.2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .quick-info-card {
    padding: 20px;
  }

  .quick-info-value {
    font-size: 1rem;
  }

  .map-info-card {
    padding: 20px;
  }
}

.reveal {
  opacity: 1;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

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

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .shot-large,
  .shot:nth-child(2),
  .shot:nth-child(3),
  .shot:nth-child(4),
  .shot:nth-child(5) {
    grid-column: span 6;
  }

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

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

  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .login-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 88px 18px auto 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn-secondary {
  background: #1f2937;
}

.header-actions .btn-primary {
  background: #0b6ea9;
}

  .metrics,
  .card-grid,
  .split,
  .cta-band,
  .contact-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .shot-large,
  .shot:nth-child(2),
  .shot:nth-child(3),
  .shot:nth-child(4),
  .shot:nth-child(5) {
    grid-column: span 12;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

@media (max-width: 560px) {
  .site-shell,
  .login-shell {
    padding-inline: 12px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    padding-inline: 6px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3rem);
  }

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

  .hero-stage-panel {
    left: 0;
    right: 0;
    height: 286px;
  }

  .hero-stage-card {
    width: 56%;
    height: 346px;
  }

  .floating-note {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  .note-call {
    left: 8px;
    bottom: 16px;
  }

  .note-route {
    right: 12px;
    bottom: 16px;
  }

  .login-card {
    padding: 24px;
  }

  .login-links {
    flex-direction: column;
  }

  .login-aside {
    padding: 24px;
  }
}
