:root {
  --primary: #446084;
  --primary-dark: #334d66;
  --success: #7a9c59;
  --success-hover: #6b8a4d;
  --text: #333;
  --text-light: #666;
  --bg-light: #f1f1f1;
  --white: #fff;
  --container: 1200px;
  --header-height: 83px;
  --font: "Lato", sans-serif;
  --font-alt: "Dancing Script", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

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

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  z-index: 10000;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: height 0.3s;
}
.header.scrolled { --header-height: 70px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img { max-height: var(--header-height); width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-desktop a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text);
  padding: 10px 18px;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--primary); }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons {
  display: flex;
  gap: 4px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  font-size: 1rem;
}
.social-icons a:hover { color: var(--primary); }

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 79px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-success {
  background: var(--success);
  color: var(--white);
}
.btn-success:hover {
  background: var(--success-hover);
  color: var(--white);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 80px 30px 30px;
  transform: translateX(-100%);
  transition: transform 0.3s;
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid #eee;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

/* Hero Slider */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.hero-content h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  max-width: 500px;
  margin-bottom: 24px;
}
.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.active { background: var(--primary); }
.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.8);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  transition: background 0.2s;
}
.hero-arrows button:hover { background: var(--white); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Features */
.features {
  padding: 60px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.feature-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--text);
}
.section-title h2::first-letter { text-transform: uppercase; }

/* Services */
.services {
  padding: 60px 0 80px;
  background: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-card a.more {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: lowercase;
  color: var(--primary);
}

/* Stats */
.stats {
  padding: 70px 0;
  background: var(--primary);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  text-transform: lowercase;
}
.stat-label::first-letter { text-transform: uppercase; }

/* Partners CTA */
.partners-cta {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}
.partners-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page header */
.page-header {
  padding: 80px 0 60px;
  background: var(--bg-light);
  text-align: center;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}

/* Content sections */
.content-section {
  padding: 60px 0;
}
.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 16px;
  color: var(--primary);
}
.content-section p,
.content-section li {
  color: var(--text-light);
  margin-bottom: 14px;
}
.content-section ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.content-two-col img {
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Footer */
.footer {
  background: #2b2b2b;
  color: #aaa;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: #aaa; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-bottom strong { color: var(--white); }

/* Breadcrumb */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--primary); }

/* Responsive */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Public notice / dispute */
.notice-banner {
  background: #a93226;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-banner 2.5s ease-in-out infinite;
}

@keyframes pulse-banner {
  0%, 100% { background: #a93226; }
  50% { background: #c0392b; }
}

.hero-alert {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 50px 20px 60px;
  text-align: center;
}

.hero-alert h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-alert .danger-tag {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #ff6b6b;
}

.hero-alert .hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.6;
  color: #ecf0f1;
}

.hero-alert .hero-warnings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.hero-alert .hero-warnings span {
  background: rgba(231, 76, 60, 0.25);
  border: 2px solid #e74c3c;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-alert .debt-mega {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ff6b6b;
  margin: 24px 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-alert .debt-label {
  font-size: 1.1rem;
  color: #bdc3c7;
  margin-bottom: 30px;
}

.tech-alert-box {
  background: #1a1a2e;
  border: 3px solid #e74c3c;
  border-radius: 8px;
  padding: 32px;
  margin: 36px 0;
  color: #ecf0f1;
}

.tech-alert-box h3 {
  color: #ff6b6b;
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-alert-box .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.tech-alert-box .tech-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 18px;
}

.tech-alert-box .tech-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #95a5a6;
  margin-bottom: 8px;
}

.tech-alert-box .tech-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.tech-alert-box .ip-address {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: #ff6b6b;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 1px;
  word-break: break-all;
}

.tech-alert-box p {
  color: #bdc3c7;
  line-height: 1.75;
  margin-bottom: 12px;
}

.tech-alert-box p strong {
  color: #fff;
}

.tech-alert-box .check-warning {
  background: rgba(231, 76, 60, 0.2);
  border-left: 4px solid #e74c3c;
  padding: 16px 20px;
  margin-top: 16px;
  border-radius: 0 4px 4px 0;
}

.tech-alert-box .check-warning strong {
  color: #ff6b6b;
}

.dispute-section {
  padding: 60px 0;
  background: #fff;
}

.dispute-section.alt {
  background: var(--bg-light);
}

.dispute-intro {
  max-width: 900px;
  margin: 0 auto 40px;
}

.dispute-intro h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 24px;
  line-height: 1.3;
}

.dispute-intro h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

.dispute-intro p,
.dispute-intro li {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.debt-highlight {
  display: inline-block;
  background: #fdecea;
  border: 2px solid #c0392b;
  color: #c0392b;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  margin: 20px 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 5px solid #e67e22;
  padding: 24px 28px;
  margin: 30px 0;
  border-radius: 0 6px 6px 0;
}

.warning-box h3 {
  color: #856404;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.warning-box p,
.warning-box li {
  color: #664d03;
  margin-bottom: 10px;
}

.warning-box ul {
  padding-left: 20px;
}

.profile-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.profile-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 22px;
  transition: box-shadow 0.2s;
}

.profile-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.profile-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.profile-card .role {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.profile-card a {
  font-weight: 700;
  font-size: 0.9rem;
}

.evidence-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.evidence-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.evidence-item img {
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s;
}

.evidence-item img:hover { opacity: 0.9; }

.evidence-item figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: #fafafa;
}

.evidence-featured {
  max-width: 100%;
  border: 2px solid #c0392b;
  border-radius: 6px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.victim-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 32px;
  max-width: 700px;
  margin: 30px auto 0;
}

.victim-form h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.legal-disclaimer {
  font-size: 0.82rem;
  color: #888;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-desktop, .header-right .social-icons, .header-right .btn { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .features-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { height: 400px; }
  .footer-grid { grid-template-columns: 1fr; }
  .debt-highlight { font-size: 1.4rem; padding: 10px 18px; }
}
