/* Azur Elec Dépannage — Site vitrine */

:root {
  --navy: #082653;
  --navy-light: #123b75;
  --azure: #149ddd;
  --azure-light: #63d2ff;
  --yellow: #ffc21a;
  --yellow-dark: #e5a900;
  --mint: #2dd4bf;
  --coral: #ff7a59;
  --white: #ffffff;
  --gray-50: #f6f8fb;
  --gray-100: #eaf0f7;
  --gray-200: #d8e2ee;
  --gray-500: #65758a;
  --gray-700: #334155;
  --gray-900: #111827;
  --surface: rgba(255, 255, 255, 0.86);
  --line: rgba(15, 40, 72, 0.11);
  --shadow-sm: 0 8px 22px rgba(8, 38, 83, 0.08);
  --shadow-md: 0 18px 45px rgba(8, 38, 83, 0.14);
  --shadow-lg: 0 28px 80px rgba(2, 18, 46, 0.24);
  --radius: 10px;
  --radius-lg: 18px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --header-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.2, 0.9, 0.2, 1.12);
  --transition: 0.32s var(--ease-out);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

ul { list-style: none; }

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn--accent {
  background: linear-gradient(135deg, #ffd24d 0%, var(--yellow) 55%, #f2a900 100%);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.32);
}

.btn--accent:hover {
  background: var(--yellow-dark);
  box-shadow: 0 6px 24px rgba(245, 184, 0, 0.5);
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy) 0%, #0c3b74 100%);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(8, 38, 83, 0.22);
}

.btn--primary:hover {
  background: var(--navy-light);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline.btn--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn--outline.btn--light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), height var(--transition);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(216, 226, 238, 0.8);
  box-shadow: 0 14px 38px rgba(8, 38, 83, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__brand img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(8, 38, 83, 0.12));
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__list a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--yellow));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition), transform var(--transition);
}

.nav__list a:hover {
  color: var(--azure);
}

.nav__list a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 194, 26, 0.08) 0%, transparent 28%),
    linear-gradient(145deg, #061a3b 0%, #082653 45%, #0d4a83 100%);
  color: var(--white);
  isolation: isolate;
  --hero-x: 50%;
  --hero-y: 35%;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(99, 210, 255, 0.24), transparent 28rem),
    linear-gradient(100deg, rgba(45, 212, 191, 0.14), transparent 34%),
    linear-gradient(285deg, rgba(255, 194, 26, 0.12), transparent 36%);
  transition: background-position 0.3s linear;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.05) 38% 39%, transparent 39% 100%),
    linear-gradient(290deg, transparent 0 62%, rgba(255, 194, 26, 0.08) 62% 63%, transparent 63% 100%);
  opacity: 0.9;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 210, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 210, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  animation: gridDrift 18s linear infinite;
}

.hero__glow {
  position: absolute;
  filter: blur(34px);
  opacity: 0.5;
  transform: rotate(-12deg);
}

.hero__glow--1 {
  width: 42vw;
  height: 11rem;
  background: linear-gradient(90deg, transparent, rgba(99, 210, 255, 0.28), transparent);
  top: 14%;
  right: -8%;
  animation: energySweep 8s var(--ease-out) infinite alternate;
}

.hero__glow--2 {
  width: 48vw;
  height: 9rem;
  background: linear-gradient(90deg, transparent, rgba(255, 194, 26, 0.22), transparent);
  bottom: 14%;
  left: -12%;
  animation: energySweep 10s var(--ease-out) infinite alternate-reverse;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

.hero__text h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
  text-wrap: balance;
  animation: heroCopyIn 0.9s var(--ease-out) both;
}

.hero__lead {
  font-size: 1.125rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 520px;
  animation: heroCopyIn 0.9s var(--ease-out) 0.12s both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(99, 210, 255, 0.32);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d9f6ff;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: heroCopyIn 0.8s var(--ease-out) both;
}

.badge::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: heroCopyIn 0.9s var(--ease-out) 0.22s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: heroCopyIn 0.9s var(--ease-out) 0.32s both;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  opacity: 0.92;
  padding: 0.5rem 0.72rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.hero__trust svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.hero__card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateX(0deg) rotateY(-4deg);
  animation: cardFloat 5.5s var(--ease-out) infinite alternate, heroCardIn 0.9s var(--ease-out) both;
}

