/* ========================================================
   PAGE-SPECIFIC STYLES
   ======================================================== */

/* ============ HOME HERO ============ */
.home-hero {
  position: relative;
  padding: 80px 28px 120px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  border-radius: 0 0 40px 40px;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,250,252,0.1) 0%, rgba(248,250,252,0.3) 60%, rgba(248,250,252,0.75) 100%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, transparent 50%, rgba(56, 189, 248, 0.06) 100%);
}

.home-hero-content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.home-hero-content .pill {
  animation: fadeUp 1s var(--ease-out) 0.1s both;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.85);
}

.home-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.25s forwards;
  color: var(--ink);
  text-shadow: 0 2px 20px rgba(255,255,255,0.4);
  overflow-wrap: break-word;
}

.home-hero-sub {
  max-width: 580px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.45s forwards;
  font-weight: 450;
}

.home-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.65s forwards;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.85s forwards;
}
.home-stat {
  padding: 22px 18px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-stat-icon {
  color: var(--violet-600);
}
.home-stat-icon svg { width: 18px; height: 18px; }
.home-stat-stars {
  font-size: 14px;
  color: #FCB43A;
  letter-spacing: 2px;
  line-height: 1;
}
.home-stat-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* ============ ACTIVITIES ============ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.activity-card {
  padding: 44px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.activity-card::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--violet-400) 0%, transparent 70%);
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s;
  pointer-events: none;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--glass-border-violet);
}
.activity-card:hover::after { opacity: 0.25; }

.activity-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--violet-600) 0%, var(--violet-700) 100%);
  color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-violet);
  transform: translateY(4px);
  opacity: 0.82;
  transition: all 0.35s var(--ease-out);
  position: relative;
  z-index: 1;
}
.activity-card-cta svg { width: 14px; height: 14px; }
.activity-card:hover .activity-card-cta {
  transform: translateY(0) translateX(3px);
  opacity: 1;
  box-shadow: 0 16px 40px -10px rgba(124, 58, 237, 0.65);
}

.activity-visual {
  width: 76px; height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--violet-100) 0%, white 100%);
  border: 1px solid var(--violet-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--violet-600);
}
.activity-visual svg { width: 44px; height: 44px; }
.activity-card--photo {
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-lg);
}
.activity-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.6s var(--ease-out);
}
.activity-card--photo:hover .activity-bg {
  transform: scale(1.05);
}
.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10, 10, 30, 0.25) 0%,
    rgba(10, 10, 30, 0.72) 100%
  );
  z-index: 1;
}
.activity-content {
  position: relative;
  z-index: 2;
  padding: 44px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.activity-card--photo .activity-tag {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}
.activity-card--photo h3 {
  color: white;
}
.activity-card--photo > .activity-content > p {
  color: rgba(255, 255, 255, 0.82);
}
.activity-card--photo .activity-features li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.activity-card--photo .activity-features li::before {
  background: white;
  box-shadow: none;
}
.activity-card--photo .activity-features li::after {
  border-color: var(--violet-600);
}
.activity-card--photo .activity-card-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.activity-card--photo:hover .activity-card-cta {
  background: white;
  color: var(--violet-700);
  border-color: white;
}

.activity-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--violet-100);
  color: var(--violet-700);
  border: 1px solid var(--violet-200);
  margin-bottom: 14px;
}

.activity-card h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}
.activity-card > p {
  color: var(--ink-dim);
  margin-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.65;
}

.activity-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 32px;
}
.activity-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink-mid);
}
.activity-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-600) 100%);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.35);
}
.activity-features li::after {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 3px; height: 6px;
  border-right: 1.5px solid white;
  border-bottom: 1.5px solid white;
}


