/* ===== VARIABLES CSS ===== */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --background-light: #eef6ff;
  --background-white: #ffffff6f;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ===== DARK MODE VARIABLES ===== */
[data-theme="dark"] {
  --primary-color: #818cf8;
  --primary-dark: #6366f1;
  --secondary-color: #f472b6;
  --accent-color: #d3349e;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;
  --background-light: #11182700;
  --background-white: #0a022e;
  --border-color: #374151;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6);
}

/* ===== RESET & BASE ===== */


body {
  color: var(--text-primary);
  background-color: none;
  transition: var(--transition-default);
}

[data-theme="dark"] body {
  background-color: var(--background-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ===== TYPOGRAPHY ===== */
.private-gallery-landing h1,
.private-gallery-landing h2,
.private-gallery-landing h3,
.private-gallery-landing h4,
.private-gallery-landing h5,
.private-gallery-landing h6 {
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.private-gallery-landing h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.private-gallery-landing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.private-gallery-landing h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.private-gallery-landing p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 1.1rem;
}


/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-default);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--background-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
  background: var(--background-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== ICONS ===== */
[class^="icon-"]::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: var(--spacing-xs);
}

.icon-shield::before { content: '\f3ed'; }
.icon-download::before { content: '\f019'; }
.icon-mobile::before { content: '\f3cd'; }
.icon-select::before { content: '\f046'; }
.icon-download-cloud::before { content: '\f0ed'; }
.icon-heart::before { content: '\f004'; }
.icon-users::before { content: '\f0c0'; }
.icon-quality::before { content: '\f005'; }
.icon-lock::before { content: '\f023'; }
.icon-design::before { content: '\f53f'; }
.icon-key::before { content: '\f084'; }
.icon-time::before { content: '\f017'; }
.icon-share::before { content: '\f064'; }
.icon-info::before { content: '\f05a'; }
.icon-responsive::before { content: '\f3fa'; }
.icon-speed::before { content: '\f0e7'; }
.icon-cloud-security::before { content: '\f6f3'; }
.icon-ui::before { content: '\f5fd'; }
.icon-gallery::before { content: '\f03e'; }
.icon-message::before { content: '\f4ad'; }
.icon-unlock::before { content: '\f09c'; }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin: var(--spacing-sm) auto 0;
  border-radius: var(--radius-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
  color: var(--text-primary);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.65fr;
  align-items: center;
  gap: var(--spacing-2xl);
  position: relative;
}
.fondzindex2reglage1 {
  margin-top: -350px !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  z-index: 0;
  position: relative;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 10px;
  color: #6943f8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-eyebrow {
  text-align: center;
}

.section-intro {
  max-width: 780px;
  margin: -10px auto 30px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.hero-title {
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  margin-top: 0;
}

.hero-title.hero-title--translated {
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #4824fb, #6600ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-title .highlight {
  background: linear-gradient(135deg, #7155ff, #9148ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  max-width: 540px;
}
@media (max-width: 508px) {
.hero-subtitle {
  font-size: 13px;
}
.hero-title {
  margin-top: 0px;
}
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: linear-gradient(135deg, #5b6ff3, #3f2fa0);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid #2c2f4f;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-badge span {
  min-width: 0;
  overflow-wrap: anywhere;
}

[data-theme="dark"] .feature-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
}

.desktop-preview, .mobile-preview {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-default);
}

.desktop-preview {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-mobile {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}

.mobile-preview {
  max-width: 230px;
  width: 100%;
  height: auto;
}

.desktop-preview:hover, .mobile-preview:hover {
  transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

[data-theme="dark"] .features-section {
  background: var(--background-light);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(236, 72, 153, 0.12), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(99, 102, 241, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(129, 140, 248, 0.18);
  box-shadow: 0 26px 70px rgba(79, 70, 229, 0.12);
}

[data-theme="dark"] .experience-layout {
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 114, 182, 0.14), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(129, 140, 248, 0.18), transparent 42%),
    rgba(10, 2, 46, 0.72);
  border-color: rgba(129, 140, 248, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.experience-preview {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.1));
  box-shadow: 0 22px 46px rgba(79, 70, 229, 0.18);
}

.experience-preview picture {
  display: block;
}

[data-theme="dark"] .experience-preview {
  border-color: rgba(244, 114, 182, 0.28);
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.14), rgba(244, 114, 182, 0.12));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.experience-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* ===== DEMO GALERIE PREMIUM ===== */
.premium-gallery-showcase {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 48px;
  padding: 48px 20px;
  scroll-margin-top: 96px;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(167, 139, 250, 0.22), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(244, 114, 182, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.95);
  color: rgba(25, 20, 35, 0.88);
  border-top: 1px solid rgba(112, 0, 139, 0.12);
  border-bottom: 1px solid rgba(112, 0, 139, 0.12);
  box-sizing: border-box;
}

.premium-gallery-showcase *,
.premium-gallery-showcase *::before,
.premium-gallery-showcase *::after {
  box-sizing: border-box;
}

.premium-gallery-showcase__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(430px, 1.14fr);
  gap: 36px;
  align-items: center;
}

.premium-gallery-copy {
  display: grid;
  gap: 18px;
}

.premium-gallery-copy__eyebrow {
  margin: 0;
  color: rgba(22, 12, 40, 0.75);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-gallery-copy h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.35rem);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
  background: linear-gradient(90deg, #6943f8 0%, #ff6fb7 50%, #7f37ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.premium-gallery-copy p {
  margin: 0;
  max-width: 58ch;
  color: rgba(25, 20, 35, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}

.premium-gallery-test-callout {
  display: inline-grid;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(105, 67, 248, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 255, 0.98)),
    radial-gradient(circle at top left, rgba(255, 111, 183, 0.18), transparent 52%);
  box-shadow: 0 14px 34px rgba(105, 67, 248, 0.12);
}

.premium-gallery-test-callout > span {
  color: #6943f8;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-gallery-test-callout strong {
  color: rgba(22, 12, 40, 0.94);
  font-size: 0.98rem;
  font-weight: 850;
}

.premium-gallery-test-code {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.premium-gallery-test-code strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.demo-code-copy {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(105, 67, 248, 0.24);
  border-radius: 12px;
  color: #6943f8;
  background: #fff;
  box-shadow: 0 8px 18px rgba(105, 67, 248, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.demo-code-copy:hover,
.demo-code-copy:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(105, 67, 248, 0.22);
}

.demo-code-copy:focus-visible {
  outline: 3px solid rgba(105, 67, 248, 0.24);
  outline-offset: 2px;
}

.demo-code-copy.is-copied {
  color: #fff;
  background: #22a66f;
}

.demo-code-copy svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.demo-code-copy__feedback {
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  width: max-content;
  padding: 5px 8px;
  border-radius: 7px;
  color: #fff;
  background: #221937;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.demo-code-copy.is-copied .demo-code-copy__feedback {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .premium-gallery-test-callout {
    box-sizing: border-box;
    width: 100%;
  }

  .premium-gallery-test-code {
    justify-content: space-between;
  }

  .premium-gallery-test-code strong {
    font-size: 0.9rem;
  }
}

.premium-gallery-benefits {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.premium-gallery-benefits li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 14px;
  border: 1.5px solid rgba(194, 170, 224, 0.55);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 247, 252, 0.95), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top left, rgba(176, 145, 255, 0.16), transparent 48%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 4px 12px rgba(94, 63, 143, 0.06);
}

.premium-gallery-benefits li > span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(105, 67, 248, 0.10);
  color: #6943f8;
  font-size: 0.8rem;
  font-weight: 850;
}

