﻿@font-face {
  font-family: 'SF Pro';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local('SF Pro Display'), local('SF Pro Text'), local('SFProDisplay-Regular'), local('SFProText-Regular'),
    local('-apple-system');
}

:root {
  color-scheme: light;
  --font-sans: 'SF Pro', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'SF Pro', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --bg: #ffffff;
  --bg-2: #f2f7ff;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #0f172a;
  --muted: #475569;
  --brand-blue: #1b6cf0;
  --brand-green: #17a35b;
  --brand: var(--brand-blue);
  --brand-2: #1554c8;
  --accent: #eaf3ff;
  --accent-2: #e6f7ef;
  --line: #e2e8f0;
  --shadow: 0 30px 60px rgba(15, 20, 25, 0.12);
  --shadow-soft: 0 16px 40px rgba(15, 20, 25, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image: none;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  display: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  margin: 0;
  padding: 0 clamp(16px, 4vw, 72px);
}

.top-marquee {
  background: var(--brand-blue);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-marquee .container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-marquee .marquee {
  position: relative;
  height: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  perspective: 800px;
}

.top-marquee .marquee span {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) rotateY(-35deg);
  transform-style: preserve-3d;
  animation: marqueeSlide3d 20s infinite;
  will-change: transform, opacity;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.top-marquee .marquee span:nth-child(1) {
  animation-delay: 0s;
}

.top-marquee .marquee span:nth-child(2) {
  animation-delay: 4s;
}

.top-marquee .marquee span:nth-child(3) {
  animation-delay: 8s;
}

.top-marquee .marquee span:nth-child(4) {
  animation-delay: 12s;
}

.top-marquee .marquee span:nth-child(5) {
  animation-delay: 16s;
}

.top-marquee .marquee strong {
  color: #ffffff;
  font-weight: 800;
}

@keyframes marqueeSlide3d {
  0% {
    opacity: 0;
    transform: translateX(-55%) rotateY(-35deg);
  }
  10% {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
  26% {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
  36% {
    opacity: 0;
    transform: translateX(55%) rotateY(35deg);
  }
  100% {
    opacity: 0;
    transform: translateX(55%) rotateY(35deg);
  }
}

@keyframes marqueeSlideMobile {
  0% {
    opacity: 0;
    transform: translateX(-40%) rotateY(-18deg) scale(0.98);
  }
  12% {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
  28% {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
  40% {
    opacity: 0;
    transform: translateX(40%) rotateY(18deg) scale(0.98);
  }
  100% {
    opacity: 0;
    transform: translateX(40%) rotateY(18deg) scale(0.98);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: 20px;
  color: var(--brand-blue);
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-button {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--text);
}

.lang-button.is-active {
  background: var(--accent-2);
  color: var(--brand-green);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-soft);
}

.lang-button:focus {
  outline: 2px solid rgba(0, 113, 227, 0.3);
  outline-offset: 2px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.nav-cta {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27, 108, 240, 0.35);
  cursor: pointer;
  font-family: var(--font-sans);
  appearance: none;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--brand-2);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.section {
  padding: 84px 0;
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

main > section.section:nth-of-type(even) {
  background: #f8fbff;
}

#screens.section {
  background: #1b6cf0;
  color: #ffffff;
}

#screens .section-title h2,
#screens .section-title p,
#screens .eyebrow {
  color: #ffffff;
}

#screens .eyebrow {
  letter-spacing: 0.18em;
  opacity: 0.9;
}

#screens .section-title h2::after {
  background: #d5f7e4;
}

#screens .screen-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  border-radius: 10px;
}

#screens .screen-shot {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

#screens .screen-caption {
  color: #ffffff;
}

#categories.section {
  position: relative;
  background: #eef5ff;
  overflow: hidden;
}

#categories.section::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: rgba(27, 108, 240, 0.22);
  filter: blur(50px);
  z-index: 0;
}

#categories .container {
  position: relative;
  z-index: 1;
}

.section--solid,
.section--tunnel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  background: #ffffff;
}

.section--solid {
  background: #ffffff;
}

.section--solid-alt {
  background: #ffffff;
}

.section--cta {
  background: #ffffff;
}

.section--solid::before {
  display: none;
}

.section--tunnel {
  background: #ffffff;
}

.section--tunnel-alt {
  background: #ffffff;
}

.section--tunnel::before,
.section--tunnel::after {
  display: none;
}

.section--tunnel::before {
  top: -120px;
}

.section--tunnel::after {
  bottom: -120px;
}

.section--solid .container,
.section--tunnel .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 84px 0 70px;
  background: #f6f7fb;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 4.6rem);
  margin: 16px 0 20px;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--brand-blue);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 113, 227, 0.25);
}

.button-primary,
.button-primary:visited,
.button-primary:hover,
.button-primary:focus {
  color: #ffffff;
}

.button-primary:hover {
  transform: translateY(-1px);
  background: var(--brand-2);
}