/* ============ TRUST BAND ============ */
.trust {
  padding: 40px 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 40px;
  border-radius: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item svg {
  width: 36px; height: 36px;
  color: var(--violet-600);
  flex-shrink: 0;
}
.trust-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--ink);
}
.trust-item p {
  font-size: 13px;
  color: var(--ink-dim);
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.review-card {
  padding: 32px 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #FCB43A;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  flex: 1;
  font-style: italic;
}
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--glass-border);
}
.review-card strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-meta > span:last-child {
  font-size: 13px;
  color: var(--ink-dim);
}
.review-source {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.review-source--google {
  background: #E8F0FE;
  color: #1A73E8;
}
.review-source--pj {
  background: #FFF3CD;
  color: #C17900;
}

.reviews-grid-pj {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 20px auto 48px;
}

.reviews-cta {
  text-align: center;
}

/* ============ ZONE HOME ============ */
.zone-home-card {
  padding: 28px 36px;
  border-radius: 24px;
}
.zone-home-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}
.zone-home-summary::-webkit-details-marker { display: none; }
.zone-home-summary::marker { display: none; }

.zone-home-text h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  margin-bottom: 6px;
}
.zone-home-text p {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.zone-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  background: var(--violet-100);
  border: 1px solid var(--violet-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-700);
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
}
.zone-toggle svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.zone-home-card[open] .zone-toggle {
  background: var(--violet-600);
  color: white;
  border-color: var(--violet-600);
}
.zone-home-card[open] .zone-toggle svg {
  transform: rotate(180deg);
}
.zone-home-summary:hover .zone-toggle {
  background: var(--violet-600);
  color: white;
  border-color: var(--violet-600);
}

.zone-home-card .zone-home-cities {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--glass-border);
  animation: formFade 0.4s var(--ease-out);
}
.zone-home-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.zone-home-cities span {
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--violet-200);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: all 0.25s var(--ease-out);
}
.zone-home-cities span:hover {
  background: var(--violet-600);
  color: white;
  border-color: var(--violet-600);
}
.zone-home-cities span.zone-dept {
  background: transparent;
  border: none;
  color: var(--violet-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: default;
  width: 100%;
  padding: 0;
  margin-top: 8px;
}
.zone-home-cities span.zone-dept:first-child { margin-top: 0; }
.zone-home-cities span.zone-dept:hover {
  background: transparent;
  color: var(--violet-700);
  border: none;
  transform: none;
}

/* ============ FAQ SECTION ============ */
.faq-section {
  padding: 80px 28px;
}

/* ============ CTA FINAL ============ */
.cta-card {
  padding: 64px 48px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(255,255,255,0.7) 100%);
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 14px;
}
.cta-card p {
  color: var(--ink-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 30px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  padding: 80px 28px 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ SERVICE PAGE GRID ============ */
.services-intro {
  padding: 60px 28px;
}
.services-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-item {
  padding: 32px 28px;
  border-radius: 22px;
  transition: all 0.3s var(--ease-out);
}
.service-item:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-violet);
}
.service-item-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--violet-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--violet-600);
}
.service-item-icon svg { width: 28px; height: 28px; }
.service-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.service-item-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-item-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,8,30,0.45) 0%, rgba(10,8,30,0.30) 100%);
  border-radius: inherit;
  z-index: 0;
}
.service-item-photo .service-item-icon,
.service-item-photo h3,
.service-item-photo p {
  position: relative;
  z-index: 1;
}
.service-item-photo h3 { color: #fff; }
.service-item-photo p { color: rgba(255,255,255,0.75); }
.service-item-photo .service-item-icon {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============ BENTO SERVICES GRID ============ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 14px;
  margin-top: 56px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}
.bento-card:hover {
  transform: translateY(-7px);
  border-color: rgba(109, 40, 217, 0.22);
  box-shadow:
    0 28px 64px -18px rgba(109, 40, 217, 0.28),
    0 0 0 1px rgba(109, 40, 217, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* Shimmer sweep on hover */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 25%, rgba(255,255,255,0.6) 50%, transparent 75%);
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 1;
}
.bento-card:hover::before {
  animation: bento-shimmer 0.65s ease forwards;
}
@keyframes bento-shimmer {
  to { transform: translateX(110%); }
}

/* Number badge */
.bento-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(109, 40, 217, 0.18);
}
.bento-num--inline {
  position: static;
  display: block;
  margin-bottom: 2px;
}

