/* === reset.css === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; border-spacing: 0; }


/* === variables.css === */
:root {
  /* Colors */
  --color-primary: #E63946;
  --color-primary-dark: #C1121F;
  --color-primary-light: #FFF0F1;
  --color-primary-glow: rgba(230, 57, 70, 0.15);
  --color-primary-glow-strong: rgba(230, 57, 70, 0.25);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 20px;
  --color-black: #1D1D1F;
  --color-gray-900: #2D2D2F;
  --color-gray-800: #424245;
  --color-gray-700: #6E6E73;
  --color-gray-500: #86868B;
  --color-gray-400: #AEAEB2;
  --color-gray-300: #D2D2D7;
  --color-gray-200: #E8E8ED;
  --color-gray-100: #F5F5F7;
  --color-white: #FFFFFF;
  --color-error: #FF3B30;
  --color-success: #34C759;
  --color-warning: #FF9500;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.5rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.6;

  /* Spacing */
  --section-py: 120px;
  --container-max: 1200px;
  --container-px: 24px;
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --duration-slow: 0.5s;
  --duration-slower: 0.8s;

  /* Nav Island */
  --nav-island-radius: 16px;
  --nav-island-bg: rgba(255, 255, 255, 0.06);
  --nav-island-bg-scrolled: rgba(255, 255, 255, 0.95);
  --hero-diagonal-color: rgba(230, 57, 70, 0.06);

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-nav: 1000;
  --z-overlay: 2000;
  --z-modal: 3000;
  --z-toast: 4000;
}


/* === base.css === */
body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-black);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  color: var(--color-gray-700);
  max-width: 680px;
}

strong { font-weight: var(--fw-semibold); }

a {
  transition: color var(--duration-fast) var(--ease-in-out);
}

a:hover {
  color: var(--color-primary);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-gray { color: var(--color-gray-500); }
.text-white { color: var(--color-white); }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-200);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  flex-wrap: wrap;
}

.breadcrumb__item a {
  color: var(--color-gray-500);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  color: var(--color-primary);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-400);
}

.breadcrumb__item:last-child {
  color: var(--color-black);
  font-weight: var(--fw-semibold);
}

/* Service Hero */
.service-hero {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.service-hero .section__title {
  font-size: var(--fs-4xl);
  color: var(--color-white);
}

.service-hero .section__subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-gray-400);
}

.service-hero .section__label {
  color: var(--color-primary);
}

/* Service Hero Decorative Elements */
.service-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero__diagonal {
  position: absolute;
  inset: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.03) 0%, rgba(230, 57, 70, 0.08) 50%, rgba(230, 57, 70, 0.03) 100%);
  pointer-events: none;
}

.service-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.service-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 57, 70, var(--particle-opacity, 0.2));
  animation: service-particle-float var(--particle-duration, 6s) ease-in-out var(--particle-delay, 0s) infinite alternate;
}

@keyframes service-particle-float {
  0% { transform: translateY(0) scale(1); opacity: var(--particle-opacity, 0.2); }
  100% { transform: translateY(-30px) scale(1.3); opacity: 0.05; }
}

/* Breadcrumb inside dark hero */
.service-hero .breadcrumb {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.service-hero .breadcrumb__list {
  color: var(--color-gray-500);
}

.service-hero .breadcrumb__item a {
  color: var(--color-gray-500);
}

.service-hero .breadcrumb__item a:hover {
  color: var(--color-primary);
}

.service-hero .breadcrumb__item:last-child {
  color: var(--color-gray-300);
}

.service-hero .breadcrumb__item:not(:last-child)::after {
  color: var(--color-gray-700);
}

.service-hero .section__header {
  position: relative;
  z-index: 1;
}

.service-hero .hero__actions {
  position: relative;
  z-index: 1;
}

/* ========== SERVICE FEATURES GRID ========== */
.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  margin-top: 2rem;
}

.service-feature {
  display: flex;
  gap: var(--gap-md);
  padding: var(--gap-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: all var(--duration-base) var(--ease-out);
}

.service-feature:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-light);
}

@media (hover: hover) {
  .service-feature:hover {
    transform: translateY(-2px);
  }
}

.service-feature__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.service-feature__icon svg {
  width: 22px;
  height: 22px;
}

.service-feature__content h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
  color: var(--color-black);
}

.service-feature__content p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
}

/* ========== SERVICE CHECKLIST ========== */
.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
  transition: background var(--duration-fast);
}

.service-checklist li:hover {
  background: var(--color-gray-100);
}

