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

/* Page transitions */
body { opacity: 1; transition: opacity .35s ease; }
body.page-exit { opacity: 0; }

:root {
  --blue-900: #134E4A;
  --blue-800: #115E59;
  --blue-700: #0F766E;
  --blue-600: #0D9488;
  --blue-50:  #F0FDFA;
  --blue-100: #CCFBF1;
  --green-500: #10B981;
  --green-600: #059669;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --white:    #FFFFFF;
  --bg:       #F8FAFC;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --section-pad: 80px 20px;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-800); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TICKER BAR
   ============================================================ */

.ticker-bar {
  background: var(--blue-900);
  overflow: hidden;
  padding: 9px 0;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--blue-900), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left, var(--blue-900), transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap;
  padding: 0 28px;
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .01em;
}
.ticker-item::after {
  content: '·';
  margin-left: 28px;
  color: var(--blue-600);
  font-weight: 700;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -.5px; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -.3px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }
p  { color: var(--gray-700); }

.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--gray-600); max-width: 640px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-800);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-200, #BFDBFE);
}
.btn-outline:hover {
  background: var(--blue-50);
  color: var(--blue-800);
}
.btn-white {
  background: var(--white);
  color: var(--blue-800);
}
.btn-white:hover {
  background: var(--blue-50);
  color: var(--blue-900);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green-500);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16,185,129,.35);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-800);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.nav-logo-img { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; }
.nav-logo > div { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name { font-size: 24px; font-weight: 800; color: var(--blue-800); line-height: 1.1; }
.nav-logo-accent { color: var(--green-500); }
.nav-logo-tagline { font-size: 12px; font-weight: 400; color: var(--gray-400); letter-spacing: .01em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-links a.active { color: var(--blue-600); background: var(--blue-100, #CCFBF1); border-radius: 8px; font-weight: 600; }
.nav-cta { margin-left: 8px; }
.nav-links .btn-green { color: var(--white); background: var(--green-500); }
.nav-links .btn-green:hover { color: var(--white); background: var(--green-600); transform: translateY(-1px); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .15s;
  margin-left: 4px;
}
.nav-phone:hover { background: var(--blue-100); color: var(--blue-800); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn { color: var(--blue-600); background: var(--blue-50); }
.nav-dropdown.active .nav-dropdown-btn { color: var(--blue-600); }
.nav-dropdown-btn svg { transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 220px;
  padding: 6px;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-dropdown-menu a.active { color: var(--blue-600); background: var(--blue-50); }
.nav-dropdown-menu a svg { flex-shrink: 0; color: var(--gray-400); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 0 16px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
body.mobile-menu-open > *:not(.nav) { pointer-events: none; }

.mob-link {
  display: block;
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.mob-link:hover { background: var(--blue-50); color: var(--blue-600); }
.mob-link.active { color: var(--blue-600); font-weight: 600; }

.mob-group { border-bottom: 1px solid var(--gray-100); }
.mob-group:last-of-type { border-bottom: none; }
.mob-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.mob-group-btn:hover { color: var(--blue-600); }
.mob-chevron { transition: transform .2s ease; flex-shrink: 0; }
.mob-group-btn.open .mob-chevron { transform: rotate(180deg); }

.mob-group-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  background: var(--bg);
  border-left: 3px solid #BFDBFE;
  margin: 0 12px;
  border-radius: 0 6px 6px 0;
}
.mob-group-items.open { max-height: 600px; }
.mob-group-items a {
  display: block;
  padding: 7px 14px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color .12s;
}
.mob-group-items a:hover { color: var(--blue-600); }

.mob-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px 4px;
  margin-top: 4px;
  border-top: 1px solid var(--gray-100);
}
.mob-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  padding: 4px 0;
}
.mob-phone:hover { color: var(--blue-600); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, #1D4ED8 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: #93C5FD; font-style: normal; }
.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.hero-content {}
.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.2));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-trust-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-trust-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ============================================================
   SECTION PROBLEMS
   ============================================================ */

.problems {
  background: var(--white);
  padding: var(--section-pad);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #FEE2E2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
}
.problem-card h4 { color: var(--gray-900); margin-bottom: 6px; font-size: 15px; }
.problem-card p { font-size: 14px; color: var(--gray-600); }

/* ============================================================
   BENEFITS
   ============================================================ */

.benefits {
  background: var(--bg);
  padding: var(--section-pad);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all .25s;
}
.benefit-card:hover {
  border-color: var(--blue-200, #BFDBFE);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { font-size: 15px; color: var(--gray-600); }

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  background: var(--white);
  padding: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  background: var(--white);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 30px));
  width: 70%;
  aspect-ratio: 1;
  background: url('../img/logo-simbol.png') center / contain no-repeat;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.service-card-icon.blue { background: linear-gradient(135deg, var(--blue-600), var(--blue-800)); }
.service-card-icon.green { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.service-card-icon.purple { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.service-card-icon.orange { background: linear-gradient(135deg, #F59E0B, #D97706); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.service-feature svg { color: var(--green-500); flex-shrink: 0; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   PROCESS
   ============================================================ */

.process {
  background: var(--blue-50);
  padding: 48px 20px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-number {
  width: 80px;
  height: 80px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  font-size: 42px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px rgba(13,148,136,.15), 0 4px 20px rgba(37,99,235,.3);
}
.process-step h3 { margin-bottom: 10px; font-size: 19px; }
.process-step p { font-size: 15px; color: var(--gray-600); }

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  background: var(--bg);
  padding: var(--section-pad);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--blue-600);
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: var(--white);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.7); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-900);
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-currency { font-size: 22px; font-weight: 700; color: var(--gray-600); }
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.7); }
.pricing-period { font-size: 15px; color: var(--gray-400); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.5); }
.pricing-tagline { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,.75); }
.pricing-divider { border: none; border-top: 1px solid var(--gray-200); margin: 24px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,.15); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.88); }
.pricing-feature-icon { flex-shrink: 0; margin-top: 1px; }
.pricing-feature-icon.yes { color: var(--green-500); }
.pricing-feature-icon.no { color: var(--gray-400); }
.pricing-cta { display: block; text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  background: var(--white);
  padding: var(--section-pad);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 18px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-800);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--gray-900); }