.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent 38%, rgba(99, 210, 255, 0.1));
  opacity: 0.75;
  pointer-events: none;
}

.hero__card > * {
  position: relative;
}

.hero__card-icon {
  width: 64px;
  height: 64px;
  color: var(--azure-light);
  margin-bottom: 1.25rem;
}

.hero__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero__card-text {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.hero__card-phone {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--yellow);
  transition: opacity var(--transition), transform var(--transition);
}

.hero__card-phone:hover {
  opacity: 0.85;
  transform: translateX(4px);
}

/* Sections */
.section {
  position: relative;
  padding: 6rem 0;
}

.section--alt {
  background:
    linear-gradient(180deg, #f7faff 0%, #eef5fb 100%);
}

.section--cta {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 194, 26, 0.1), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #071d41 55%, #0a3b68 100%);
  color: var(--white);
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.45;
  pointer-events: none;
}

.section__header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--azure);
  margin-bottom: 0.75rem;
}

.section__label::before {
  content: '';
  width: 1.6rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section__label--light {
  color: var(--yellow);
}

.section__header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section--cta .section__header h2,
.section--cta h2 {
  color: var(--white);
}

.section__header p {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  inset: auto 1.25rem 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azure), var(--mint), var(--yellow));
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity var(--transition), transform var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 157, 221, 0.25);
  box-shadow: var(--shadow-md);
}

.card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.card--featured {
  border-color: var(--azure);
  box-shadow: var(--shadow-md);
  position: relative;
}

.card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azure), var(--yellow));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 168, 232, 0.1);
  color: var(--azure);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.card:hover .card__icon {
  transform: translateY(-2px) rotate(-3deg);
  background: rgba(20, 157, 221, 0.14);
}

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

.card__icon--yellow {
  background: rgba(245, 184, 0, 0.15);
  color: var(--yellow-dark);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card__list {
  margin-bottom: 1.25rem;
}

.card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--azure);
  font-weight: 700;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--azure);
  font-size: 0.9rem;
  transition: color var(--transition), transform var(--transition);
}

.card__link:hover {
  color: var(--navy);
  transform: translateX(4px);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1.08fr;
  gap: 2rem;
  align-items: start;
}

.pricing__main {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.88));
  border: 1px solid rgba(8, 38, 83, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-md);
}

.pricing__main::before {
  content: 'Urgence';
  position: absolute;
  top: 1.25rem;
  right: -2.2rem;
  padding: 0.35rem 2.8rem;
  background: linear-gradient(90deg, var(--yellow), #ffe08a);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(32deg);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing__main h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing__amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing__currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-500);
}

.pricing__includes {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing__features {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: rgba(246, 248, 251, 0.72);
  font-size: 0.88rem;
  color: var(--gray-500);
}

.pricing__features svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--gray-500);
  flex-shrink: 0;
}

.pricing__side {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing__row {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing__row::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--azure), var(--mint));
  opacity: 0;
  transition: opacity var(--transition);
}

.pricing__row:hover {
  transform: translateX(4px);
  border-color: rgba(8, 38, 83, 0.18);
  box-shadow: var(--shadow-sm);
}

.pricing__row:hover::before {
  opacity: 1;
}

.pricing__row--secondary {
  background: rgba(246, 248, 251, 0.72);
  border-color: rgba(216, 226, 238, 0.82);
}

.pricing__row--secondary::before {
  background: var(--gray-200);
}

.pricing__row--secondary h4,
.pricing__row--secondary .pricing__row-price {
  color: var(--gray-700);
}

.pricing__row h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.pricing__row p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.pricing__row-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.pricing__row-price--muted {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 600;
}

.pricing__footnote {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

/* Examples / Split */
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1.14fr;
  gap: 4rem;
  align-items: start;
}

.split__content {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.split__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.split__content p {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.examples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.examples__item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.examples__item:hover {
  transform: translateX(8px);
  border-color: var(--azure);
  box-shadow: var(--shadow-sm);
}

.examples__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #0d4a83);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(8, 38, 83, 0.18);
}

.examples__item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.examples__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.86));
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 157, 221, 0.2);
  box-shadow: var(--shadow-sm);
}

.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  font-size: 1.85rem;
  background: rgba(20, 157, 221, 0.08);
  border-radius: 16px;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Contact */
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info > p {
  opacity: 0.85;
  margin-bottom: 2rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-action {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.13), transparent 42%);
  opacity: 0;
  transition: opacity var(--transition);
}

