/* ========================================
   Le P'tit Plus — Agence Web La Rochelle
   Design System — v1.0
   ======================================== */

/* === FONT LOCAL ================================= */
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLES ================================== */
:root {
  --bg:        #080810;
  --bg-2:      #0D0D1A;
  --card:      rgba(255, 255, 255, 0.04);
  --accent:    #fcd21d;
  --accent-dark: #d4a800;
  --accent-glow: rgba(252, 210, 29, 0.25);
  --white:     #ffffff;
  --gray:      #9ca3af;
  --gray-2:    #6b7280;
  --border:    rgba(255, 255, 255, 0.08);
  --radius:    16px;
  --radius-sm: 10px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === RESET & BASE ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font);
}

/* === UTILITIES =================================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 100px 0;
}

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

@keyframes floatA {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(22px) scale(0.96); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === BUTTONS ===================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a10;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(252, 210, 29, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--card);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 15px 34px;
  font-size: 16px;
}

/* === SECTION HEADER ============================== */
.section__tag {
  display: inline-block;
  background: rgba(252, 210, 29, 0.1);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(252, 210, 29, 0.2);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray);
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* === NAVIGATION ================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(8, 8, 16, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(8, 8, 16, 0.96);
  border-bottom-color: rgba(252, 210, 29, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__cta.btn--primary {
  box-shadow: 0 0 20px rgba(252, 210, 29, 0.25);
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(252, 210, 29, 0.2); }
  50% { box-shadow: 0 0 25px rgba(252, 210, 29, 0.4); }
}

.nav__container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  display: inline-flex;
  gap: 4px;
}

.nav__logo-text span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.25s;
  position: relative;
}

.nav__links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__links > li > a:hover::after {
  width: 100%;
}

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

.nav__links > li > a.active {
  color: var(--accent);
}

.nav__links > li > a.active::after {
  width: 100%;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 8, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 17px;
  font-weight: 500;
  color: var(--gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.nav__mobile a:last-child {
  border-bottom: none;
  margin-top: 12px;
  text-align: center;
}

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

@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* === HERO ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}

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

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(252, 210, 29, 0.18) 0%, transparent 70%);
  top: -250px;
  left: -250px;
  animation: floatA 10s ease-in-out infinite;
}

.hero__orb--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 210, 29, 0.12) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  animation: floatB 12s ease-in-out infinite;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(252, 210, 29, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 7s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 210, 29, 0.1);
  border: 1px solid rgba(252, 210, 29, 0.25);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.6s ease-out both;
}

.hero__title {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero__scroll-text {
  font-size: 10px;
  color: var(--gray-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollBounce 2.2s ease-in-out infinite;
}

/* === MARQUEE ===================================== */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-2);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === STATS ======================================= */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.stat__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat__number--static {
  font-size: clamp(32px, 4.5vw, 48px);
}

.stat__suffix {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--accent-dark);
}

.stat__label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

@media (max-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2)::after,
  .stat:nth-child(4)::after {
    display: none;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }
}