.service-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: var(--color-primary-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E63946' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ========== SERVICE CONTENT PROSE ========== */
.service-content h2 {
  margin-top: var(--gap-3xl);
  margin-bottom: var(--gap-lg);
  position: relative;
  padding-bottom: var(--gap-sm);
}

.service-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 2px;
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content h3 {
  margin-top: var(--gap-2xl);
  margin-bottom: var(--gap-md);
  font-size: var(--fs-xl);
}

.service-content p {
  margin-bottom: var(--gap-md);
}

/* Service content styles */
main ul, main ol {
  padding-left: 1.5rem;
}

main ul li, main ol li {
  color: var(--color-gray-700);
}


/* === layout.css === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

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

.section--dark p {
  color: var(--color-gray-400);
}

.section--gray {
  background-color: var(--color-gray-100);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--gap-3xl);
}

.section__label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--gap-md);
}

.section__title {
  margin-bottom: var(--gap-md);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-500);
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--gap-lg);
}

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

.flex {
  display: flex;
  align-items: center;
}

.flex--center {
  justify-content: center;
}

.flex--between {
  justify-content: space-between;
}

.flex--col {
  flex-direction: column;
}

.flex--gap-sm { gap: var(--gap-sm); }
.flex--gap-md { gap: var(--gap-md); }
.flex--gap-lg { gap: var(--gap-lg); }


/* === components.css === */
/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  padding: 14px 32px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--duration-base) var(--ease-out);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

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

.btn--primary:hover::before {
  opacity: 0.6;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

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

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.btn--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn--dark:hover {
  background-color: var(--color-gray-900);
  color: var(--color-white);
}

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

.btn--sm {
  padding: 10px 24px;
  font-size: var(--fs-sm);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--fs-lg);
}

.btn--full {
  width: 100%;
}

/* ========== CARDS ========== */
.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: var(--gap-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-base) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@supports (backdrop-filter: blur(1px)) {
  .card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
  }
}

/* ========== RIPPLE EFFECT ========== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ========== BADGES ========== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge--dark {
  background-color: var(--color-gray-900);
  color: var(--color-white);
}

/* ========== TOGGLE SWITCH ========== */
.toggle {
  display: inline-flex;
  align-items: center;
  background: var(--color-gray-200);
  border-radius: var(--radius-full);
  padding: 4px;
  position: relative;
}

.toggle__option {
  padding: 10px 24px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-gray-700);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  position: relative;
  z-index: 2;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

button.toggle__option {
  border: none;
  background: none;
  font-family: inherit;
  line-height: inherit;
}

.toggle__option--active {
  color: var(--color-white);
}

.toggle__slider {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background: var(--color-black);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  z-index: 1;
}

/* ========== FORM INPUTS ========== */
.form-group {
  margin-bottom: var(--gap-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin-bottom: var(--gap-xs);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-size: var(--fs-base);
  color: var(--color-black);
  background: var(--color-gray-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-in-out);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-input--error {
  border-color: var(--color-error);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: 4px;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ========== CHECKBOX / RADIO ========== */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-sm);
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-in-out);
}

.form-check:hover {
  background: var(--color-gray-100);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-check__label {
  font-size: var(--fs-base);
  color: var(--color-black);
}

.form-check__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: 2px;
}

/* ========== DIVIDER ========== */
.divider {
  height: 1px;
  background: var(--color-gray-200);
  border: none;
}


/* === animations.css === */
/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
  will-change: opacity, transform;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="scale-in"] {
  transform: scale(0.95);
}

[data-animate="slide-left"] {
  transform: translateX(40px);
}

[data-animate="slide-right"] {
  transform: translateX(-40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ========== NEW PREMIUM VARIANTS ========== */
[data-animate="zoom-in"] {
  transform: scale(0.85) translateY(20px);
}

[data-animate="rotate-in"] {
  transform: rotate(-3deg) translateY(30px);
}

[data-animate="blur-in"] {
  filter: blur(8px);
  transform: none;
}

[data-animate="blur-in"].is-visible {
  filter: blur(0);
}

/* Utility classes */
.animate-bounce { animation: bounce 2s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* ========== HERO MOCKUP ANIMATIONS ========== */
@keyframes morph-blob {
  0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
  20% { border-radius: 75% 25% 35% 65% / 55% 65% 35% 45%; }
  40% { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; }
  60% { border-radius: 30% 70% 55% 45% / 35% 55% 45% 65%; }
  80% { border-radius: 65% 35% 45% 55% / 50% 60% 40% 50%; }
}

@keyframes float-card-1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}

@keyframes float-card-2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-18px); }
}

