:root {
  color-scheme: dark;
  --bg-main: #050505;
  --bg-card: rgba(20, 20, 20, 0.92);
  --bg-card-highlight: rgba(30, 30, 30, 0.95);
  --accent: #ff2f3b;
  --accent-gradient: linear-gradient(135deg, #ff2f3b 0%, #ff7b33 100%);
  --gold: #f8e27f;
  --text-primary: #f5f5f5;
  --text-secondary: #d3d3d3;
  --badge-bg: rgba(255, 255, 255, 0.06);
  --rounded-xl: 28px;
  --rounded-lg: 22px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 16px 45px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #1b0923 0%, transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(255, 128, 55, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(122, 38, 255, 0.18) 0%, transparent 38%),
    var(--bg-main);
  color: var(--text-primary);
  min-height: 100%;
}
/* === LOCAL BEBAS NEUE === */
@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === LOCAL MANROPE === */
@font-face {
  font-family: "Manrope";
  src: url("/fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("img/PHOTO1.webp")
      center top / cover no-repeat,
    linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.85) 40%, rgba(5, 5, 5, 1) 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 70%);
  opacity: 0.45;
  z-index: -1;
}

.page-shell {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 32px 0 120px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--rounded-xl);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.brand-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  background: var(--accent-gradient);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: translateY(0);
}

.main-nav a.active {
  color: var(--text-primary);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(255, 95, 62, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 95, 62, 0.55);
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 42px;
  margin: 64px 0 84px;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 20px;
}

.hero-image {
  border-radius: var(--rounded-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(255, 59, 100, 0.35);
  min-height: 260px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 46, 180, 0.28) 0%, rgba(0, 0, 0, 0.4) 75%);
}

.hero-image.primary {
  background: url("/img/PHOTO1.webp")
    center / cover no-repeat;
  height: 360px;
}

.hero-image.secondary {
  width: 260px;
  height: 260px;
  margin-left: 48px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2d003a 0%, #1a0128 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.hero-image.secondary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.15);
  display: block;
}


.hero-content {
  background: rgba(12, 12, 12, 0.72);
  border-radius: var(--rounded-xl);
  padding: 48px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.badge-icon {
  font-size: 16px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 5.6vw, 68px);
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin: 0;
}

.hero h2 {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin: 22px 0 36px;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 96px;
}

.offer-card {
  background: var(--bg-card);
  border-radius: var(--rounded-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-card.featured {
  background: linear-gradient(180deg, rgba(41, 25, 58, 0.95) 0%, rgba(15, 15, 28, 0.95) 100%);
}

.offer-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.offer-logo img {
  width: 96px;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255, 128, 80, 0.35));
}