/* Icon box */
.bento-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109,40,217,0.1), rgba(139,92,246,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
}
.bento-icon svg {
  width: 22px;
  height: 22px;
  stroke: #6d28d9;
  transition: stroke 0.3s ease;
}
.bento-card:hover .bento-icon {
  transform: scale(1.14);
  background: linear-gradient(135deg, rgba(109,40,217,0.18), rgba(139,92,246,0.12));
}

.bento-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}
.bento-card p {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin: 0;
}

/* XL card — 2 cols × 2 rows */
.bento-card--xl {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(150deg,
    rgba(109,40,217,0.07) 0%,
    rgba(255,255,255,0.9) 55%,
    rgba(139,92,246,0.04) 100%
  );
  border-color: rgba(109,40,217,0.16);
  display: flex;
  flex-direction: column;
}
.bento-card--xl .bento-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-bottom: 24px;
}
.bento-card--xl .bento-icon svg { width: 30px; height: 30px; }
.bento-card--xl h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.bento-card--xl p {
  font-size: 14.5px;
  flex: 1;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #6d28d9;
  text-decoration: none;
  margin-top: 24px;
  align-self: flex-start;
  border-bottom: 1.5px solid rgba(109,40,217,0.3);
  padding-bottom: 2px;
  transition: gap 0.22s ease, border-color 0.22s ease;
}
.bento-link svg {
  width: 14px;
  height: 14px;
  stroke: #6d28d9;
  transition: transform 0.22s ease;
}
.bento-link:hover { gap: 10px; border-color: #6d28d9; }
.bento-link:hover svg { transform: translateX(3px); }

/* Decorative rings on XL card */
.bento-deco {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 1;
  animation: bento-rings 5s ease-in-out infinite;
}
@keyframes bento-rings {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(6deg); }
}

/* Wide card — 2 cols */
.bento-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 22px;
}
.bento-card--wide .bento-icon { margin-bottom: 0; }
.bento-card--wide .bento-text { flex: 1; }
.bento-card--wide h3 { font-size: 16px; margin-bottom: 6px; }
.bento-card--wide:hover .bento-icon {
  transform: scale(1.14) rotate(0deg); /* no tilt on side icon */
}

/* Full-width CTA card at bottom */
.bento-card--cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(109,40,217,0.06) 0%, rgba(255,255,255,0.88) 100%);
  border-color: rgba(109,40,217,0.14);
}
.bento-card--cta h3 { font-size: 16px; margin: 0 0 4px; }
.bento-card--cta p { font-size: 13.5px; margin: 0; }
.bento-card--cta .bento-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6d28d9;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bento-card--cta .bento-cta-btn:hover {
  background: #5b21b6;
  transform: translateY(-1px);
}
.bento-card--cta:hover {
  transform: none;
  box-shadow: 0 8px 32px -10px rgba(109,40,217,0.15), 0 0 0 1px rgba(109,40,217,0.12);
}

/* Responsive */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--xl { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; gap: 10px; }
  .bento-card--xl,
  .bento-card--wide { grid-column: span 1; }
  .bento-card--wide { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bento-card--cta { flex-direction: column; align-items: flex-start; }
}

/* ============ FEATURE ROWS (long content) ============ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
}
.feature-row.reverse .feature-content {
  order: 2;
}
.feature-content h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
}
.feature-content > p {
  color: var(--ink-dim);
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-mid);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 10px;
  color: var(--violet-600);
  font-weight: 700;
}
.feature-visual {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--violet-100) 0%, var(--sky-100) 100%);
  border: 1px solid var(--violet-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-400);
  overflow: hidden;
  position: relative;
}
.feature-visual svg {
  width: 40%; height: 40%;
  opacity: 0.5;
}
.feature-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-visual-placeholder {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--violet-400);
  position: absolute;
  bottom: 20px;
  left: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ FAQ (inline) ============ */