.button-outline {
  border-color: var(--line);
  background: var(--surface);
  color: var(--brand-blue);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.store-badge svg {
  width: 22px;
  height: 22px;
}

.store-badge-apple {
  background: #f5f5f7;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 36px rgba(15, 20, 25, 0.14);
}

.store-badge-apple .store-text small {
  color: rgba(17, 17, 17, 0.6);
}

.store-badge-apple .store-text strong {
  color: #111111;
}

.store-badge.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.9;
}

.store-text {
  display: grid;
  line-height: 1.1;
}

.store-text small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.store-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -40% 20% auto auto;
  width: 240px;
  height: 240px;
  background: rgba(214, 232, 255, 0.7);
  border-radius: 50%;
}

.hero-card img {
  max-width: 280px;
  margin: 0 auto 24px;
}

.hero-slider {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 380px;
  backdrop-filter: none;
  position: relative;
  cursor: pointer;
}

.hero-overlay {
  display: none;
}

.hero-slider:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 4px;
}

.hero-slider,
.slider-viewport,
.slider-track {
  height: 100%;
}

.slider-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.slider-image.is-active {
  opacity: 1;
}

.slider-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  z-index: 2;
  color: var(--brand-blue);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slider-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: inherit;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
  position: relative;
  display: inline-block;
}

.hero h1,
.section-title h2,
.page-hero h1,
.cta h2,
.content h2 {
  color: var(--brand-blue);
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.hero h1,
.section-title h2,
.page-hero h1,
.cta h2,
.content h2 {
  color: var(--brand-blue);
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
  text-align: justify;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.property-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(15, 20, 25, 0.08);
  backdrop-filter: none;
}

.property-link {
  display: block;
  color: inherit;
}

.property-link:focus-visible .property-card {
  outline: 3px solid rgba(0, 113, 227, 0.35);
  outline-offset: 4px;
}

.property-photo {
  position: relative;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-image: var(--photo, none);
  background-color: rgba(27, 108, 240, 0.18);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.property-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.property-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #ffffff;
  z-index: 1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.property-info h3 {
  margin: 10px 0 6px;
  font-size: 1.1rem;
}

.property-info p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--brand-green);
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(15, 20, 25, 0.08);
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
}

.card p {
  text-align: justify;
}

.category-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(15, 20, 25, 0.08);
  display: grid;
  gap: 10px;
}

.category-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

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

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card:nth-child(even) .category-icon {
  background: var(--accent-2);
  color: var(--brand-green);
}

.card-grid .card,
.steps .step,
.stats .stat {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.card-grid .card,
.steps .step,
.stats .stat {
  border-top: 1px solid var(--line);
}

.card-grid .card:nth-child(even),
.steps .step:nth-child(even),
.stats .stat:nth-child(even) {
  border-top-color: var(--line);
}

.steps .step span {
  background: var(--accent);
  color: var(--brand-blue);
}

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

.step {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(15, 20, 25, 0.08);
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent);
  color: #243146;
  font-weight: 700;
  margin-bottom: 16px;
}

.step p {
  text-align: justify;
}

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  justify-items: center;
}

.screen-card {
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(15, 20, 25, 0.08);
  display: grid;
  gap: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.screen-shot {
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f6f4;
  border: 1px solid var(--line);
  position: relative;
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: floatY 7s ease-in-out infinite;
}

.screen-caption {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.screen-card:nth-child(2) .screen-shot img {
  animation-delay: 0.4s;
}

.screen-card:nth-child(3) .screen-shot img {
  animation-delay: 0.8s;
}

.screen-card:nth-child(4) .screen-shot img {
  animation-delay: 1.2s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes navBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  88% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(-3px);
  }
  96% {
    transform: translateY(0);
  }
  98% {
    transform: translateY(-1px);
  }
}

.trust {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 20, 25, 0.08);
  border-left: 4px solid var(--brand-blue);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trust-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(15, 20, 25, 0.06);
}

.trust p,
.trust-item p,
.content p,
.category-card p {
  text-align: justify;
}

.cta {
  background: #1b6cf0;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 34px rgba(15, 20, 25, 0.14);
  border: 1px solid rgba(27, 108, 240, 0.4);
}

.cta h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

.cta .button {
  background: #17a35b;
  color: #ffffff;
  border: none;
}

.cta-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.page-hero {
  padding: 80px 0 32px;
  margin: 0;
  border-radius: 0;
  background: rgba(234, 243, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 12px;
}

.content {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 20, 25, 0.08);
}

.content h2 {
  font-family: var(--font-display);
  margin-top: 32px;
  scroll-margin-top: 110px;
}

.content p,
.content li {
  color: var(--muted);
  line-height: 1.7;
}

.content a {
  color: var(--brand-blue);
  font-weight: 600;
}

.content a:hover,
.content a:focus {
  color: var(--brand-green);
}

.content .button-primary,
.content .button-primary:hover,
.content .button-primary:focus {
  color: #ffffff;
}

.content ul {
  padding-left: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.contact-actions {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.contact-actions .button-primary {
  color: #ffffff;
}

.social-block h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}

.social-handle {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 20, 25, 0.08);
  backdrop-filter: none;
}