.premium-gallery-benefits strong {
  color: rgba(22, 12, 40, 0.96);
  font-size: 1rem;
  font-weight: 850;
}

.premium-gallery-benefits small {
  color: rgba(25, 20, 35, 0.66);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
}

.gallery-weight-proof {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 18px;
  border: 1.5px solid rgba(105, 67, 248, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249, 244, 255, 0.98), rgba(255, 247, 251, 0.98));
  box-shadow: 0 14px 34px rgba(105, 67, 248, 0.09);
}

.gallery-weight-proof__eyebrow {
  margin: 0 !important;
  color: #6943f8 !important;
  font-size: 0.7rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.gallery-weight-proof h3 {
  margin: 0;
  color: rgba(22, 12, 40, 0.96);
  font-size: 1.12rem;
  line-height: 1.3;
}

.gallery-weight-proof > p:not(.gallery-weight-proof__eyebrow):not(.gallery-weight-proof__result) {
  font-size: 0.88rem;
  line-height: 1.55;
}

.gallery-weight-proof__comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.gallery-weight-proof__comparison > span {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.gallery-weight-proof__comparison small {
  color: rgba(25, 20, 35, 0.58);
  font-size: 0.72rem;
  font-weight: 750;
}

.gallery-weight-proof__comparison strong {
  color: rgba(22, 12, 40, 0.96);
  font-size: 0.98rem;
}

.gallery-weight-proof__comparison > b,
.gallery-weight-proof__result {
  color: #6943f8 !important;
  font-weight: 850;
}

.gallery-weight-proof__result {
  margin: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
}

.premium-gallery-showcase--real {
  background:
    linear-gradient(135deg, rgba(255, 249, 245, 0.98), rgba(255, 255, 255, 0.94)),
    #fff9f5;
}

.smart-gallery-section {
  position: relative;
  z-index: 2;
  padding: 58px 0;
  scroll-margin-top: 120px;
  background:
    radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.16), transparent 38%),
    radial-gradient(circle at 100% 8%, rgba(236, 72, 153, 0.14), transparent 34%),
    rgba(246, 244, 255, 0.78);
}