.faq-inline {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-inline details {
  border-radius: 16px;
  padding: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-inline details[open] {
  background: var(--glass-strong);
  border-color: var(--violet-200);
}
.faq-inline summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  color: var(--ink);
}
.faq-inline summary::-webkit-details-marker { display: none; }
.faq-inline summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--violet-600);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-inline details[open] summary::after { transform: rotate(45deg); }
.faq-inline .faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.team-card {
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-violet);
}
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--violet-200) 0%, var(--violet-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: white;
  box-shadow: 0 8px 24px -6px rgba(124, 58, 237, 0.4);
  position: relative;
  overflow: hidden;
}
.team-photo.placeholder::before {
  content: "?";
}
.team-card h3 {
  font-size: 19px;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--violet-700);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ============ PARTENAIRES ============ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.partner-card {
  padding: 28px 20px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  background: white;
  border: 1px solid var(--glass-border);
}
.partner-card:hover {
  transform: translateY(-3px);
  border-color: var(--violet-200);
  box-shadow: var(--shadow);
}
.partner-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.partner-name {
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
}

/* ============ CONTACT FORM ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-side {
  padding: 40px 32px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--violet-600) 0%, var(--violet-700) 100%);
  color: white;
  position: sticky;
  top: 110px;
  height: fit-content;
  overflow: hidden;
}
.contact-side::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-side h2 {
  color: white;
  font-size: 30px;
  margin-bottom: 16px;
  position: relative;
}
.contact-side > p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
}
.contact-details svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.9);
}
.contact-details a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-details a:hover { opacity: 0.85; }
.contact-details strong {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-socials {
  display: flex;
  gap: 10px;
  position: relative;
}
.contact-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.25s var(--ease-out);
}
.contact-socials a:hover {
  background: white;
  color: var(--violet-700);
  transform: translateY(-2px);
}
.contact-socials svg { width: 18px; height: 18px; }

/* Contact form main — Liquid Glass Clair */
.contact-form-wrap {
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 24px 64px rgba(76, 29, 149, 0.10),
    0 4px 16px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(139, 92, 246, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-form-wrap::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(56,189,248,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Step selector */
.form-step-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.form-step-option {
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.98);
}
.form-step-option:hover {
  border-color: var(--violet-300, #C4B5FD);
  background: rgba(255,255,255,0.80);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.12), inset 0 1px 0 rgba(255,255,255,0.98);
}
.form-step-option.active {
  border-color: var(--violet-400);
  background: linear-gradient(145deg, rgba(237,233,254,0.9) 0%, rgba(255,255,255,0.85) 100%);
  box-shadow: 0 8px 28px rgba(124,58,237,0.18), inset 0 1px 0 rgba(255,255,255,0.98);
}
.form-step-option-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--violet-100);
  border: 1px solid var(--violet-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-600);
}
.form-step-option.active .form-step-option-icon {
  background: var(--violet-600);
  border-color: var(--violet-700);
  color: white;
}
.form-step-option-icon svg { width: 24px; height: 24px; }
.form-step-option h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--ink);
}
.form-step-option p {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.4;
}

/* Form fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.3s;
  position: relative;
  z-index: 1;
}
.form-fields.hidden { display: none; }
.form-fields.fade-in {
  animation: formFade 0.5s var(--ease-out);
}
@keyframes formFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field > span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  padding: 13px 16px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 12px;
  color: var(--ink);
  font-size: 14.5px;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 2px 8px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.98);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--violet-400);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12), inset 0 1px 0 rgba(255,255,255,0.98);
  color: var(--ink);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%237C3AED' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field select option {
  background: white;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-hidden { display: none; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 17px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.form-note {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

#formEmptyState {
  color: var(--ink-muted) !important;
  position: relative;
  z-index: 1;
}

/* Success state */
.form-success {
  padding: 40px;
  text-align: center;
  display: none;
}
.form-success.show { display: block; animation: formFade 0.6s var(--ease-out); }
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.45);
}
.form-success-icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--ink-dim);
}

