/* ================================================
   GameTools – Feuille de style principale
   Abonnement outils de jeux – France
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --accent: #06b6d4;
  --amber: #f59e0b;
  --text: #1e1b2e;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-light: #faf5ff;
  --bg-section: #f1f5f9;
  --border: #e2e8f0;
  --success: #10b981;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --gradient-dark: linear-gradient(135deg, #0f0a1e 0%, #1e0a3c 55%, #0c2a40 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(124,58,237,.14);
  --shadow-lg: 0 16px 48px rgba(124,58,237,.2);
  --shadow-glow: 0 0 40px rgba(124,58,237,.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ---- HEADER ---- */
header {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
}
.logo span { color: var(--primary); }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text-light); font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: .93rem;
  transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--primary); background: rgba(124,58,237,.08); }

.nav-cta {
  background: var(--gradient) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 50px !important;
  font-weight: 600 !important; margin-left: 8px;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.nav-cta:hover { box-shadow: 0 6px 20px rgba(124,58,237,.5) !important; transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.burger span { display: block; width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 28px 20px; border-top: 1px solid var(--border); background: var(--bg); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-light); font-weight: 500; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 1rem; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); background: rgba(124,58,237,.08); }

/* ---- HERO ---- */
.hero {
  background: var(--gradient-dark);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.p1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%); top: -80px; right: 10%; animation-delay: 0s; }
.p2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%); bottom: 20px; left: 5%; animation-delay: 2s; }
.p3 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%); top: 40%; right: 25%; animation-delay: 4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.4);
  color: var(--primary-light); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-text h1 {
  font-size: 3rem; font-weight: 800; line-height: 1.12;
  letter-spacing: -.04em; margin-bottom: 22px;
}
.gradient-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 480px; margin-bottom: 36px; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow-glow); width: 100%; height: 380px; object-fit: cover; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,.35); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.5); }
.btn-outline { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn-ghost { background: rgba(124,58,237,.08); color: var(--primary); border: 1.5px solid rgba(124,58,237,.2); }
.btn-ghost:hover { background: rgba(124,58,237,.15); transform: translateY(-1px); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #2d2040; transform: translateY(-1px); color: #fff; }
.btn svg { width: 18px; height: 18px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- SECTION TITLES ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; background: rgba(124,58,237,.08); color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(124,58,237,.15);
}
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* ---- SECTIONS BACKGROUNDS ---- */
section, .section { padding: 90px 0; }
.bg-light { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: .9rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--primary); }

/* ---- TOOL CARDS ---- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); position: relative;
}
.tool-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.tool-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.25); }
.tool-card:hover::before { opacity: .03; }
.tool-card-img { height: 200px; overflow: hidden; position: relative; }
.tool-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tool-card:hover .tool-card-img img { transform: scale(1.07); }
.tool-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(15,10,30,.4));
}
.tool-card-body { padding: 28px 26px 30px; }
.tool-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,.08); color: var(--primary);
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
  border: 1px solid rgba(124,58,237,.15);
}
.tool-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.tool-card-body p { font-size: .9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--gradient-dark); padding: 52px 0; position: relative; overflow: hidden; }
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: #fff; }
.stat-item strong { display: block; font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item span { font-size: .88rem; opacity: .72; margin-top: 4px; display: block; }

/* ---- TWO COL ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.check-list { display: flex; flex-direction: column; gap: 18px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-dot {
  width: 26px; height: 26px; background: rgba(124,58,237,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.check-dot svg { width: 13px; height: 13px; color: var(--primary); }
.check-item h4 { font-weight: 700; color: var(--text); margin-bottom: 3px; font-size: .97rem; }
.check-item p { font-size: .9rem; color: var(--text-light); }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative; transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--primary); background: var(--bg-light);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 20px; border-radius: 50px;
}
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.8rem; font-weight: 900; letter-spacing: -.04em; color: var(--text); margin: 16px 0 4px; }
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.pricing-card .price-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; gap: 10px; align-items: center; font-size: .93rem; color: var(--text-light); }
.pricing-features li svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.pricing-features li.disabled { opacity: .45; }
.pricing-features li.disabled svg { color: var(--text-muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
blockquote { font-size: .96rem; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.t-name { font-weight: 700; font-size: .93rem; color: var(--text); }
.t-title { font-size: .82rem; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--bg); border: none; cursor: pointer;
  font-family: inherit; font-size: .97rem; font-weight: 600; color: var(--text);
  text-align: left; gap: 12px; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: .93rem; color: var(--text-light); line-height: 1.7; }

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(124,58,237,.25); }
.feature-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon.violet { background: rgba(124,58,237,.12); color: var(--primary); }
.feature-icon.cyan { background: rgba(6,182,212,.12); color: var(--accent); }
.feature-icon.amber { background: rgba(245,158,11,.12); color: var(--amber); }
.feature-icon.green { background: rgba(16,185,129,.12); color: var(--success); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--text-light); line-height: 1.65; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--gradient); padding: 80px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.03em; }
.cta-banner p { font-size: 1.05rem; opacity: .88; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---- PAGE HERO (inner) ---- */
.page-hero { background: var(--gradient-dark); color: #fff; padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,.08) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.03em; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); background: var(--bg-light); font-size: .86rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width: 46px; height: 46px; background: rgba(124,58,237,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail h5 { font-weight: 700; color: var(--text); margin-bottom: 3px; font-size: .93rem; }
.contact-detail p { color: var(--text-light); font-size: .9rem; }
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .94rem; color: var(--text); background: var(--bg); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--text-muted); margin-top: 12px; }
.form-success { display: none; background: rgba(16,185,129,.08); border: 1.5px solid var(--success); border-radius: var(--radius-sm); padding: 14px 18px; color: #065f46; font-weight: 600; margin-top: 14px; }

/* ---- VALUES / ABOUT ---- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.value-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 26px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { width: 66px; height: 66px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-icon.v1 { background: rgba(124,58,237,.1); }
.value-icon.v2 { background: rgba(245,158,11,.1); }
.value-icon.v3 { background: rgba(6,182,212,.1); }
.value-icon.v4 { background: rgba(16,185,129,.1); }
.value-icon svg { width: 30px; height: 30px; }
.value-icon.v1 svg { color: var(--primary); }
.value-icon.v2 svg { color: var(--amber); }
.value-icon.v3 svg { color: var(--accent); }
.value-icon.v4 svg { color: var(--success); }
.value-card h3 { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-light); }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-info { padding: 20px 16px; }
.team-card-info h4 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-card-info span { font-size: .85rem; color: var(--primary); font-weight: 500; }

/* ---- LEGAL ---- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.legal-content p { color: var(--text-light); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; color: var(--text-light); }
.legal-content ul li { margin-bottom: 6px; }
.legal-content .last-updated { display: inline-block; background: var(--bg-section); border: 1px solid var(--border); padding: 10px 20px; border-radius: var(--radius-sm); font-size: .86rem; color: var(--text-muted); margin-bottom: 32px; }

/* ---- FOOTER ---- */
footer { background: var(--gradient-dark); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--primary-light); }
.footer-brand p { font-size: .9rem; line-height: 1.7; opacity: .7; max-width: 280px; }
.footer-col h4 { font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .92rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-address { font-style: normal; font-size: .9rem; line-height: 1.7; opacity: .65; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-inner span { font-size: .85rem; opacity: .5; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.85); }

/* ---- COOKIE ---- */
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px); z-index: 9999; display: none;
  align-items: flex-end; justify-content: center; padding: 24px;
}
.cookie-overlay.show { display: flex; }
.cookie-box {
  background: var(--bg); border-radius: var(--radius-lg); padding: 36px 40px;
  max-width: 560px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.cookie-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.cookie-icon { margin-right: 6px; }
.cookie-box p { font-size: .9rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.65; }
.cookie-box p a { color: var(--primary); }
.cookie-toggles { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cookie-toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.cookie-toggle-label { font-size: .9rem; font-weight: 600; color: var(--text); }
.cookie-toggle-label span { display: block; font-size: .8rem; font-weight: 400; color: var(--text-light); margin-top: 2px; }
.toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: var(--border); border-radius: 24px; transition: .3s; }
.toggle-slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .3s; }
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: default; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; justify-content: center; min-width: 130px; }