.smart-gallery-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.smart-gallery-heading p {
  margin: 0 0 8px;
  color: #6943f8;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.smart-gallery-heading h2 {
  margin: 0;
  color: rgba(22, 12, 40, 0.94);
  font-size: clamp(1.65rem, 1.25rem + 1.55vw, 2.5rem);
  line-height: 1.12;
}

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

.smart-gallery-card {
  min-height: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(129, 140, 248, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 40%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 56px rgba(79, 70, 229, 0.13);
}

.smart-gallery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f55e8, #ec4899);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(122, 75, 230, 0.25);
}

.smart-gallery-card h3 {
  margin: 0 0 20px;
  color: rgba(22, 12, 40, 0.94);
  font-size: clamp(1.35rem, 1rem + 1.2vw, 2rem);
  line-height: 1.18;
}

.smart-gallery-card p {
  margin: 0;
  color: rgba(44, 38, 58, 0.70);
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.22rem);
  font-weight: 650;
  line-height: 1.55;
}

.premium-gallery-real-demo {
  min-width: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.premium-gallery-real-frame {
  position: relative;
  overflow: hidden;
  width: min(430px, 100%);
  height: min(860px, calc(100svh - 200px));
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background: #111116;
  box-shadow:
    0 34px 84px rgba(68, 42, 48, 0.24),
    0 12px 34px rgba(8, 8, 18, 0.28);
}

.premium-gallery-real-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #111116;
  transform: translateX(-50%);
  pointer-events: none;
}

.premium-gallery-real-frame::after {
  content: "";
  position: absolute;
  top: 126px;
  right: -4px;
  width: 4px;
  height: 78px;
  border-radius: 0 999px 999px 0;
  background: rgba(8, 8, 18, 0.78);
  pointer-events: none;
}

.premium-gallery-real-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 34px;
  background: #ffffff;
}

.premium-gallery-real-demo__hint {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(105, 67, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(36, 27, 31, 0.68);
  font-size: 0.86rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(105, 67, 248, 0.1);
}

.premium-gallery-real-demo__hint strong {
  color: #666fec;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.container-fondzindex2 {
  pointer-events: none;
}

.gallery-tutorials {
  display: grid;
  gap: 28px;
}

.gallery-tutorial-card {
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(129, 140, 248, 0.20);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(236, 72, 153, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 56px rgba(79, 70, 229, 0.12);
}

.gallery-tutorial-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  text-align: center;
}

.gallery-tutorial-head span {
  justify-self: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(105, 67, 248, 0.10);
  color: #6943f8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-tutorial-head h3 {
  margin: 0;
  color: rgba(22, 12, 40, 0.94);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.8rem);
}

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