/* ============ SEO DRAWER ============ */
.seo-drawer {
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.6);
  overflow: hidden;
}
.seo-drawer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.seo-drawer-summary::-webkit-details-marker { display: none; }
.seo-drawer-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted, #9090a8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.seo-drawer-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-muted, #9090a8);
  transition: transform 0.3s ease;
  display: block;
}
.seo-drawer[open] .seo-drawer-toggle svg {
  transform: rotate(180deg);
}
.seo-keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 20px 18px;
}
.seo-keywords-grid a {
  padding: 5px 12px;
  background: var(--violet-50);
  border: 1px solid var(--violet-100);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.seo-keywords-grid a:hover {
  background: var(--violet-100);
  color: var(--violet-700);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  /* Hero */
  .home-hero { min-height: auto; padding: 40px 18px 70px; }
  .home-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .home-hero-content h1 { font-size: clamp(34px, 8vw, 56px); }

  /* Page heros */
  .page-hero { padding: 50px 18px 40px; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 52px); }
  .page-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .page-hero-ctas { flex-direction: column; align-items: center; }
  .page-hero-ctas .btn-primary,
  .page-hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  /* Activity cards */
  .activities-grid { grid-template-columns: 1fr; gap: 16px; }
  .activity-card { padding: 28px 22px; min-height: 260px; }
  .activity-card--photo { min-height: 320px; }
  .activity-card--photo .activity-content { padding: 28px 22px; }
  .activity-features { display: none; }

  /* Services intro */
  .services-intro { padding: 40px 18px; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-item { padding: 26px 22px; }
  .service-item-photo { min-height: 180px; }

  /* Features */
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 20px; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .zone-home-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
  .zone-toggle { align-self: flex-start; }
  .cta-card { padding: 32px 22px; }
  .cta-card h2 { font-size: clamp(24px, 5vw, 36px); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost { width: 100%; justify-content: center; }

  /* Feature rows */
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reverse .feature-content { order: 0; }
  .feature-visual { aspect-ratio: 16/9; }

  /* Partners */
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner-card { padding: 20px 14px; }

  /* Section head */
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 6vw, 44px); }

  /* Contact */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-side { position: static; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-step-selector { grid-template-columns: 1fr 1fr; gap: 10px; }
}

@media (max-width: 540px) {
  /* Hero */
  .home-hero-ctas { flex-direction: column; align-items: flex-start; }
  .home-hero-ctas .btn-primary,
  .home-hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  /* Hero stats */
  .home-hero-stats { grid-template-columns: 1fr 1fr; }
  .home-stat { padding: 16px 14px; }

  /* Page hero CTA buttons pleine largeur */
  .btn-primary, .btn-ghost { font-size: 14px; padding: 14px 20px; }

  /* Teams */
  .team-grid { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }

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

  /* Form */
  .form-step-selector { grid-template-columns: 1fr; }
  .form-step-option { flex-direction: row; align-items: center; padding: 16px 14px; gap: 14px; }
  .form-step-option-icon { flex-shrink: 0; width: 38px; height: 38px; }
  .form-step-option h4 { font-size: 14px; margin-bottom: 2px; }
  .form-step-option p { font-size: 12px; }

  /* Zone card */
  .zone-home-card { padding: 22px 20px; }

  /* Contact side */
  .contact-form-wrap { padding: 20px 16px; }

  /* SEO drawer */
  .seo-keywords-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ RÉALISATIONS GRID ============ */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.realisation-item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.realisation-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.realisation-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .realisations-grid { grid-template-columns: 1fr; }
}