@keyframes float-card-3 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes scroll-line-grow {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== HERO PULSE GLOW CTA ========== */
.hero__actions .btn--primary {
  animation: hero-pulse-glow 3s ease-in-out infinite;
}

@keyframes hero-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
  50% { box-shadow: 0 0 20px 8px rgba(230, 57, 70, 0.15); }
}

/* ========== TYPING CURSOR ========== */
.hero__title-accent {
  border-right: 2px solid var(--color-primary);
  animation: blink-cursor 0.8s step-end infinite;
  padding-right: 4px;
}

.hero__title-accent.typing-done {
  border-right: none;
  padding-right: 0;
  animation: none;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--color-primary); }
  50% { border-color: transparent; }
}

/* ========== TRUST SECTION ANIMATIONS ========== */
@keyframes stat-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.trust__stat-number.count-done {
  animation: stat-pop 0.4s var(--ease-out);
}

@keyframes card-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}


/* === nav.css === */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 0 24px;
  transition: top var(--duration-base) var(--ease-out);
}

.nav--with-banner {
  top: 64px;
}

.nav__island {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease-out);
}

.nav--scrolled .nav__island {
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  z-index: 10;
}

.nav__logo-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  transition: color var(--duration-base) var(--ease-out);
  letter-spacing: 0.05em;
}

.nav__logo-code {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  text-shadow:
    0 0 7px rgba(230, 57, 70, 0.8),
    0 0 20px rgba(230, 57, 70, 0.5),
    0 0 40px rgba(230, 57, 70, 0.3);
}

.nav--scrolled .nav__logo-text {
  color: var(--color-black);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--gap-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration-fast) var(--ease-in-out);
  position: relative;
  padding-top: 4px;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s var(--ease-out);
}

.nav__link:hover::before {
  transform: translateX(-50%) scale(1);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav--scrolled .nav__link {
  color: var(--color-gray-700);
}

.nav--scrolled .nav__link:hover {
  color: var(--color-primary);
}

.nav--scrolled .nav__link::before {
  background: var(--color-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.nav__cta {
  display: inline-flex;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--duration-base) var(--ease-out);
  border-radius: 2px;
}

.nav--scrolled .nav__hamburger span {
  background: var(--color-black);
}

.nav__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu - backdrop overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.nav__mobile-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu - right panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: rgba(29, 29, 31, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 32px 32px;
  flex-direction: column;
  z-index: var(--z-overlay);
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}

.nav__mobile--active {
  transform: translateX(0);
  pointer-events: auto;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--gap-xl);
}

.nav__mobile-link {
  display: block;
  padding: 16px 0;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), color var(--duration-fast);
}

.nav__mobile--active .nav__mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.nav__mobile--active .nav__mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile--active .nav__mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav__mobile--active .nav__mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile--active .nav__mobile-link:nth-child(4) { transition-delay: 0.2s; }
.nav__mobile--active .nav__mobile-link:nth-child(5) { transition-delay: 0.25s; }
.nav__mobile--active .nav__mobile-link:nth-child(6) { transition-delay: 0.3s; }
.nav__mobile--active .nav__mobile-link:nth-child(7) { transition-delay: 0.35s; }

.nav__mobile-link:hover {
  color: var(--color-primary);
}

.nav__mobile .btn--full {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out) 0.35s, transform 0.3s var(--ease-out) 0.35s;
}

.nav__mobile--active .btn--full {
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown Menu */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu ul,
.nav__dropdown-menu {
  list-style: none;
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}

.nav__dropdown-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
  transition: all var(--duration-fast) var(--ease-in-out);
}

.nav__dropdown-menu li:first-child a {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav__dropdown-menu a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), #FF6B7A);
  transition: width 0.1s linear;
  z-index: var(--z-nav);
}


/* === chatbot.css === */
/* ========== CHATBOT ========== */
.chatbot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-overlay);
  font-family: var(--font-family);
}

/* Trigger */
.chatbot__trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
}

.chatbot__trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.5);
}

.chatbot__trigger-icon--close {
  display: none;
}

.chatbot--open .chatbot__trigger-icon--chat {
  display: none;
}

.chatbot--open .chatbot__trigger-icon--close {
  display: block;
}

.chatbot__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #FF3B30;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: pulse 2s ease-in-out infinite;
}

.chatbot__badge--visible {
  display: flex;
}

/* Window */
.chatbot__window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  height: 520px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-base) var(--ease-out);
}