.gallery-tutorial-steps--email {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-tutorial-step {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.gallery-tutorial-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 12px;
  right: -13px;
  color: #6943f8;
  font-size: 1.2rem;
  font-weight: 850;
  opacity: 0.55;
}

.gallery-tutorial-step-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.gallery-tutorial-step-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6943f8, #ec4899);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 850;
}

.gallery-tutorial-step-head p {
  margin: 0;
  color: rgba(25, 20, 35, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.gallery-tutorial-step img {
  display: block;
  width: 100%;
  border: 1px solid rgba(194, 170, 224, 0.65);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(94, 63, 143, 0.12);
}

.feature-card {
  background: var(--background-white);
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(79, 70, 229, 0.14);
  text-align: left;
  transition: var(--transition-default);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 18px 44px rgba(79, 70, 229, 0.18);
}

[data-theme="dark"] 
.feature-card {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .feature-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  color: white;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.18;
}

.feature-card p {
  font-size: 0.82rem;
  line-height: 1.38;
  margin-bottom: 0;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-white);
  scroll-margin-top: 120px;
}

[data-theme="dark"] .how-it-works-section {
  background: #0f172a;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: var(--background-light);
  border-radius: var(--radius-xl);
  position: relative;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

[data-theme="dark"] .step {
  background: var(--background-white);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.step-visual {
  margin-top: var(--spacing-md);
}

.email-preview, .functions-preview {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-default);
}

.email-preview:hover, .functions-preview:hover {
  transform: scale(1.02);
}

/* ===== TECHNICAL SECTION ===== */
.technical-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background-light);
}

[data-theme="dark"] .technical-section {
  background: var(--background-light);
}

.technical-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.tech-feature {
  background: var(--background-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-default);
  border: 1px solid var(--border-color);
}

.tech-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .tech-feature {
  background: var(--background-white);
  border: 1px solid var(--border-color);
}

.tech-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-color), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(95deg, #f0d5ff 0%, #6153ff 100%);
  color: rgb(0, 0, 0);
  text-align: center;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(95deg, #4c1d95 0%, #3730a3 100%);
  color: white;
}

.cta-content h2 {
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: var(--spacing-xl);
  font-size: 1.2rem;
}

[data-theme="dark"] .cta-content p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

[data-theme="dark"] .cta-note {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SEO SECTION ===== */
.seo-section {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(236, 72, 153, 0.12), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(99, 102, 241, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 255, 0.92));
}

[data-theme="dark"] .seo-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 114, 182, 0.13), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(129, 140, 248, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(10, 2, 46, 0.94), rgba(17, 24, 39, 0.92));
}

.seo-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(129, 140, 248, 0.20);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 253, 0.72)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(79, 70, 229, 0.12);
}

[data-theme="dark"] .seo-content {
  background:
    linear-gradient(135deg, rgba(20, 12, 52, 0.86), rgba(39, 24, 65, 0.72)),
    rgba(10, 2, 46, 0.66);
  border-color: rgba(129, 140, 248, 0.28);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.30);
}

.seo-content::before {
  content: "Guide pratique";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(105, 67, 248, 0.10);
  color: #6943f8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-content h2 {
  max-width: 860px;
  margin: 0 0 20px;
  color: rgba(22, 12, 40, 0.96);
  font-size: clamp(1.85rem, 1.2rem + 2.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.seo-content > p {
  max-width: 78ch;
  margin: 0 0 16px;
  color: rgba(44, 38, 58, 0.72);
  font-size: clamp(1rem, 0.96rem + 0.28vw, 1.16rem);
  font-weight: 600;
  line-height: 1.75;
}

.seo-content > p:first-of-type {
  max-width: 70ch;
  color: rgba(25, 20, 35, 0.82);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  font-weight: 750;
}

.seo-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: clamp(28px, 4vw, 42px) 0 14px;
  color: rgba(22, 12, 40, 0.94);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.7rem);
  line-height: 1.2;
}

