﻿/* ==========================================================================
   PRIRSTIX PRO - DESIGN SYSTEM & PRODUCTION STYLESHEET
   ========================================================================== */

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.35);
  --accent: #e11d48;
  --accent-glow: rgba(225, 29, 72, 0.3);
  --cyan: #06b6d4;
  
  --bg-dark: #070a13;
  --bg-dark-card: #0f172a;
  --bg-dark-border: #1e293b;
  
  --bg-light: #f8fafc;
  --bg-light-alt: #f1f5f9;
  --bg-white: #ffffff;
  
  --text-dark-main: #0f172a;
  --text-dark-muted: #475569;
  --text-light-main: #f8fafc;
  --text-light-muted: #94a3b8;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0,0,0,0.12), 0 10px 15px -5px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 35px var(--primary-glow);
  
  --container-max: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 10, 19, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-dark-border);
  padding: 14px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-light-main);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  color: #ffffff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #be123c 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f43f5e 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--text-light-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--text-light-main);
  background-color: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-light-main);
  padding: 85px 0 95px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fda4af;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px #ef4444; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.8px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-dark-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 500;
}

.trust-icon {
  color: #38bdf8;
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
}

.floating-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   SECTION COMMONS
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 85px 0;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   VALUE PROPOSITION / BENEFITS (6 BLOCKS)
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.benefit-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.benefit-card:nth-child(2) .benefit-icon-wrap { background: #fff1f2; color: var(--accent); }
.benefit-card:nth-child(3) .benefit-icon-wrap { background: #ecfeff; color: var(--cyan); }
.benefit-card:nth-child(4) .benefit-icon-wrap { background: #f5f3ff; color: #7c3aed; }
.benefit-card:nth-child(5) .benefit-icon-wrap { background: #fefce8; color: #ca8a04; }
.benefit-card:nth-child(6) .benefit-icon-wrap { background: #f0fdf4; color: #16a34a; }

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   HOW IT WORKS (4 STEPS)
   -------------------------------------------------------------------------- */
.how-section {
  background-color: var(--bg-light-alt);
}

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

.step-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card:hover .step-number {
  color: var(--primary);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SERVICES & SPACES (6 ITEMS)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: #0f172a;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.93rem;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-dark-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SOCIAL PROOF / TESTIMONIALS (3 PERSONAS)
   -------------------------------------------------------------------------- */
.proof-section {
  background-color: var(--bg-dark);
  color: var(--text-light-main);
}

.proof-section .section-title {
  color: var(--text-light-main);
}

.proof-section .section-subtitle {
  color: var(--text-light-muted);
}

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

.testimonial-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-dark-border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light-main);
}

.author-role {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   FAQ SECTION (ACCORDION)
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item summary {
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform 0.2s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 26px 24px;
  font-size: 0.96rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   ABOUT US & TRANSPARENCY SECTION
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--text-dark-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.transparency-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 24px;
}

.transparency-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark-main);
  margin-bottom: 8px;
}

.transparency-box p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   LEAD GENERATION FORM SECTION
   -------------------------------------------------------------------------- */
.form-section {
  background: linear-gradient(180deg, #070a13 0%, #0d1527 100%);
  color: var(--text-light-main);
  position: relative;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-header p {
  color: var(--text-light-muted);
  font-size: 0.98rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: #090d16;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 3px;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.83rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: #38bdf8;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  margin-top: 15px;
}

.form-alert {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-alert.success {
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid #16a34a;
  color: #86efac;
}

.form-alert.error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid #dc2626;
  color: #fca5a5;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #030712;
  color: var(--text-light-muted);
  padding: 70px 0 30px;
  border-top: 1px solid #111827;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 16px;
  line-height: 1.65;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light-main);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-legal-block {
  background: #090d16;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-legal-block strong {
  color: #e2e8f0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   LEGAL PAGES SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.legal-page-header {
  background: var(--bg-dark);
  color: var(--text-light-main);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--bg-dark-border);
}

.legal-content-wrap {
  background: var(--bg-white);
  padding: 60px 0 80px;
}

.legal-article {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
}

.legal-article h1 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark-main);
  margin-bottom: 10px;
}

.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark-main);
  margin-top: 40px;
  margin-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 8px;
}

.legal-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark-main);
  margin-top: 26px;
  margin-bottom: 10px;
}

.legal-article p {
  margin-bottom: 16px;
}

.legal-article ul, .legal-article ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-article li {
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 30px;
}

.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th, .legal-table td {
  border: 1px solid #cbd5e1;
  padding: 12px 16px;
  text-align: left;
}

.legal-table th {
  background-color: #f1f5f9;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 99999;
  display: none;
  color: var(--text-light-main);
}

.cookie-banner.active {
  display: block;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cookie-desc a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.6rem; }
  .benefits-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.15rem; }
  .section-title { font-size: 1.95rem; }
  .benefits-grid, .services-grid, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #090d16;
    padding: 24px;
    border-bottom: 1px solid var(--bg-dark-border);
  }
  .menu-toggle { display: block; }
  .hero-trust-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