.chatbot--open .chatbot__window {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Header */
.chatbot__header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot__avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.chatbot__header-name {
  display: block;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.chatbot__header-status {
  display: block;
  font-size: var(--fs-xs);
  opacity: 0.8;
}

.chatbot__header-status::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #34C759;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.chatbot__close {
  color: rgba(255,255,255,0.8);
  transition: color var(--duration-fast) var(--ease-in-out);
  padding: 4px;
}

.chatbot__close:hover {
  color: white;
}

/* Messages */
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot__message {
  display: flex;
  gap: 8px;
  animation: fadeInUp 0.3s var(--ease-out);
}

.chatbot__message--bot {
  align-self: flex-start;
  max-width: 85%;
}

.chatbot__message--user {
  align-self: flex-end;
  max-width: 85%;
  flex-direction: row-reverse;
}

.chatbot__bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: var(--fs-sm);
  line-height: 1.5;
  word-break: break-word;
}

.chatbot__message--bot .chatbot__bubble {
  background: var(--color-gray-100);
  color: var(--color-black);
  border-bottom-left-radius: 4px;
}

.chatbot__message--user .chatbot__bubble {
  background: var(--color-primary);
  color: white;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chatbot__typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
}

.chatbot__typing-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gray-300);
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.chatbot__typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot__typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Quick Replies */
.chatbot__quick-replies {
  padding: 0 16px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chatbot__quick-btn {
  padding: 8px 16px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  background: var(--color-primary-light);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
  white-space: nowrap;
  animation: fadeInUp 0.3s var(--ease-out);
}

.chatbot__quick-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* WhatsApp Button in Chat */
.chatbot__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
  border: none;
  margin-top: 8px;
}

.chatbot__wa-btn:hover {
  background: #1DA851;
  transform: translateY(-1px);
}

/* Input Area */
.chatbot__input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.chatbot__input {
  flex: 1;
  padding: 10px 14px;
  font-size: var(--fs-sm);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-in-out);
  font-family: var(--font-family);
}

.chatbot__input:focus {
  border-color: var(--color-primary);
}

.chatbot__send {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
  flex-shrink: 0;
}

.chatbot__send:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}


/* === hero.css === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
}

.hero__diagonal {
  position: absolute;
  inset: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.03) 0%, rgba(230, 57, 70, 0.08) 50%, rgba(230, 57, 70, 0.03) 100%);
}

.hero__cursor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero__left {
  text-align: left;
}

.hero__badge {
  margin-bottom: var(--gap-lg);
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--gap-lg);
}

.hero__title-accent {
  display: inline-block;
  min-height: 1.2em;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FF6B7A 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-500);
  max-width: 520px;
  margin-bottom: var(--gap-2xl);
  line-height: var(--lh-normal);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

/* Right column - Mockups */
.hero__right {
  position: relative;
  height: 480px;
}

.hero__blob {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(230, 57, 70, 0.1);
  animation: morph-blob 8s ease-in-out infinite;
  filter: blur(40px);
  will-change: border-radius;
}

.hero__mockup {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.hero__mockup--1 {
  width: 280px;
  height: 200px;
  top: 10%;
  left: 8%;
  transform: rotate(-3deg);
  z-index: 3;
  animation: float-card-1 6s ease-in-out infinite;
}

.hero__mockup--2 {
  width: 220px;
  height: 160px;
  top: 45%;
  right: 5%;
  transform: rotate(5deg);
  z-index: 2;
  animation: float-card-2 7s ease-in-out infinite;
}

.hero__mockup--3 {
  width: 140px;
  height: 220px;
  bottom: 5%;
  left: 30%;
  transform: rotate(-6deg);
  z-index: 1;
  animation: float-card-3 8s ease-in-out infinite;
}

.hero__mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero__mockup-dot--red { background: #FF5F57; }
.hero__mockup-dot--yellow { background: #FFBD2E; }
.hero__mockup-dot--green { background: #27C93F; }

.hero__mockup-body {
  padding: 14px;
}

.hero__mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.hero__mockup-line--wide { width: 100%; }
.hero__mockup-line--medium { width: 70%; }
.hero__mockup-line--short { width: 45%; }

.hero__mockup-block {
  height: 50px;
  border-radius: 8px;
  background: rgba(230, 57, 70, 0.12);
  margin-top: 10px;
}

/* Scroll label */
.hero__scroll-label {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.hero__scroll-arrow {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  animation: scroll-arrow-bounce 1.8s ease-in-out infinite;
  transition: filter 0.4s ease;
}

.hero__scroll-label:hover .hero__scroll-arrow {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9))
         drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  animation: scroll-arrow-bounce-hover 0.8s ease-in-out infinite;
}

.hero__scroll-label:hover span {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

@keyframes scroll-arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes scroll-arrow-bounce-hover {
  0%   { transform: translateY(0) scale(1.3); }
  50%  { transform: translateY(10px) scale(1.5); }
  100% { transform: translateY(0) scale(1.3); }
}


/* === trust.css === */
/* ========== TRUST SECTION ========== */
.trust {
  position: relative;
  overflow: hidden;
}

/* ========== STATS GRID ========== */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-xl);
  margin-bottom: var(--gap-3xl);
}

/* ========== STAT CARD ========== */
.trust__stat {
  text-align: center;
  padding: var(--gap-2xl) var(--gap-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.trust__stat:hover {
  box-shadow: var(--shadow-card-hover);
}

@media (hover: hover) {
  .trust__stat:hover {
    transform: translateY(-6px);
  }
}

/* Shimmer on visible */
.trust__stat.is-visible::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: card-shimmer 1.2s var(--ease-out) 0.3s forwards;
  pointer-events: none;
  z-index: 1;
}

/* ========== STAT ICON ========== */
.trust__stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  color: var(--color-primary);
  transition: transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out);
}

.trust__stat:hover .trust__stat-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--color-primary-glow);
}