.testimonial-role { font-size: 13px; color: var(--gray-500, #6B7280); }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--bg);
  padding: var(--section-pad);
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font);
  transition: background .15s;
}
.faq-question:hover { background: var(--blue-50); }
.faq-question.open { color: var(--blue-700); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all .25s;
}
.faq-question.open .faq-icon {
  background: var(--blue-600);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */

/* Risk Cards */
.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.risk-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: box-shadow .2s; }
.risk-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.risk-header { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; }
.risk-header-left { display: flex; align-items: flex-start; gap: 16px; }
.risk-icon { width: 40px; height: 40px; background: #FEF2F2; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #DC2626; }
.risk-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px; }
.risk-short { font-size: 14px; color: var(--gray-600); margin: 0; line-height: 1.5; }
.risk-chevron { flex-shrink: 0; color: var(--gray-400); transition: transform .25s; }
.risk-card.open .risk-chevron { transform: rotate(180deg); }
.risk-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.risk-card.open .risk-body { max-height: 400px; }
.risk-body p { padding: 0 24px 20px 80px; font-size: 15px; line-height: 1.75; color: var(--gray-600); margin: 0; border-top: 1px solid var(--gray-100); padding-top: 16px; }
.problems-subtitle { font-size: 22px !important; font-weight: 600; color: var(--gray-800); max-width: 680px; margin-left: auto; margin-right: auto; }
.problems-cta-text { font-size: 16px; color: var(--green-600); font-weight: 500; margin-top: 12px; }

/* Tech Band */
.tech-band { background: #f9fafb; padding: 32px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; overflow: hidden; }
.tech-track-wrap { overflow: hidden; width: 100%; }
.tech-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: techScroll 150s linear infinite; will-change: transform; }
.tech-track:hover { animation-play-state: paused; }
@keyframes techScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tech-item { display: flex; align-items: center; gap: 12px; opacity: .45; filter: grayscale(1); transition: opacity .25s, filter .25s; flex-shrink: 0; }
.tech-item:hover { opacity: 1; filter: grayscale(0); }
.tech-item svg { width: 46px; height: 46px; flex-shrink: 0; }
.tech-item .tech-svg-wide { width: 70px; height: 46px; }
.tech-item span { font-size: 17px; font-weight: 700; white-space: nowrap; }