.seo-content h3::before {
  content: "";
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6943f8, #ec4899);
  box-shadow: 0 0 0 6px rgba(105, 67, 248, 0.10);
}

.seo-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: rgba(44, 38, 58, 0.74);
  font-size: 0.98rem;
}

.seo-section li {
  position: relative;
  min-height: 74px;
  margin: 0;
  padding: 16px 16px 16px 46px;
  border: 1px solid rgba(194, 170, 224, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 10px 26px rgba(94, 63, 143, 0.07);
  line-height: 1.45;
}

.seo-section li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #6943f8, #ec4899);
  box-shadow: 0 0 0 5px rgba(105, 67, 248, 0.09);
}

.seo-section li strong {
  color: rgba(22, 12, 40, 0.94);
  font-weight: 850;
}

.seo-section a {
  color: #5b3df1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 -0.12em rgba(236, 72, 153, 0.22);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.seo-section a:hover {
  color: #ec4899;
  box-shadow: inset 0 -0.2em rgba(236, 72, 153, 0.28);
}

.seo-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-links li {
  min-height: 0;
  padding: 14px 16px;
  text-align: center;
}

.seo-links li::before {
  display: none;
}

[data-theme="dark"] .seo-content h2,
[data-theme="dark"] .seo-content h3,
[data-theme="dark"] .seo-section li strong {
  color: #fff;
}

[data-theme="dark"] .seo-content > p,
[data-theme="dark"] .seo-section ul {
  color: rgba(255, 255, 255, 0.74);
}

[data-theme="dark"] .seo-content > p:first-of-type {
  color: rgba(255, 255, 255, 0.84);
}