.trust__stat-icon svg {
  width: 24px;
  height: 24px;
}

/* ========== STAT VALUE ========== */
.trust__stat-value {
  margin-bottom: var(--gap-xs);
}

.trust__stat-number {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline;
}

.trust__stat-suffix {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.trust__stat-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: var(--gap-xs);
  font-weight: var(--fw-medium);
}

/* ========== ACCENT BAR ========== */
.trust__stat-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.trust__stat:hover .trust__stat-accent {
  transform: scaleX(1);
}

/* ========== CLIENTS SECTION ========== */
.trust__clients {
  text-align: center;
}

.trust__clients-label {
  font-size: var(--fs-2xl);
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--fw-bold);
  margin-bottom: var(--gap-2xl);
  position: relative;
  display: block;
  text-align: center;
  max-width: 100%;
}

.trust__clients-label em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  text-transform: none;
  font-size: 1.3em;
  letter-spacing: 0;
  color: var(--color-black);
}

.trust__clients-label::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 2px;
  margin: var(--gap-sm) auto 0;
}

/* ========== MARQUEE ========== */
.trust__marquee {
  overflow: hidden;
  position: relative;
  padding: var(--gap-lg) 0;
}

.trust__marquee::before,
.trust__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.trust__marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-gray-100), transparent);
}

.trust__marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-gray-100), transparent);
}

.trust__marquee-track {
  display: flex;
  gap: var(--gap-3xl);
  animation: trust-marquee 35s linear infinite;
  width: max-content;
  align-items: center;
}

.trust__marquee:hover .trust__marquee-track {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== LOGO ITEMS ========== */
.trust__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-sm) var(--gap-lg);
  color: var(--color-gray-400);
  filter: grayscale(100%) opacity(0.45);
  transition: filter var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  user-select: none;
}

.trust__logo:hover {
  filter: grayscale(0%) opacity(1);
  color: var(--color-gray-800);
  transform: scale(1.1);
}

.trust__logo img {
  width: auto;
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ========== FLOATING DECORATIONS ========== */
.trust__floating {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  opacity: 0.05;
}

.trust__floating--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -100px;
  right: -120px;
  animation: trust-float-1 8s ease-in-out infinite;
}

.trust__floating--2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--color-primary-dark) 0%, transparent 70%);
  bottom: -80px;
  left: -90px;
  animation: trust-float-2 10s ease-in-out infinite;
}

@keyframes trust-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.06); }
}

@keyframes trust-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.08); }
}


/* === ticker.css === */
.ticker {
  background: var(--color-gray-100);
  padding: 40px 0;
  position: relative;
}

/* ========== GOOGLE REVIEWS HEADER ========== */
.ticker__header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-xl);
  padding: 0 var(--container-px);
}

.ticker__google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-md);
  background: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.ticker__google-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.ticker__google-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-black);
}

.ticker__google-rating {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}

.ticker__google-stars {
  display: flex;
  gap: 1px;
}

.ticker__google-score {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  font-weight: var(--fw-medium);
}

/* ========== SCROLLING AREA ========== */
.ticker__scroll-area {
  overflow: hidden;
  position: relative;
}