.contact-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card [data-email-link],
.contact-card a[href^='mailto:'],
.content [data-email-link] {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.contact-card [data-email-link]:hover,
.contact-card [data-email-link]:focus,
.contact-card a[href^='mailto:']:hover,
.contact-card a[href^='mailto:']:focus,
.content [data-email-link]:hover,
.content [data-email-link]:focus {
  color: var(--brand-green);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form button {
  justify-content: center;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #0b7a3b;
}

.form-status.is-error {
  color: #c0392b;
}

.side-form-open {
  overflow: hidden;
}

.side-form {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.side-form.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-form-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.45);
  border: none;
  cursor: pointer;
}

.side-form-panel {
  position: relative;
  width: min(420px, 92vw);
  height: 100%;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.side-form.is-open .side-form-panel {
  transform: translateX(0);
}

.side-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.side-form-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.site-footer {
  padding: 40px 0 44px;
  color: #e6f0ff;
  background: #1b6cf0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
}

.site-footer .brand span {
  color: #ffffff;
}

.site-footer a {
  color: #ffffff;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #d5f7e4;
}

.site-footer .social-link {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: #dbeafe;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--brand-green);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.footer-meta a {
  color: #ffffff;
  font-weight: 600;
}

.icon {
  width: 16px;
  height: 16px;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-actions .icon {
  width: 22px;
  height: 22px;
}

.floating-actions a.whatsapp {
  background: #25d366;
}

.floating-actions a.email {
  background: var(--brand);
}

.word {
  display: inline-block;
  color: inherit;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--word-delay, 0ms);
}

.reveal [data-animate-words] .word {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-visible [data-animate-words] .word {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section {
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal[data-animate-words] {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-section {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .top-marquee .marquee span {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .top-marquee .marquee span:first-child {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .category-grid,
  .steps,
  .screens,
  .trust-list,
  .footer-grid,
  .contact-grid,
  .property-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-items: start;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open {
    max-height: 420px;
    padding: 16px 20px 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .nav-bar {
    padding: 14px 0;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 64px 0;
  }

  main > section.section {
    margin: 12px 8px;
    border-radius: 22px;
    box-shadow: 0 10px 20px rgba(15, 20, 25, 0.1);
    overflow: hidden;
  }

  #screens.section,
  #why.section {
    box-shadow: none;
  }

  .hero {
    padding: 16px 0 24px;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-slider {
    order: 1;
    min-height: 52vh;
    height: 52vh;
    max-height: 420px;
    border-radius: 24px;
  }

  .hero-overlay {
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 16px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(15, 20, 25, 0.16);
    backdrop-filter: blur(10px);
    z-index: 3;
  }

  .hero-overlay p {
    margin: 0;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  }

  .hero-content {
    order: 2;
    margin-top: -36px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
    position: relative;
    z-index: 2;
  }

  .section-title h2 {
    font-size: clamp(1.9rem, 7.2vw, 2.5rem);
  }

  .card,
  .category-card,
  .step,
  .stat,
  .property-card,
  .trust,
  .trust-item,
  .contact-card,
  .content {
    border-radius: 22px;
  }

  .screen-card {
    border-radius: 10px;
  }


  .hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin: 14px 0 12px;
  }

  .slider-image {
    object-position: top center;
  }

  .slider-caption {
    display: none;
  }

  #categories .section-title h2 {
    font-size: clamp(2rem, 8.2vw, 2.6rem);
  }

  #categories .section-title p {
    font-size: 1rem;
  }

  #categories .category-card {
    padding: 22px;
  }

  #categories .category-icon {
    width: 56px;
    height: 56px;
    font-size: 0.9rem;
  }

  .page-hero {
    margin: 0;
    border-radius: 0;
    padding: 64px 0 24px;
  }

  .store-links {
    width: 100%;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .stats {
    margin-top: 18px;
  }

  .screens {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .screen-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    padding: 16px;
    border-radius: 20px;
  }

  .screens::-webkit-scrollbar {
    display: none;
  }

  .screens {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body::-webkit-scrollbar {
    display: none;
  }

  body {
    scrollbar-width: none;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .reveal [data-animate-words] .word {
    transform: translateY(8px);
  }

  .section--solid,
  .section--tunnel {
    margin: 40px 12px;
    border-radius: 28px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-title p {
    max-width: none;
  }

  .section--tunnel::before,
  .section--tunnel::after {
    height: 140px;
  }

  .section--tunnel::before {
    top: -90px;
  }

  .section--tunnel::after {
    bottom: -90px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .content {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen-card,
  .screen-shot img,
  .nav-cta,
  .word {
    animation: none;
    transition: none;
    transform: none;
  }
}
#why.section {
  background: #e6f7ef;
  color: var(--text);
}

#why .section-title h2,
#why .section-title p,
#why .eyebrow {
  color: var(--text);
}

#why .section-title h2::after {
  background: var(--brand-green);
}

#why .card {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

#why .card h3 {
  color: var(--text);
}

#why .card p {
  color: var(--muted);
}
