/* ============================================================
   ConsultFisc România — Custom Stylesheet
   Mobile-First, Dark Theme, Professional Tax Consultancy
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:   #07101F;
  --bg-secondary: #0C1829;
  --bg-card:      #101E30;
  --bg-card-hover:#132238;
  --border:       #1E3050;
  --border-light: #263D5E;

  --purple:       #7C3AED;
  --purple-mid:   #6D28D9;
  --purple-light: #A78BFA;
  --violet:       #8B5CF6;
  --pink:         #EC4899;
  --cyan:         #22D3EE;
  --green:        #10B981;

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.25);
}

/* ---------- Base Reset & Typography ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding { padding: 5rem 0; }

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

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

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--violet) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.55);
  background: linear-gradient(135deg, var(--violet) 0%, var(--purple) 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--purple-light);
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--purple);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(124,58,237,0.12);
  border-color: var(--violet);
  color: var(--violet);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(7, 16, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.site-logo .logo-text span { color: var(--purple-light); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.925rem;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--purple-light);
  transition: width 0.3s;
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,58,237,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(34,211,238,0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-primary) 0%, #080F1E 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,48,80,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,48,80,0.35) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 0%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-trust-item svg { color: var(--green); }

/* Hero SVG illustration container */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: floatCard 3s ease-in-out infinite;
  white-space: nowrap;
}
.hero-card-float.card-1 { top: 5%; right: -5%; animation-delay: 0s; }
.hero-card-float.card-2 { bottom: 10%; left: -8%; animation-delay: 1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.3rem; font-weight: 500; }
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(139,92,246,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--purple-light);
}
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--purple-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* ---------- Why Choose Us ---------- */
.why-section { background: var(--bg-secondary); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-icon-wrap {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(34,211,238,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.why-item-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-item-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(124,58,237,0.12);
}
.why-card-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.why-card-stat:last-child { margin-bottom: 0; }
.why-card-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-card-stat-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }

/* ---------- Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 3.5rem;
  left: calc(33.333% - 1rem);
  right: calc(33.333% - 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--purple) 50%, var(--border) 100%);
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.process-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.process-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.process-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #FBBF24;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; }
.testimonial-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Lead Form Section ---------- */
.form-section { background: var(--bg-primary); }
.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-card), 0 0 80px rgba(124,58,237,0.1);
  position: relative;
  overflow: hidden;
}
.form-container::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 40% 30% at 80% 20%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.form-header { text-align: center; margin-bottom: 2.5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-label .required { color: var(--pink); }
.form-input,
.form-select,
.form-textarea {
  background: rgba(7,16,31,0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  padding: 0.8rem 1rem;
  transition: all 0.25s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap { text-align: center; margin-top: 0.5rem; }
.form-submit-wrap .btn-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 2rem; }
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-privacy a { color: var(--text-secondary); text-decoration: underline; }

/* ---------- FAQ Section ---------- */
.faq-section { background: var(--bg-secondary); }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-light); }
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.25s;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(124,58,237,0.4); }
.faq-answer {
  background: rgba(7,16,31,0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq-answer.open { max-height: 400px; padding: 1.2rem 1.5rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, #0E0D2E 0%, #130B28 50%, #0B1829 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.2) 0%, transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.cta-desc { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-about .footer-logo { margin-bottom: 1rem; }
.footer-about p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-light); }
.footer-contact-item a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-policy-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-policy-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-policy-links a:hover { color: var(--text-secondary); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0E1628;
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.855rem; color: var(--text-secondary); flex: 1; min-width: 250px; }
.cookie-text a { color: var(--purple-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--purple), var(--violet));
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-cookie-reject:hover { color: var(--text-secondary); border-color: var(--border-light); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #0B0E1C 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1rem; color: var(--text-secondary); max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb span { color: var(--text-muted); }

/* ---------- Content Sections (inner pages) ---------- */
.content-section { padding: 4rem 0; }
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.content-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.content-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.5rem 0 0.7rem;
  color: var(--purple-light);
}
.content-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.content-card ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.content-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 1.4rem;
  position: relative;
}
.content-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 700;
}

/* ---------- Thanks Page ---------- */
.thanks-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
}
.thanks-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-card), 0 0 80px rgba(16,185,129,0.08);
}
.thanks-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05));
  border: 1.5px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--green);
}
.thanks-title { font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
.thanks-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(124,58,237,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}
.contact-detail-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
.contact-detail-value a { color: var(--text-primary); text-decoration: none; }
.contact-detail-value a:hover { color: var(--purple-light); }

/* ---------- Alert / Notification ---------- */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.alert-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
}
.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #F87171;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { gap: 2.5rem; }
  .why-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }

  /* Nav */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.5); }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-top: 1.5rem; width: 100%; }
  .nav-cta .btn-primary { width: 100%; justify-content: center; }
  .menu-toggle { display: flex; z-index: 1001; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(4px);
  }
  .nav-overlay.active { display: block; }

  /* Hero */
  .hero-section { padding: 6rem 0 4rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-container { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .thanks-card { padding: 2.5rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
}

/* ---------- Scroll-reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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; }