.ticker__scroll-area::before,
.ticker__scroll-area::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker__scroll-area::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-gray-100), transparent);
}

.ticker__scroll-area::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-gray-100), transparent);
}

.ticker__track {
  display: flex;
  gap: var(--gap-xl);
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker__scroll-area:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__item {
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 300px;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: transform var(--duration-base) var(--ease-out);
}

.ticker__item:hover {
  box-shadow: var(--shadow-md);
}

@media (hover: hover) {
  .ticker__item:hover {
    transform: translateY(-2px);
  }
}

.ticker__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.ticker__text {
  font-size: var(--fs-sm);
  color: var(--color-black);
  line-height: var(--lh-normal);
  margin-bottom: 10px;
  font-style: italic;
}

.ticker__author {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  font-weight: var(--fw-medium);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* === benefits.css === */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  perspective: 1000px;
}

.benefits__card {
  padding: var(--gap-xl) var(--gap-lg);
  text-align: left;
  transform-style: preserve-3d;
  will-change: transform;
}

.benefits__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--gap-md);
  color: var(--color-primary);
}

.benefits__icon svg {
  width: 24px;
  height: 24px;
}

.benefits__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--gap-xs);
  color: var(--color-black);
}

.benefits__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
}


/* === pricing.css === */
.pricing__toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  margin-bottom: var(--gap-2xl);
}

.pricing__save-badge {
  opacity: 0.6;
  transition: opacity var(--duration-base) var(--ease-out);
}

.pricing__toggle-wrapper.annual-active .pricing__save-badge {
  opacity: 1;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  align-items: start;
}

.pricing__card {
  padding: var(--gap-xl);
  position: relative;
  overflow: visible;
}

.pricing__card--popular {
  border: 2px solid var(--color-primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

@media (hover: hover) {
  .pricing__card--popular:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

.pricing__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing__card-header {
  margin-bottom: var(--gap-lg);
}

.pricing__plan-name {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: 4px;
}

.pricing__plan-desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.pricing__price-wrapper {
  margin-bottom: var(--gap-lg);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--color-gray-200);
}

.pricing__price {
  display: flex;
  align-items: baseline;
}

.pricing__currency {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin-right: 2px;
}

.pricing__amount {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity var(--duration-fast) var(--ease-in-out);
}

.pricing__period {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-left: var(--gap-xs);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-xl);
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
}

.pricing__feature svg {
  flex-shrink: 0;
}

.pricing__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: var(--gap-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* === process.css === */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-xl);
  margin-bottom: var(--gap-3xl);
}

.process__step {
  text-align: left;
  padding: var(--gap-xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--duration-base) var(--ease-out);
}

.process__step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 201, 123, 0.2);
}

@media (hover: hover) {
  .process__step:hover {
    transform: translateY(-4px);
  }
}

.process__step-number {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
}

.process__step:hover .process__step-number {
  opacity: 0.7;
}

.process__step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--gap-xs);
}

.process__step-desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
}

.process__cta {
  text-align: center;
}


/* === faq.css === */
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  text-align: left;
  transition: color var(--duration-fast) var(--ease-in-out);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
  color: var(--color-gray-400);
}

.faq__item--active .faq__icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out),
              padding var(--duration-base) var(--ease-out);
}

.faq__item--active .faq__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
  max-width: none;
}


/* === contact.css === */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-black) 0%, #2A0A10 50%, var(--color-black) 100%);
  z-index: 0;
}

.contact__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-3xl);
  align-items: start;
}

.contact__title {
  font-size: var(--fs-4xl);
  color: var(--color-white);
  margin-bottom: var(--gap-md);
}

.contact__desc {
  font-size: var(--fs-lg);
  color: var(--color-gray-500);
  margin-bottom: var(--gap-2xl);
  max-width: 460px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--duration-base) var(--ease-out);
}

.contact__channel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 57, 70, 0.2);
  color: var(--color-white);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact__channel-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-medium);
}

.contact__channel-value {
  display: block;
  font-size: var(--fs-base);
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

.contact__form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--gap-2xl);
  box-shadow: var(--shadow-xl);
}

.contact__form .form-label {
  color: var(--color-black);
}

.contact__form .btn {
  margin-top: var(--gap-sm);
}


/* === blog.css === */
/* ========== BLOG HERO ========== */
.blog-hero {
  background: var(--color-black);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
}

.blog-hero__title {
  font-size: clamp(2rem, 5vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--gap-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.blog-hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-500);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

/* ========== BLOG GRID ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-xl);
}

/* ========== BLOG CARD ========== */
.blog-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--gap-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
}