.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 520px; margin: 0 auto 36px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-section {
  background: var(--white);
  padding: var(--section-pad);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 32px; font-size: 16px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.contact-item-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; }
.contact-item-value { font-size: 16px; font-weight: 600; color: var(--gray-900); }

.form-card {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ============================================================
   BLOG
   ============================================================ */

.blog-section {
  background: var(--bg);
  padding: var(--section-pad);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-img {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  transition: transform .3s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.03);
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card-category {
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-card-date { font-size: 13px; color: var(--gray-400); }
.blog-card h3 { margin-bottom: 10px; font-size: 19px; }
.blog-card h3 a { color: var(--gray-900); text-decoration: none; }
.blog-card h3 a:hover { color: var(--blue-600); }
.blog-card p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; }
.blog-read-more { color: var(--blue-600); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* ── STAR DISPLAY (refolosit în articole și widget) ── */
.star-rating { position: relative; display: inline-flex; font-size: 18px; line-height: 1; letter-spacing: 2px; }
.stars-bg { color: #D1D5DB; }
.stars-fg { position: absolute; top: 0; left: 0; overflow: hidden; color: #F59E0B; white-space: nowrap; }
.rating-num { font-weight: 700; font-size: 13px; color: var(--gray-700); vertical-align: middle; margin-left: 4px; }

/* ── ARTICLE RATING WIDGET ── */
.rating-widget {
  max-width: 480px;
  margin: 48px auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.rw-title { font-weight: 700; font-size: 17px; margin-bottom: 16px; color: var(--gray-900); }
.rw-current { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.rw-current .star-rating { font-size: 22px; letter-spacing: 3px; }
.rw-avg { font-size: 22px; font-weight: 800; color: var(--gray-900); }
.rw-count { font-size: 13px; color: var(--gray-400); }
.rw-vote { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.rw-label { font-size: 14px; color: var(--gray-600); }
.rw-stars { display: flex; gap: 2px; }
.rsb { background: none; border: none; font-size: 30px; color: #D1D5DB; cursor: pointer; transition: color .12s, transform .1s; line-height: 1; padding: 4px 3px; }
.rsb.hover { color: #F59E0B; }
.rsb:hover { transform: scale(1.2); }
.rw-thanks { color: #059669; font-weight: 600; font-size: 15px; padding-top: 4px; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.article-hero h1 { color: white; max-width: 800px; margin: 0 auto 16px; }
.article-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-top: 16px;
}
.article-featured-img {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 0;
  text-align: center;
}
.article-featured-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--gray-200);
  display: block;
  margin: 0 auto;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.article-body h2 { margin: 40px 0 16px; }
.article-body h3 { margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 16px 0 20px 0; padding-left: 0; }
.article-body li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.article-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-body th {
  background: var(--blue-800);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.article-body tr:nth-child(even) td { background: var(--gray-100); }
.article-related {
  background: var(--bg);
  border-top: 3px solid var(--gray-200);
  padding: 48px 20px;
}
.article-related h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gray-900);
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.article-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
}
.article-related-card:hover {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-related-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue-600);
}
.article-related-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
}
.article-cta {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin: 40px 0;
}
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { margin-bottom: 20px; color: var(--gray-600); font-size: 16px; }

.article-tldr {
  background: #F8FAFF;
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 36px;
}
.article-tldr strong {
  display: block;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.article-tldr ul { margin: 0; }
.article-tldr li {
  font-size: 15px;
  line-height: 1.55;
  padding: 3px 0 3px 22px;
  border: none;
}
.article-tldr li::before { content: '→'; color: var(--blue-600); font-weight: 700; }

.ai-answer {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #6ee7b7;
  border-left: 4px solid #10b981;
  border-radius: 12px;
  padding: 18px 22px 16px;
  margin-bottom: 32px;
}
.ai-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #059669;
  margin-bottom: 8px;
}
.ai-answer-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: ai-pulse 2s infinite;
}
@keyframes ai-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.ai-answer p { font-size: 15px !important; line-height: 1.65 !important; color: #065f46 !important; margin: 0 !important; }

.service-promo {
  background: #F0FDF9;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 36px 0;
}
.service-promo h4 { color: var(--blue-900); margin: 0 0 8px; font-size: 16px; }
.service-promo p { color: var(--gray-700); font-size: 15px; margin: 0 0 12px; }
.service-promo > a { display: inline-block; color: var(--blue-600); font-weight: 600; font-size: 14px; text-decoration: none; }
.service-promo > a:hover { text-decoration: underline; }

/* ============================================================
   TOC ARTICLE LAYOUT
   ============================================================ */
.article-toc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  align-items: start;
}
.toc-sidebar {
  position: sticky;
  top: 88px;
}
.toc-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.toc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  margin-bottom: 14px;
  display: block;
}
.toc-box a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 10px 7px 12px;
  font-size: 13.5px;
  color: var(--gray-600);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all .18s;
  line-height: 1.35;
  margin-bottom: 2px;
}
.toc-box a:hover { color: var(--green-600); background: #f0fdf4; border-left-color: var(--green-500); }
.toc-box a.toc-active { color: var(--green-600); background: #f0fdf4; border-left-color: var(--green-500); font-weight: 600; }
.toc-box a .toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 18px;
  margin-top: 1px;
}
.toc-box a.toc-active .toc-num { color: var(--green-600); }
.toc-progress {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.toc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600));
  border-radius: 2px;
  transition: width .2s;
  width: 0%;
}
.article-toc-content h2 {
  font-size: 26px;
  margin: 52px 0 14px;
  padding-top: 8px;
  color: var(--gray-900);
}
.article-toc-content h2:first-of-type { margin-top: 0; }
.article-toc-content h3 { font-size: 18px; margin: 28px 0 10px; color: var(--gray-800); }
.article-toc-content p { font-size: 16.5px; line-height: 1.78; color: var(--gray-700); margin-bottom: 16px; }
.article-toc-content ul { margin: 14px 0 20px; padding-left: 0; }
.article-toc-content li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; font-size: 15.5px; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.article-toc-content li::before {
  content: '✓'; color: var(--green-500); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.toc-service-card {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 28px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.toc-service-card .tsc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toc-service-card .tsc-body h3 { margin: 0 0 6px; font-size: 16px; color: var(--gray-900); }
.toc-service-card .tsc-body p { margin: 0 0 10px; font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.toc-service-card .tsc-body a { font-size: 13.5px; font-weight: 600; color: var(--green-600); text-decoration: none; }
.toc-service-card .tsc-body a:hover { text-decoration: underline; }
.section-divider {
  border: none; border-top: 1px solid var(--gray-200);
  margin: 48px 0;
}
@media(max-width: 900px) {
  .article-toc-layout { grid-template-columns: 1fr; }
  .toc-sidebar { position: static; }
  .toc-box { border-radius: 12px; }
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 70px 20px 60px;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 14px; font-size: clamp(28px, 4vw, 52px); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-400);
}
.breadcrumb-inner a { color: var(--gray-600); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--blue-600); }
.breadcrumb-sep { color: var(--gray-300); }

/* ============================================================
   TOOL PAGES
   ============================================================ */

.tool-page {
  min-height: 70vh;
  padding: 60px 20px 80px;
  background: var(--bg);
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.tool-card h1 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.tool-card > p {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 32px;
}
.tool-input-row {
  display: flex;
  gap: 10px;
}
.tool-input-row input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s;
}
.tool-input-row input:focus { outline: none; border-color: var(--blue-600); }
.tool-result {
  margin-top: 28px;
  padding: 24px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  display: none;
}
.tool-result.visible { display: block; }
.tool-result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.tool-result-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-900);
  word-break: break-all;
}
.tool-result-sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 8px;
}
.tool-status-ok  { color: var(--green-500); }
.tool-status-err { color: #EF4444; }
.tool-status-warn { color: #F59E0B; }
.tool-copy-btn {
  margin-top: 12px;
  font-size: 13px;
  color: var(--blue-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool-copy-btn:hover { text-decoration: underline; }
.pw-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.pw-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}
.pw-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--blue-600); cursor: pointer; }
.pw-length-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.pw-length-row label { font-size: 14px; color: var(--gray-700); white-space: nowrap; }
.pw-length-row input[type=range] { flex: 1; accent-color: var(--blue-600); }
.pw-length-row span { font-weight: 700; color: var(--blue-900); min-width: 28px; }
.pw-display {
  background: var(--gray-900);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.pw-display code {
  font-size: 17px;
  font-family: 'Courier New', monospace;
  color: #86EFAC;
  word-break: break-all;
  flex: 1;
}
.pw-actions { display: flex; gap: 8px; margin-top: 20px; }
.pw-strength {
  height: 4px;
  border-radius: 2px;
  margin-top: 14px;
  transition: width .3s, background .3s;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding: 36px 20px 20px;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: url('../img/footer-network.svg') bottom center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--green-500); }
.footer-brand-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-contact-line { font-size: 14px; margin-bottom: 6px; }
.footer-contact-line a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-line a:hover { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .8px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-search { display: flex; gap: 0; margin-bottom: 16px; }
.footer-search input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-right: none; border-radius: 6px 0 0 6px; padding: 8px 12px; color: var(--white); font-size: 13px; font-family: inherit; outline: none; }
.footer-search input::placeholder { color: rgba(255,255,255,.35); }
.footer-search input:focus { border-color: rgba(16,185,129,.5); background: rgba(255,255,255,.12); }
.footer-search button { background: var(--green); border: none; border-radius: 0 6px 6px 0; padding: 0 12px; color: white; cursor: pointer; display: flex; align-items: center; transition: background .2s; }
.footer-search button:hover { background: var(--green-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ============================================================
   AUDIT PAGE
   ============================================================ */

.audit-hero {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.audit-hero h1 { color: white; margin-bottom: 16px; }
.audit-hero p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 560px; margin: 0 auto; }
.audit-form-section { padding: var(--section-pad); }
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.audit-benefits { display: flex; flex-direction: column; gap: 20px; }
.audit-benefit { display: flex; gap: 14px; }
.audit-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--green-500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.audit-benefit h4 { margin-bottom: 4px; }
.audit-benefit p { font-size: 14px; color: var(--gray-600); }

/* ============================================================
   MISC
   ============================================================ */

.chip {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.chip-green { background: #D1FAE5; color: #065F46; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .audit-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: linear-gradient(135deg, #10443f 0%, #0d6b60 60%, #1d4abf 100%);
  overflow: hidden;
  padding: 22px 0;
  width: 100%;
  position: relative;
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), transparent);
}
.marquee-band::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.12), transparent);
}
.marquee-track {
  display: flex;
  width: 100%;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  padding-right: 40px;
  animation: marquee-scroll 140s linear infinite;
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .25s, text-shadow .25s;
}
.marquee-item:hover { opacity: 1; text-shadow: 0 0 18px rgba(16,185,129,.8), 0 0 40px rgba(16,185,129,.4); }
.marquee-item:hover .mq-title { color: #fff; }
.marquee-item:hover .mq-desc { color: rgba(255,255,255,.9); }
.marquee-track:has(.marquee-item:hover) .marquee-inner { animation-play-state: paused; }
.mq-title {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,.8);
  line-height: 1;
  transition: color .25s;
}
.mq-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  line-height: 1;
  transition: color .25s, opacity .25s;
  opacity: 0;
}
.marquee-item:hover .mq-desc { opacity: 1; }
.marquee-dot {
  color: rgba(255,255,255,.3);
  font-size: 22px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px 0; }
  .container { padding: 0 14px; }
  .hero { padding: 48px 0 40px; }
  .footer { padding: 52px 14px 28px; }
  .tool-page { padding: 32px 14px 56px; }
  .tool-card { padding: 24px 20px; }
  .tool-input-row { flex-direction: column; }
  .tool-input-row input { width: 100%; }
  .tool-input-row .btn { width: 100%; justify-content: center; }
  .pw-actions { flex-direction: column; }
  .pw-actions .btn { width: 100%; justify-content: center; }
  .pw-display { padding: 14px 16px; }
  .pw-display code { font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .btn-lg { padding: 12px 28px; font-size: 15px; }
  .marquee-inner { animation-duration: 70s; }
  .risk-grid { grid-template-columns: 1fr; }
  .risk-body p { padding: 16px 20px 20px; }
  .problems-subtitle { font-size: 18px !important; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-trust { gap: 20px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid > div:nth-child(n+2) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .form-card { padding: 24px 16px; }
}