.contact-action:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.contact-action:hover::before {
  opacity: 1;
}

.contact-action--primary {
  background: rgba(245, 184, 0, 0.15);
  border-color: rgba(245, 184, 0, 0.4);
}

.contact-action--primary:hover {
  background: rgba(245, 184, 0, 0.25);
  border-color: var(--yellow);
}

.contact-action__icon {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--yellow);
}

.contact-action--primary .contact-action__icon {
  background: var(--yellow);
  color: var(--navy);
}

.contact-action__icon svg {
  width: 22px;
  height: 22px;
}

.contact-action__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-action__body strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-action__body span {
  font-size: 0.85rem;
  opacity: 0.75;
}

.contact-action__arrow {
  position: relative;
  flex-shrink: 0;
  font-size: 1.25rem;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.contact-action:hover .contact-action__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.contact-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 194, 26, 0.12), transparent 36%, rgba(99, 210, 255, 0.09));
  pointer-events: none;
}

.contact-map__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-map__header p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.contact-map__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-200);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow);
  transition: opacity var(--transition);
}

.contact-map__link svg {
  width: 1rem;
  height: 1rem;
}

.contact-map__link:hover {
  opacity: 0.85;
}

.contact-action--whatsapp .contact-action__icon {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.contact-action--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.5);
}

.pricing__footnote a {
  color: var(--azure-light);
  text-decoration: underline;
}

.pricing__footnote a:hover {
  color: var(--yellow);
}

/* Footer */
.footer {
  background:
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 3rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 58px;
  margin-bottom: 0.75rem;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.footer__brand p {
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd75c, var(--yellow) 58%, #e7a500);
  color: var(--navy);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(245, 184, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: callPulse 2.7s var(--ease-out) infinite;
}

.fab svg {
  width: 26px;
  height: 26px;
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(245, 184, 0, 0.6);
}

/* Legal page */
.legal-page {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  min-height: 80vh;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-page a {
  color: var(--azure);
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--azure);
  font-weight: 600;
  margin-bottom: 2rem;
}

.legal-back:hover {
  color: var(--navy);
}

/* Not found page */
.not-found {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  padding-block: 4rem;
}

.not-found img {
  width: 200px;
  height: auto;
}

.not-found h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
}

.not-found p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Animations */
@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 60px 60px, 60px 60px;
  }
}

@keyframes energySweep {
  from {
    opacity: 0.28;
    transform: translateX(-2rem) rotate(-12deg);
  }
  to {
    opacity: 0.62;
    transform: translateX(2rem) rotate(-12deg);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: perspective(900px) translateY(28px) rotateX(8deg) rotateY(-9deg);
  }
  to {
    opacity: 1;
    transform: perspective(900px) translateY(0) rotateX(0deg) rotateY(-4deg);
  }
}

@keyframes cardFloat {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -12px;
  }
}

@keyframes callPulse {
  0%, 100% {
    box-shadow: 0 14px 34px rgba(245, 184, 0, 0.42), 0 0 0 0 rgba(255, 194, 26, 0.32);
  }
  58% {
    box-shadow: 0 18px 42px rgba(245, 184, 0, 0.5), 0 0 0 12px rgba(255, 194, 26, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out),
    filter 0.72s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.pricing__row.reveal,
.examples__item.reveal,
.contact-action.reveal {
  transform: translateX(-18px);
}

.pricing__row.reveal.visible,
.examples__item.reveal.visible,
.contact-action.reveal.visible {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 520px; }
  .hero__card { transform: none; animation: heroCardIn 0.9s var(--ease-out) both; }
  .pricing { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split__content { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
    transform: translateY(-120%) scale(0.98);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), opacity var(--transition);
  }

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

  .nav__list {
    flex-direction: column;
    gap: 1rem;
  }

  .header__cta { display: none; }
  .burger { display: flex; }

  .section { padding: 4.25rem 0; }
  .hero { align-items: flex-start; }
  .hero__content { padding-block: 3.25rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 0.75rem; }
  .hero__trust li { border-radius: var(--radius); }
  .hero__visual { display: none; }
  .pricing__row {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-action {
    align-items: flex-start;
  }
  .contact-action__arrow {
    display: none;
  }

  .features { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__links { text-align: left; }

  .fab {
    bottom: 1rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }
}

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

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