.blog-card__read-time {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
}

.blog-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--gap-sm);
}

.blog-card__title a {
  color: var(--color-black);
  transition: color var(--duration-fast) var(--ease-in-out);
}

.blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
  flex: 1;
  margin-bottom: var(--gap-md);
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-gray-400);
  border-top: 1px solid var(--color-gray-200);
  padding-top: var(--gap-sm);
}

.blog-card__author {
  font-weight: var(--fw-medium);
  color: var(--color-gray-700);
}

/* ========== BLOG POST (SINGLE) ========== */
.blog-post__header {
  background: var(--color-black);
  padding: 160px 0 60px;
  position: relative;
}

.blog-post__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
}

.blog-post__header .container {
  position: relative;
}

.blog-post__breadcrumb {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-bottom: var(--gap-lg);
}

.blog-post__breadcrumb a {
  color: var(--color-gray-500);
  transition: color var(--duration-fast) var(--ease-in-out);
}

.blog-post__breadcrumb a:hover {
  color: var(--color-white);
}

.blog-post__breadcrumb span {
  margin: 0 8px;
  color: var(--color-gray-700);
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  margin-bottom: var(--gap-lg);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.blog-post__title {
  font-size: clamp(1.75rem, 4vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: var(--gap-md);
}

.blog-post__author {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

.blog-post__featured {
  margin-top: -40px;
  position: relative;
  z-index: 1;
  margin-bottom: var(--gap-2xl);
}

.blog-post__image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* Narrow container for post content */
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post__content {
  padding-bottom: var(--gap-3xl);
}

.blog-post__content h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin-top: var(--gap-2xl);
  margin-bottom: var(--gap-md);
}

.blog-post__content h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  margin-top: var(--gap-xl);
  margin-bottom: var(--gap-sm);
}

.blog-post__content p {
  font-size: var(--fs-base);
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: var(--gap-lg);
}

.blog-post__content ul,
.blog-post__content ol {
  padding-left: var(--gap-xl);
  margin-bottom: var(--gap-lg);
}

.blog-post__content li {
  font-size: var(--fs-base);
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: var(--gap-xs);
}

/* Blog Post CTA Box */
.blog-post__cta {
  padding: var(--gap-2xl) 0;
}

.blog-post__cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-xl);
  padding: var(--gap-2xl);
  text-align: center;
  color: var(--color-white);
}

.blog-post__cta-box h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--gap-sm);
}

.blog-post__cta-box p {
  font-size: var(--fs-base);
  opacity: 0.9;
  margin-bottom: var(--gap-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__cta-box .btn {
  background: var(--color-white);
  color: var(--color-primary);
}

.blog-post__cta-box .btn:hover {
  background: var(--color-gray-100);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Related Posts */
.blog-post__related {
  background: var(--color-gray-100);
}

.blog-post__related .section__title {
  text-align: center;
  margin-bottom: var(--gap-2xl);
}


/* === urgency-banner.css === */
.urgency-banner {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out);
}

.urgency-banner--hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.urgency-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-md);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 4px 24px rgba(230, 57, 70, 0.3);
  pointer-events: all;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.urgency-banner__pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: banner-shimmer 4s ease-in-out infinite;
}

@keyframes banner-shimmer {
  0%, 80%, 100% { left: -100%; }
  40% { left: 200%; }
}

.urgency-banner__text {
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.urgency-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.urgency-banner__cta {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease-in-out);
  white-space: nowrap;
}

.urgency-banner__cta:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.urgency-banner__close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-in-out);
  padding: 4px;
}

.urgency-banner__close:hover {
  color: var(--color-white);
}


/* === footer.css === */
.footer {
  background: var(--color-black);
  color: var(--color-gray-400);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--gap-2xl);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .nav__logo {
  margin-bottom: var(--gap-lg);
}

.footer__brand .nav__logo-text {
  color: var(--color-white);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--color-gray-500);
  max-width: 280px;
}

.footer__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--gap-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.footer__links li {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  transition: color var(--duration-fast) var(--ease-in-out);
}

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

.footer__links svg {
  flex-shrink: 0;
  color: var(--color-gray-500);
}

.footer__social {
  display: flex;
  gap: var(--gap-md);
  margin-top: var(--gap-sm);
}

.footer__social a {
  color: var(--color-gray-500);
  transition: color var(--duration-fast) var(--ease-in-out);
}

.footer__social a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
}

.footer__bottom a {
  color: var(--color-gray-500);
  transition: color var(--duration-fast) var(--ease-in-out);
}

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

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  z-index: var(--z-sticky);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-out);
}