/* === SERVICES ==================================== */
.services {
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(252, 210, 29, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(252, 210, 29, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: block;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card__title a:hover {
  color: var(--accent);
}

.service-card[data-href] {
  cursor: pointer;
}

.service-card__cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s;
}

.service-card:hover .service-card__cta {
  text-decoration: underline;
}

.service-card__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* === PORTFOLIO =================================== */
.portfolio {
  background: var(--bg-2);
}

.portfolio__filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a10;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(252, 210, 29, 0.25);
}

/* Browser mockup */
.browser {
  border-bottom: 1px solid var(--border);
}

.browser__bar {
  background: rgba(255, 255, 255, 0.03);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.browser__dots {
  display: flex;
  gap: 5px;
}

.browser__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.browser__dot--red    { background: #ff5f57; }
.browser__dot--yellow { background: #ffbd2e; }
.browser__dot--green  { background: #28ca41; }

.browser__url {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--gray-2);
  text-align: center;
  font-family: monospace;
}

.browser__screen {
  overflow: hidden;
  height: 180px;
}

.browser__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .browser__screen img {
  transform: scale(1.04);
}

.portfolio-card__footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portfolio-card__tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.portfolio-card__tag {
  background: rgba(252, 210, 29, 0.1);
  color: var(--accent);
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgba(252, 210, 29, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-card__title {
  font-size: 15px;
  font-weight: 700;
}

.portfolio-card__location {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
  margin-bottom: 6px;
}

.portfolio-card__see {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(252, 210, 29, 0.08);
  border: 1px solid rgba(252, 210, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-card__see {
  background: var(--accent);
  color: #0a0a10;
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .portfolio__grid { grid-template-columns: 1fr; }
}

/* === PROCESS ===================================== */
.process {
  background: var(--bg);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.process-step__num {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(252, 210, 29, 0.08);
  border: 2px solid rgba(252, 210, 29, 0.25);
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
  letter-spacing: -0.5px;
}

.process-step:hover .process-step__num {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a10;
  border-color: transparent;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.process-step__icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.process-step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .process__grid::before { display: none; }
}

@media (max-width: 480px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* === WHY US ====================================== */
.why-us {
  background: var(--bg-2);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.why-us__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.why-us__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-point {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.why-point:hover {
  border-color: rgba(252, 210, 29, 0.28);
  background: rgba(252, 210, 29, 0.04);
  transform: translateY(-3px);
}

.why-point__icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.why-point__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-point__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 560px) {
  .why-us__points { grid-template-columns: 1fr; }
}

/* === FAQ ========================================= */
.faq {
  background: var(--bg);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(252, 210, 29, 0.3);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--card);
  transition: background 0.25s;
  user-select: none;
}

.faq-item__q:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-item__q h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  color: #0a0a10;
  transform: rotate(45deg);
}

.faq-item__a {
  display: none;
  padding: 0 24px 22px;
  background: var(--card);
}

.faq-item.open .faq-item__a {
  display: block;
}

.faq-item__a p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

/* === CONTACT ===================================== */
.contact {
  background: var(--bg-2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.contact__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(252, 210, 29, 0.1);
  border: 1px solid rgba(252, 210, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item__text .label {
  font-size: 11px;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-info-item__text .value {
  font-size: 15px;
  font-weight: 600;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}

.form__input,
.form__select,
.form__textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(252, 210, 29, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select option {
  background: #0D0D1A;
  color: var(--white);
}

.form__submit {
  width: 100%;
  margin-top: 4px;
}

.form__success {
  display: none;
  background: rgba(252, 210, 29, 0.08);
  border: 1px solid rgba(252, 210, 29, 0.25);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
}

/* === FOOTER ====================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand img {
  display: block;
  margin-bottom: 28px;
  margin-left: -8px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}


.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.25s;
}

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

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--gray-2);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--gray-2);
  transition: color 0.25s;
}

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

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* === TESTIMONIALS ================================ */
@keyframes scrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.testimonials {
  background: var(--bg-2);
}

.reviews__stars-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.reviews__score {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.reviews__stars-global .stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews__google-logo {
  flex-shrink: 0;
}

.reviews__count {
  font-size: 13px;
  color: var(--gray);
}

.reviews__wrap {
  height: 480px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.reviews__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.reviews__col {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollDown 22s linear infinite;
}

.reviews__col--delay .reviews__track {
  animation-delay: -11s;
}

.reviews__track:hover,
.reviews__col--delay .reviews__track:hover {
  animation-play-state: paused;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(252, 210, 29, 0.2);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a10;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.review-card__stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
}

.review-card__google {
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.7;
}

.review-card__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .reviews__cols { grid-template-columns: 1fr; }
  .reviews__col--delay { display: none; }
  .reviews__wrap { height: 420px; }
}

/* === CURSOR SPOTLIGHT ============================ */
.hero {
  --mouse-x: 50%;
  --mouse-y: 40%;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    500px circle at var(--mouse-x) var(--mouse-y),
    rgba(252, 210, 29, 0.18) 0%,
    rgba(252, 210, 29, 0.04) 40%,
    transparent 70%
  );
  transition: background 0.06s ease;
}

/* === BIG TEXT MARQUEE ============================ */
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.bigtext-marquee {
  overflow: hidden;
  padding: 8px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bigtext-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee-reverse 50s linear infinite;
}

.bigtext-marquee__track span {
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 900;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}

.bigtext-dot {
  color: var(--accent) !important;
  -webkit-text-stroke: 0 !important;
  font-size: 40px !important;
  opacity: 0.6;
}

/* === RESPONSIVE (section padding) ================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero__title { letter-spacing: -2px; }

  .section__header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}