.offer-badge {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  text-transform: uppercase;
  text-transform: uppercase;
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-body h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.offer-button {
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 16px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 12px 38px rgba(255, 95, 62, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.offer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(255, 95, 62, 0.55);
}

.testimonials {
  background: rgba(12, 12, 12, 0.7);
  border-radius: var(--rounded-xl);
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  margin-bottom: 90px;
}

.testimonials-page {
  margin-top: 72px;
}

.aide-page {
  margin-top: 72px;
}

.quisommes-page {
  margin-top: 72px;
}

.ecrire-page {
  margin-top: 72px;
}

.policy-page {
  margin-top: 72px;
}

.page-title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-align: center;
}

.page-lead {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

.policy-site {
  color: var(--accent);
  font-weight: 600;
}

.testimonials h2,
.content-section h2,
.faq h2,
.contact h2 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(32px, 4.4vw, 48px);
  margin: 0 0 18px;
}

.testimonials p,
.content-section p,
.faq p,
.contact p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-header img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.testimonial-header h3 {
  margin: 6px 0 0;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars {
  letter-spacing: 4px;
  color: #ffd86e;
  font-size: 14px;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.content-section {
  background: rgba(12, 12, 12, 0.65);
  border-radius: var(--rounded-xl);
  padding: 60px 56px;
  margin-bottom: 90px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.content-section .info-block + .info-block {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
}

.info-block h3 {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-block p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.info-block ul {
  margin: 14px 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.info-block--faq {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.policy-section {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-section:first-of-type {
  border-top: none;
}

.policy-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(26px, 4vw, 32px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 12px 0 18px;
}

.policy-section h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(20px, 3.5vw, 26px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 22px 0 12px;
}

.policy-list {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.policy-highlight {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.policy-highlight a,
.policy-section a {
  color: var(--accent);
  text-decoration: none;
}

.policy-highlight a:hover,
.policy-section a:hover {
  text-decoration: underline;
}

.policy-table {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.policy-table-header,
.policy-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 16px;
  padding: 16px 22px;
}

.policy-table-header {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.policy-table-row + .policy-table-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-table-row span {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.policy-table-row a {
  color: var(--accent);
  text-decoration: none;
}

.policy-table-row a:hover {
  text-decoration: underline;
}

.policy-actions {
  margin-top: 48px;
  text-align: center;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(255, 95, 62, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(255, 95, 62, 0.55);
}

.team-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.team-card h4 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card span {
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.content-section.duplicate {
  margin-top: 90px;
}

.faq {
  background: rgba(12, 12, 12, 0.7);
  border-radius: var(--rounded-xl);
  padding: 60px 56px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border 0.3s ease, background 0.3s ease;
}

.faq-item.open {
  border-color: rgba(255, 95, 62, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.faq-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 16px;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.faq-toggle .icon {
  transition: transform 0.3s ease;
  font-size: 22px;
}

.faq-item.open .faq-toggle .icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.open .faq-body {
  padding-bottom: 22px;
}

.faq-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.faq-body ul {
  padding-left: 20px;
  margin: 12px 0;
  display: grid;
  gap: 8px;
}

.faq-body li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.contact {
  background: rgba(12, 12, 12, 0.7);
  border-radius: var(--rounded-xl);
  padding: 60px 56px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  margin-top: 90px;
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 20px;
  color: var(--text-primary);
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 95, 62, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 95, 62, 0.2);
}

.contact-form button {
  align-self: flex-start;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(255, 95, 62, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(255, 95, 62, 0.6);
}

.contact-form--standalone {
  max-width: 640px;
  margin: 48px auto 0;
}

.site-footer {
  margin-top: 120px;
  padding: 72px 56px 60px;
  border-radius: var(--rounded-xl);
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 42px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--text-primary);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-columns--wide {
  margin-bottom: 48px;
}

.footer-columns--wide .footer-card {
  min-height: 100%;
}

.footer-columns--narrow {
  margin-bottom: 36px;
}

.footer-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.footer-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

.footer-card ul {
  margin: 12px 0;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  display: grid;
  gap: 6px;
}

.footer-card p + p {
  margin-top: 14px;
}

.footer-card .badge {
  margin-bottom: 14px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-highlight {
  color: #ffd86e;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-hotline {
  text-align: center;
  margin: 24px auto 0;
  max-width: 620px;
}

.footer-legal {
  margin: 32px auto 0;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  padding: 28px 32px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.footer-logos {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-logos img {
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.footer-legal-icon {
  width: 48px;
  display: block;
  margin: 0 auto 18px;
}

.footer-legal p {
  margin: 0 0 16px;
}

.footer-meta {
  margin-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-note {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bar {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .page-shell {
    padding: 24px 0 90px;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }

  .brand-text {
    align-items: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-media {
    order: -1;
    margin-bottom: 16px;
  }

  .hero-image.secondary {
    margin-left: 0;
  }

  .hero-content {
    padding: 32px 28px;
    text-align: center;
  }

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

  .hero h1 {
    font-size: clamp(42px, 8vw, 56px);
  }

  .hero h2 {
    font-size: 17px;
  }

  .offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .offer-card {
    padding: 24px;
  }

  .offer-body h3 {
    font-size: 20px;
  }

  .testimonials,
  .content-section,
  .faq,
  .contact,
  .site-footer {
    padding: 44px 28px;
  }

  .footer-menu {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 92vw;
  }

  .hero-content,
  .testimonials,
  .content-section,
  .faq,
  .contact,
  .site-footer {
    padding: 30px 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero h2 {
    font-size: 15px;
  }

  .hero-badges span {
    font-size: 12px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-card {
    padding: 22px;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .footer-legal {
    padding: 22px 20px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(32px, 12vw, 42px);
  }

  .hero-seal {
    font-size: 11px;
    padding: 9px 14px;
  }

  .hero-badges {
    gap: 10px;
  }

  .offer-button {
    padding: 12px 18px;
  }
}


