/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --pink:       #E8185D;
  --pink-dark:  #c0144e;
  --pink-light: #fce4ec;
  --gold:       #F8B400;
  --gold-dark:  #d49a00;
  --gold-light: #fff8e1;
  --navy:       #1A2B4A;
  --navy-mid:   #243960;
  --navy-light: #e8edf5;
  --black:      #111827;
  --gray-800:   #1f2937;
  --gray-600:   #4b5563;
  --gray-400:   #9ca3af;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --white:      #ffffff;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --transition: .25s ease;

  --font: 'Inter', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--gray-100); }
.section-form { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge.light {
  color: var(--gold);
  background: rgba(248,180,0,.15);
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title.left { text-align: left; }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,.7); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,24,93,.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,24,93,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(26,43,74,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  padding: 10px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 48px; border-radius: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2d1a3a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -150px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -80px; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--pink);
  top: 40%; left: 10%;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(248,180,0,.35);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.highlight-pink { color: var(--pink); }
.highlight-gold  { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: bounce 1.6s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-100);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
}

/* ── Services tabs ───────────────────────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--navy); background: var(--navy-light); }
.tab-btn.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list { padding: 0; }
.service-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '▸';
  color: var(--pink);
  font-size: 10px;
}
.service-list li:last-child { border-bottom: none; }

/* ── Process ─────────────────────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(232,24,93,.4);
}
.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.process-connector {
  flex: 0 0 auto;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  align-self: 60px;
  margin-top: 32px;
}

/* ── Sectors ─────────────────────────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.sector-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid transparent;
}
.sector-private {
  background: var(--gold-light);
  border-color: rgba(248,180,0,.3);
}
.sector-public {
  background: var(--navy-light);
  border-color: rgba(26,43,74,.2);
}
.sector-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sector-icon { font-size: 40px; }
.sector-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}
.sector-list { margin-bottom: 24px; }
.sector-list li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sector-list li::before { content: '✓'; color: var(--pink); font-weight: 700; }
.sector-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(248,180,0,.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.sector-badge.public {
  color: var(--navy);
  background: rgba(26,43,74,.1);
}

/* ── About ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .section-badge { display: inline-block; }
.about-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon { font-size: 28px; flex-shrink: 0; }
.value-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}
.value-item span { font-size: 13px; color: var(--gray-600); }

.about-visual { position: relative; }
.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-4px); }
.card-icon { font-size: 32px; }
.card-1 { background: linear-gradient(135deg, var(--pink), #b01049); }
.card-2 { background: linear-gradient(135deg, var(--gold), #d49a00); color: var(--navy); }
.card-3 { background: linear-gradient(135deg, var(--navy), #0d1a2e); }
.card-4 { background: linear-gradient(135deg, #2d4a7a, var(--navy)); }

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-info .section-title { margin-top: 12px; }
.form-info-text {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 28px;
}
.form-guarantees { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.guarantee-icon { font-size: 18px; flex-shrink: 0; }
.contact-direct {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-direct p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.contact-email {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  transition: color var(--transition);
}
.contact-email:hover { color: var(--white); }

.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.required { color: var(--pink); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,24,93,.12);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.textarea-footer { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 4px; }
.char-counter { font-size: 12px; color: var(--gray-400); white-space: nowrap; }
.field-error { font-size: 12px; color: #ef4444; min-height: 16px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(232,24,93,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,24,93,.5);
}
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.spinner {
  width: 18px; height: 18px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 8px; }
.success-sub { font-size: 12px; color: var(--gray-400); }

.form-error-msg {
  text-align: center;
  padding: 20px;
  background: #fef2f2;
  border-radius: var(--radius);
  margin-top: 16px;
}
.error-icon { font-size: 28px; margin-bottom: 8px; }
.form-error-msg p { font-size: 14px; color: #dc2626; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 52px; border-radius: 6px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  transition: color var(--transition);
}
.footer-cta:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .process-steps { gap: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 101; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-container { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .about-card-stack { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