/* ---- SERVICES ROWS ---- */
.services-detailed { display: flex; flex-direction: column; gap: 80px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.service-row-text .section-label { margin-bottom: 12px; }
.service-row-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; margin-bottom: 14px; }
.service-row-text p { color: var(--text-light); line-height: 1.75; margin-bottom: 12px; }
.check-simple { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.check-simple li { font-size: .93rem; color: var(--text-light); padding-left: 20px; position: relative; }
.check-simple li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ---- CONTACT (contact page) ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-col h2 { font-size: 1.7rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-item .contact-detail-icon { width: 46px; height: 46px; background: rgba(124,58,237,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-item .contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail-item h4 { font-weight: 700; color: var(--text); margin-bottom: 3px; font-size: .93rem; }
.contact-detail-item p, .contact-detail-item address, .contact-detail-item a { color: var(--text-light); font-size: .9rem; font-style: normal; }
.contact-form-col .contact-form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary); }
.form-check label { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.form-success[hidden] { display: none; }
.form-success:not([hidden]) { display: flex; align-items: center; gap: 10px; background: rgba(16,185,129,.08); border: 1.5px solid var(--success); border-radius: var(--radius-sm); padding: 14px 18px; color: #065f46; font-weight: 600; margin-top: 14px; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- TEAM CARD (about page) ---- */
.team-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: center; transition: var(--transition); padding: 36px 24px 30px; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.team-avatar svg { width: 40px; height: 40px; color: rgba(255,255,255,.85); }
.team-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.team-card > span { display: block; font-size: .85rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card > p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ---- TIMELINE ---- */
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 90px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 44px; position: relative; }
.timeline-year { min-width: 90px; font-size: 1.1rem; font-weight: 900; color: var(--primary); padding-top: 4px; text-align: right; }
.timeline-content { padding-left: 24px; border-left: none; }
.timeline-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-content p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.timeline-item::after { content: ''; position: absolute; left: 84px; top: 8px; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 2px solid var(--bg); }

/* ---- LEGAL PAGE ---- */
.legal-page { padding: 60px 0 80px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: .86rem; margin-bottom: 28px; }
.breadcrumb ol li { color: rgba(255,255,255,.55); }
.breadcrumb ol li a { color: rgba(255,255,255,.6); }
.breadcrumb ol li a:hover { color: #fff; }
.breadcrumb ol li:not(:last-child)::after { content: '›'; margin-left: 8px; }

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .hero { padding: 70px 0 60px; }
  .hero-text h1 { font-size: 2.1rem; }
  section, .section { padding: 60px 0; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-box { padding: 24px 20px; }
  .cookie-actions { flex-direction: column; }
}