[data-theme="dark"] .seo-section li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 820px) {
  .seo-content {
    border-radius: 24px;
  }

  .seo-content h2 {
    max-width: 100%;
  }

  .seo-section ul,
  .seo-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .seo-section {
    padding: 42px 0;
  }

  .seo-content {
    padding: 22px 18px;
  }

  .seo-section li {
    padding: 14px 14px 14px 42px;
  }
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

[data-theme="dark"] .modal {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--background-white);
  margin: 5% auto;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--background-light);
  color: var(--text-primary);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="dark"] .form-group input:focus {
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1208px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-features {
    justify-content: center;
  }
  
  .hero-visual {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .hero-mobile {
    order: 3;
  }

  .mobile-preview {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 180px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step:nth-child(even) {
    flex-direction: column;
  }
  
  .technical-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-badge {
    font-size: 0.8rem;
  }

  .smart-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tutorial-steps,
  .gallery-tutorial-steps--email {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tutorial-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--spacing-lg) 0;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 11vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-title.hero-title--translated {
    font-size: clamp(1.9rem, 9vw, 2.3rem);
  }

  .hero-title .highlight {
    display: block;
  }

  .hero-subtitle {
    max-width: 31ch;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.35;
  }

  .hero-features {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    gap: 8px;
  }

  .feature-badge {
    max-width: 100%;
    padding: 9px 12px;
    white-space: normal;
    justify-content: center;
  }

  .smart-gallery-section {
    padding: 42px 0;
  }

  .smart-gallery-heading {
    margin-bottom: 18px;
  }

  .smart-gallery-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .smart-gallery-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .gallery-tutorial-card {
    padding: 18px;
    border-radius: 22px;
  }

  .gallery-tutorial-steps,
  .gallery-tutorial-steps--email {
    grid-template-columns: 1fr;
  }
  
  .features-section,
  .how-it-works-section,
  .technical-section,
  .cta-section {
    padding: var(--spacing-lg) 0;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .experience-layout {
    padding: 14px;
    border-radius: 24px;
  }

  .experience-preview {
    border-radius: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    column-gap: 0.85rem;
    padding: 0.95rem;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    font-size: 1rem;
  }

  .feature-card h3 {
    margin-bottom: 0.32rem;
  }

  .feature-card p {
    grid-column: 2;
  }
}

@media (max-height: 1000px) and (orientation: portrait) {
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 11vw, 2.65rem);
    line-height: 1.08;
  }

  .hero-title .highlight {
    display: block;
  }

  .hero-subtitle {
    max-width: 31ch;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.35;
  }

  .hero-features {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    gap: 8px;
  }

  .feature-badge {
    max-width: 100%;
    padding: 9px 12px;
    white-space: normal;
    justify-content: center;
  }
}
/* ===== STYLES MODALS SIMPLIFIÉS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    padding: 24px 24px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-body {
    padding: 0 24px 24px;
}

/* ===== MODAL GALERIE SPÉCIFIQUE ===== */
.gallery-instructions {
    text-align: center;
}

.gallery-instructions p {
    margin-bottom: 16px;
    color: #666;
    font-size: 1rem;
}

.gallery-instructions p:first-child {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.ready-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ready-section p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.gallery-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
}

/* ===== MODAL CONTACT (conservé) ===== */
.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.contact-item i {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ===== BOUTONS MODALS ===== */
.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-buttons .btn-primary,
.modal-buttons .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.modal-buttons .btn-primary {
    background: #007bff;
    color: white;
}

.modal-buttons .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.modal-buttons .btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.modal-buttons .btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1080px) {
  .premium-gallery-showcase__inner {
    grid-template-columns: 1fr;
  }

  .premium-gallery-copy h2 {
    max-width: 16ch;
  }

  .premium-gallery-real-frame {
    height: 840px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .premium-gallery-showcase {
        padding: 54px 12px;
    }

    .premium-gallery-showcase__inner {
        grid-template-columns: 1fr;
    }

    .premium-gallery-copy h2 {
        max-width: 100%;
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .smart-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-weight-proof__comparison {
        grid-template-columns: 1fr;
    }

    .gallery-weight-proof__comparison > b {
        justify-self: center;
        transform: rotate(90deg);
    }

    .premium-gallery-real-frame {
        width: 100%;
        height: min(840px, calc(100svh - 24px));
        min-height: 720px;
        padding: 0;
        border-radius: 18px;
        border-color: rgba(68, 42, 48, 0.10);
        background: #ffffff;
        box-shadow: 0 20px 58px rgba(68, 42, 48, 0.18);
    }

    .premium-gallery-real-frame::before,
    .premium-gallery-real-frame::after {
        display: none;
    }

    .premium-gallery-real-frame iframe {
        border-radius: inherit;
    }

    .premium-gallery-real-demo__hint {
        font-size: 0.8rem;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn-primary,
    .modal-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-link {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
/* ===== WEDDING CTA STRIP ===== */
.wedding-cta-strip {
  padding: 52px 20px;
  background: linear-gradient(135deg, #3b0f6e 0%, #5b1fa8 50%, #3b0f6e 100%);
  position: relative;
  overflow: hidden;
}

.wedding-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(236, 72, 153, 0.28), transparent 70%),
    radial-gradient(ellipse 500px 250px at 10% 50%, rgba(150, 100, 255, 0.30), transparent 70%);
  pointer-events: none;
}

.wedding-cta-strip__inner {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.wedding-cta-strip__text {
  flex: 1;
  min-width: 0;
}

.wedding-cta-strip p.wedding-cta-strip__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb3e8 !important;
}

.wedding-cta-strip h2.wedding-cta-strip__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
}

.wedding-cta-strip p.wedding-cta-strip__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 52ch;
}

.wedding-cta-strip__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #ffffff;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wedding-cta-strip__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(236, 72, 153, 0.52);
  color: #ffffff;
  text-decoration: none;
}

.wedding-cta-strip__btn svg {
  transition: transform 0.2s ease;
}

.wedding-cta-strip__btn:hover svg {
  transform: translateX(4px);
}

[data-theme="dark"] .wedding-cta-strip {
  background: linear-gradient(135deg, #2a0850 0%, #420f80 50%, #2a0850 100%);
}

@media (max-width: 768px) {
  .wedding-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .wedding-cta-strip__btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 1640px) {
.fondzindex2 {
    display: block;
}
}
@media (max-width: 1370px) {
    .fondzindex2  {
        display: none;
    }
}

/* ===================================================================
   2026-08-21 — Resserrage du hero (pilier + page enfant, meme feuille).
   Le fond image (container-fondzindex2) a ete retire du HTML : le hero
   repose desormais sur le fond de page, comme photos-de-mariage.html.
   .hero-title n'avait ni font-size ni line-height propres et heritait
   d'un h1 global a 64px / line-height:normal, d'ou un titre sur 4 lignes.
   =================================================================== */
/* La feuille globale reserve de l'espace au-dessus de la page sur html ET
   body. Le hero photo de reference annule cette double marge afin que son
   degrade passe bien derriere le header fixe. */
html,
body {
  padding-top: 0;
}

/* Sur la page pilier, le bandeau differe reste au-dessus du hero mais ne
   reserve plus une bande blanche quand il est encore invisible. */
.private-gallery-landing > .notification-strip {
  position: absolute;
}

.hero-section {
  /* L'ellipse remonte d'environ 4.9rem dans le hero. Cette reserve garde
     les pastilles et les deux apercus entierement dans le degrade. */
  padding: 8rem 0 8.5rem;
}
/* Meme degrade que .photo-gallery-hero sur photos-de-mariage.html,
   repris a l'identique pour que les deux pages aient le meme fond. */
.hero-section {
  isolation: isolate;
  background: linear-gradient(160deg, #ffbadf 0%, rgba(243, 210, 255, 0.72) 48%, #a5a7ff 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 196, 225, 0.52), transparent 38%),
    radial-gradient(circle at 84% 12%, rgba(197, 171, 245, 0.34), transparent 36%),
    radial-gradient(circle at 52% 86%, rgba(255, 255, 255, 0.42), transparent 48%);
  pointer-events: none;
  z-index: -2;
}
.hero-section > * {
  position: relative;
  z-index: 1;
}
/* Arrondi de bas de hero, repris de .photo-gallery-hero::after. */
.hero-section {
  --hero-arc-color: #fffdfb;
  overflow-x: clip;
  overflow-y: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.2rem;
  width: 101%;
  height: 9.1rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--hero-arc-color);
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.72);
  pointer-events: none;
  z-index: -1;
}
[data-theme="dark"] .hero-section {
  --hero-arc-color: #10003f;
}
[data-theme="dark"] .hero-section::after {
  box-shadow: 0 0 26px rgba(16, 0, 63, 0.72);
}
[data-theme="dark"] .hero-section {
  background: linear-gradient(165deg, #2a2145 0%, #231c3f 48%, #1d1835 100%);
}
[data-theme="dark"] .hero-section::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 131, 198, 0.36), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(143, 122, 255, 0.38), transparent 38%),
    radial-gradient(circle at 52% 86%, rgba(93, 111, 187, 0.34), transparent 46%);
}
.hero-grid {
  gap: var(--spacing-lg);
  align-items: center;
}
.hero-content {
  max-width: 560px;
}
.hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: var(--spacing-sm);
  text-wrap: balance;
}
.hero-eyebrow {
  margin-bottom: 8px;
}
.hero-subtitle {
  font-size: 1.03rem;
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: var(--spacing-md);
}
/* Pastilles : plus petites et plus serrees, pour qu'elles s'alignent
   sur 2 rangees au lieu de s'empiler une par ligne. */
.hero-features {
  gap: 8px;
  margin-top: 0;
}
.feature-badge {
  box-sizing: border-box;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.2;
}
.feature-badge i {
  flex-shrink: 0;
}
/* La colonne mobile prenait une place disproportionnee a l'ecran large. */
@media (min-width: 1209px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr 0.42fr;
  }
}
@media (max-width: 1208px) {
  .hero-section {
    padding: 7rem 0 10rem;
  }
  .hero-grid {
    gap: var(--spacing-md);
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 4rem 0 10.5rem;
  }

  /* Une ellipse plus large conserve la profondeur de l'arc tout en
     rendant sa courbe sensiblement plus douce sur petit ecran. */
  .hero-section::after {
    width: 190%;
  }
}
