/* Securite WordPress — HTML/CSS uniquement · univers anti-arnaque */
:root {
  --navy-deep: #121c32;
  --navy: #1a2744;
  --navy-mid: #243556;
  --navy-card: #1e3050;
  --cyan: #5ed4e8;
  --cyan-dark: #3ec6e0;
  --cyan-glow: rgba(94, 212, 232, 0.2);
  --purple: #9b7fe8;
  --purple-dim: rgba(155, 127, 232, 0.15);
  --white: #ffffff;
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* —— Logo chapeau + lunettes (réutilisable) —— */
.logo-mark {
  width: 56px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-mark--lg {
  width: min(140px, 40vw);
  height: auto;
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  background: rgba(18, 28, 50, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94, 212, 232, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name .tld {
  color: var(--cyan);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* Navigation — menu mobile sans JS (checkbox) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* Hors du flux : évite le double toggle au clic sur le burger */
.nav-check {
  position: fixed;
  top: -100px;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-desktop a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.nav-desktop a:hover {
  color: var(--cyan);
  opacity: 1;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cyan);
  line-height: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-check:checked ~ .nav-toggle .icon-open {
  display: none;
}

.nav-check:checked ~ .nav-toggle .icon-close {
  display: block;
}

.nav-panel {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.nav-check:checked ~ .nav-panel {
  display: flex;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  cursor: pointer;
  background: rgba(10, 16, 28, 0.88);
}

.nav-mobile {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  margin: 0;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(94, 212, 232, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(94, 212, 232, 0.08);
}

.nav-mobile li:last-child a {
  border-bottom: none;
  margin-top: 0.5rem;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--navy-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
  color: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(94, 212, 232, 0.45);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  padding: 7.5rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(94, 212, 232, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(155, 127, 232, 0.1) 0%, transparent 50%),
    var(--navy-deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--cyan-glow);
  border: 1px solid rgba(94, 212, 232, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--cyan);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(94, 212, 232, 0.2);
  background: var(--navy);
}

.hero-card--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy-deep) 100%);
}

.hero-logo {
  width: min(280px, 70vw);
  height: auto;
  object-fit: contain;
}

.hero-card-caption {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.why-visual--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy-deep) 100%);
}

.why-logo {
  width: min(260px, 80%);
  height: auto;
  object-fit: contain;
}

/* Séparations inclinées — 45 %, couleur avant + après, sens alternés */
.slant-divider {
  --slant-angle: 45%;
  position: relative;
  display: block;
  width: 100%;
  height: clamp(44px, 6vw, 80px);
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.slant-divider__from,
.slant-divider__to {
  position: absolute;
  inset: 0;
}

/* Sens A : bord bas gauche → haut droite (\) */
.slant-divider--dir-a .slant-divider__from {
  background: var(--slant-from);
  clip-path: polygon(0 0, 100% 0, 100% var(--slant-angle), 0 100%);
}

.slant-divider--dir-a .slant-divider__to {
  background: var(--slant-to);
  clip-path: polygon(0 100%, 100% var(--slant-angle), 100% 100%, 0 100%);
}

/* Sens B : bord bas droite → haut gauche (/) */
.slant-divider--dir-b .slant-divider__from {
  background: var(--slant-from);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 var(--slant-angle));
}

.slant-divider--dir-b .slant-divider__to {
  background: var(--slant-to);
  clip-path: polygon(0 var(--slant-angle), 100% 0, 100% 100%, 0 100%);
}

/* Paires de couleurs (section d'avant → section d'après) */
.slant-divider--deep-navy {
  --slant-from: var(--navy-deep);
  --slant-to: var(--navy);
}

.slant-divider--navy-mid {
  --slant-from: var(--navy);
  --slant-to: var(--navy-mid);
}

.slant-divider--mid-deep {
  --slant-from: var(--navy-mid);
  --slant-to: var(--navy-deep);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.section-header h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Services */
.services {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 212, 232, 0.1);
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(94, 212, 232, 0.35);
  transform: translateY(-3px);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-dim);
  border-radius: var(--radius);
  color: var(--purple);
  margin-bottom: 1.1rem;
}

.service-icon--cyan {
  background: var(--cyan-glow);
  color: var(--cyan);
}

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

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Tech */
.tech-strip {
  padding: 3.5rem 0;
  background: var(--navy-mid);
}

.tech-strip .section-header {
  margin-bottom: 1.75rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--navy-card);
  border: 1px solid rgba(94, 212, 232, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tech-badge svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.php-versions {
  margin-top: 1.5rem;
  text-align: center;
}

.php-versions span {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  margin: 0.15rem;
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  background: var(--cyan-glow);
  border: 1px solid rgba(94, 212, 232, 0.3);
  border-radius: 6px;
  color: var(--cyan);
  font-weight: 600;
}

/* Pricing */
#packs {
  background: var(--navy-deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.85rem;
  background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 212, 232, 0.12);
}

.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
  display: none;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  background: var(--cyan);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card.featured .pricing-badge {
  display: block;
}

.pricing-tier {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.pricing-hours {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pricing-price .amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-price .currency {
  font-size: 1.1rem;
  color: var(--cyan);
  font-weight: 700;
  margin-right: 0.15rem;
}

.pricing-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(94, 212, 232, 0.12);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
}

.pricing-features li.included {
  color: var(--text);
}

.pricing-features li.muted {
  opacity: 0.4;
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--cyan);
}

.pricing-features li.muted .check-icon {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

.compare-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Pourquoi */
#pourquoi {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(94, 212, 232, 0.15);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-glow);
  border-radius: var(--radius);
  color: var(--cyan);
}

.why-item-icon svg {
  width: 22px;
  height: 22px;
}

.why-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(94, 212, 232, 0.15);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-mail-fallback {
  margin-top: 1.25rem;
  font-size: 0.88rem;
}

.contact-mail-fallback a {
  font-weight: 600;
  font-size: 1rem;
}

.contact-mail-btn {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 280px;
}

.contact-form-wrap {
  position: relative;
}

.contact-form {
  padding: 1.75rem;
  background: var(--navy-card);
  border: 1px solid rgba(94, 212, 232, 0.2);
  border-radius: var(--radius-lg);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.contact-form.is-fading {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

.contact-form.is-hidden {
  display: none;
}

.form-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-alert--error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fca5a5;
}

.form-success {
  padding: 2.5rem 2rem;
  background: var(--navy-card);
  border: 1px solid rgba(94, 212, 232, 0.35);
  border-radius: var(--radius-lg);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.form-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-success svg {
  margin: 0 auto 1rem;
  color: var(--cyan);
}

.form-success h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--cyan);
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn-loading[hidden] {
  display: none;
}

.btn-text[hidden] {
  display: none;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.required {
  color: var(--cyan);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--navy-deep);
  border: 1px solid rgba(94, 212, 232, 0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235ed4e8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}

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

.btn-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pages retour formulaire */
.page-status {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  background: var(--navy-deep);
}

.page-status__card {
  max-width: 480px;
  padding: 2.5rem 2rem;
  background: var(--navy-card);
  border: 1px solid rgba(94, 212, 232, 0.25);
  border-radius: var(--radius-lg);
}

.page-status h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 1.25rem 0 0.75rem;
}

.page-status p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-status--success h1 {
  color: var(--cyan);
}

.page-status--error h1 {
  color: #f87171;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  background: var(--navy-deep);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--navy-mid);
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-copy {
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    text-align: center;
  }

  .contact-mail-btn {
    max-width: none;
  }

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

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

  .hero-visual {
    order: -1;
    max-width: 440px;
    margin-inline: auto;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5.5rem;
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

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