.floating-cta--visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.5);
  color: var(--color-white);
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-sticky);
  transition: all var(--duration-base) var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}


/* === responsive.css === */
/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* ========== BELOW DESKTOP ========== */
@media (max-width: 1023px) {
  :root {
    --section-py: 80px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .nav__mobile-overlay {
    display: block;
  }

  .nav__actions {
    display: none;
  }

  .nav__island {
    padding: 10px 16px;
    position: relative;
    z-index: calc(var(--z-overlay) + 1);
  }

  /* Hero */
  .hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__left {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__right {
    height: 320px;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .hero__mockup--1 {
    width: 220px;
    height: 160px;
  }

  .hero__mockup--2 {
    width: 170px;
    height: 130px;
  }

  .hero__mockup--3 {
    width: 110px;
    height: 170px;
  }

  .hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero__subtitle {
    font-size: var(--fs-base);
  }

  /* Trust */
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-md);
  }

  .trust__stat-number {
    font-size: var(--fs-4xl);
  }

  .trust__marquee-track {
    gap: var(--gap-2xl);
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing__card--popular {
    transform: none;
  }

  @media (hover: hover) {
    .pricing__card--popular:hover {
      transform: translateY(-4px);
    }
  }

  /* Process */
  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-2xl);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-xl);
  }

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

/* ========== MOBILE (below 768px) ========== */
@media (max-width: 767px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  h2 { font-size: var(--fs-3xl); }
  h3 { font-size: var(--fs-2xl); }

  /* Service pages */
  .service-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .service-hero .section__title {
    font-size: clamp(1.75rem, 6vw, var(--fs-3xl));
  }

  .service-hero .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .service-hero .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }

  .section__header {
    margin-bottom: var(--gap-2xl);
  }

  /* Hero */
  .hero__content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero__scroll-label {
    display: none;
  }

  .hero__right {
    height: 250px;
  }

  .hero__mockup--1 {
    width: 180px;
    height: 130px;
  }

  .hero__mockup--2 {
    width: 140px;
    height: 110px;
  }

  .hero__blob {
    width: 220px;
    height: 220px;
  }

  .hero__cursor-glow {
    display: none;
  }

  /* Urgency Banner */
  .urgency-banner__pill {
    margin: 0 12px;
    padding: 8px 14px;
    gap: var(--gap-sm);
  }

  .urgency-banner__text {
    font-size: var(--fs-xs);
  }

  /* Mobile menu full width on small screens */
  .nav__mobile {
    width: 100%;
  }

  /* Ticker */
  .ticker__item {
    min-width: 260px;
    max-width: 300px;
    padding: 18px 20px;
  }

  /* Trust */
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-sm);
  }

  .trust__stat {
    padding: var(--gap-md) var(--gap-sm);
  }

  .trust__stat-number {
    font-size: var(--fs-3xl);
  }

  .trust__stat-icon {
    width: 40px;
    height: 40px;
  }

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

  .trust__marquee-track {
    gap: var(--gap-xl);
    animation-duration: 20s;
  }

  .trust__logo img {
    height: 38px;
    max-width: 120px;
  }

  .trust__floating {
    display: none;
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing__toggle-wrapper {
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .pricing__amount {
    font-size: var(--fs-4xl);
  }

  /* Process */
  .process__timeline {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  /* Contact */
  .contact__title {
    font-size: var(--fs-3xl);
  }

  .contact__form-wrapper {
    padding: var(--gap-xl);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .blog-post__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .blog-post__content p {
    font-size: var(--fs-sm);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--gap-sm);
    text-align: center;
  }

  /* Floating elements */
  .whatsapp-float {
    display: none;
  }

  .floating-cta {
    display: none;
  }

  .chatbot {
    bottom: 20px;
    right: 20px;
  }

  .chatbot__trigger {
    width: 54px;
    height: 54px;
  }

  .chatbot__window {
    position: fixed;
    width: auto;
    left: 16px;
    right: 16px;
    bottom: 86px;
    height: calc(100vh - 120px);
    border-radius: var(--radius-lg);
  }
}

/* ========== SMALL MOBILE (below 480px) ========== */
@media (max-width: 479px) {
  .hero__mockup--3 {
    display: none;
  }

  .hero__right {
    height: 200px;
  }

  .urgency-banner__text strong {
    display: none;
  }

  .chatbot__window {
    position: fixed;
    width: auto;
    left: 0;
    right: 0;
    bottom: 76px;
    height: calc(100dvh - 90px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}


