/* ===== CSS Variables / Design System ===== */
:root {
  --color-navy: #0a1f3f;
  --color-navy-light: #132d5e;
  --color-blue: #1a5fa8;
  --color-blue-light: #2b7bd4;
  --color-cyan: #1ec8c8;
  --color-cyan-light: #3de8e8;
  --color-white: #ffffff;
  --color-off-white: #f4f7fb;
  --color-gray: #6b7c93;
  --color-gray-light: #e2e8f0;
  --color-dark-text: #1a202c;
  --color-body-text: #4a5568;

  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(10, 31, 63, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 31, 63, 0.10);
  --shadow-lg: 0 8px 32px rgba(10, 31, 63, 0.14);
  --shadow-xl: 0 16px 48px rgba(10, 31, 63, 0.18);

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

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  overflow-anchor: none;
}

body {
  font-family: var(--font-primary);
  color: var(--color-body-text);
  overflow-anchor: none;
  line-height: 1.7;
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-text);
  line-height: 1.25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-med);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(4, 12, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 200, 200, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.15);
}

.navbar-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.navbar-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  text-transform: lowercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-cyan-light));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--color-cyan), #15b3b3);
  color: var(--color-navy) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 16px rgba(30, 200, 200, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30, 200, 200, 0.45);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 200, 200, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 15% 80%, rgba(26, 95, 168, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(10, 31, 63, 1) 0%, #040a14 100%);
  overflow: hidden;
}

/* Dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle bottom edge glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 200, 200, 0.3), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(30, 200, 200, 0.08);
  border: 1px solid rgba(30, 200, 200, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-cyan-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #5eeede, var(--color-cyan), #38d1bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--color-cyan), #18b5b5);
  color: #041420;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 24px rgba(30, 200, 200, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(30, 200, 200, 0.45);
  filter: brightness(1.08);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-fast);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(30, 200, 200, 0.35);
  transform: translateY(-2px);
  color: var(--color-white);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 800px;
}

.hero-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(30, 200, 200, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-logo-wrapper:hover {
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 100px rgba(30, 200, 200, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-logo-wrapper::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 200, 200, 0.08), transparent 70%);
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-logo-wrapper img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(10, 31, 63, 0.12));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Decorative orbs in hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: var(--color-cyan);
  filter: blur(60px);
}

.hero-shapes .shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -5%;
  right: -3%;
  opacity: 0.04;
  animation: float-shape 16s ease-in-out infinite;
}

.hero-shapes .shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 2%;
  opacity: 0.03;
  animation: float-shape 12s ease-in-out infinite reverse;
}

.hero-shapes .shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 40%;
  opacity: 0.025;
  animation: float-shape 14s ease-in-out infinite 3s;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -25px);
  }

  66% {
    transform: translate(-15px, 20px);
  }
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(26, 95, 168, 0.08), rgba(30, 200, 200, 0.08));
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.75;
}

/* ===== About Section ===== */
.about {
  background: var(--color-off-white);
}

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

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-body-text);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-med);
  border: 1px solid rgba(10, 31, 63, 0.04);
}

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

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 95, 168, 0.1), rgba(30, 200, 200, 0.1));
  color: var(--color-blue);
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  font-size: 0.88rem;
  color: var(--color-gray);
  font-weight: 500;
}

/* ===== Services Section ===== */
.services {
  background: var(--color-white);
}

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

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-light);
  transition: all var(--transition-med);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-blue), var(--color-cyan));
  opacity: 0;
  transition: opacity var(--transition-med);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.06), rgba(30, 200, 200, 0.08));
  transition: all var(--transition-med);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-gray);
}

/* ===== Debtor Section (CTA) ===== */
.debtor {
  background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-blue) 100%);
  position: relative;
  overflow: hidden;
}

.debtor::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(30, 200, 200, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.debtor-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  overflow-anchor: none;
}

.debtor-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.debtor-content .subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-cyan-light);
  margin-bottom: 24px;
}

.debtor-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.debtor-content .highlight {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.debtor-info-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  margin-top: 12px;
}

.debtor-info-box .icon {
  font-size: 1.8rem;
}

.debtor-info-box .info {
  text-align: left;
}

.debtor-info-box .info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.debtor-info-box .info a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.debtor-info-box .info a:hover {
  color: var(--color-cyan-light);
}

/* RODO Toggle */
.rodo-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.rodo-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(30, 200, 200, 0.25);
}

.rodo-toggle-icon {
  font-size: 1.2rem;
}

.rodo-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.rodo-arrow.rotated {
  transform: rotate(180deg);
}

/* RODO Content */
.rodo-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  overflow-anchor: none;
}

.rodo-content.open {
  max-height: 15000px;
}

.rodo-inner {
  margin-top: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: justify;
  font-family: var(--font-primary);
}

.rodo-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.rodo-inner .rodo-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  font-style: italic;
}

.rodo-inner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-cyan-light);
  margin-top: 24px;
  margin-bottom: 12px;
}

.rodo-inner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
}

.rodo-inner ul,
.rodo-inner ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.rodo-inner ul {
  list-style: disc;
}

.rodo-inner ol {
  list-style: decimal;
}

.rodo-inner li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.rodo-inner ul ul,
.rodo-inner ol ol,
.rodo-inner ul ol,
.rodo-inner ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 24px;
}

.rodo-inner a {
  color: var(--color-cyan-light);
  transition: color var(--transition-fast);
}

.rodo-inner a:hover {
  color: var(--color-white);
}

/* ===== Contact Section ===== */
.contact {
  background: var(--color-off-white);
}

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

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 31, 63, 0.04);
  transition: all var(--transition-med);
}

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

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  color: var(--color-white);
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--color-gray);
}

.contact-card a {
  display: block;
  transition: color var(--transition-fast);
}

.contact-card a:hover {
  color: var(--color-blue);
}

.contact-card .label {
  font-weight: 600;
  color: var(--color-dark-text);
  font-size: 0.85rem;
  margin-top: 12px;
  margin-bottom: 2px;
}

.contact-card .hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(30, 200, 200, 0.08), rgba(26, 95, 168, 0.08));
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-blue);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer p {
  font-size: 0.85rem;
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrapper {
    width: 260px;
    height: 260px;
  }

  .hero-logo-wrapper img {
    width: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(4, 12, 24, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(30, 200, 200, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .debtor-content h2 {
    font-size: 1.6rem;
  }

  .hero-logo-wrapper {
    width: 200px;
    height: 200px;
  }

  .hero-logo-wrapper img {
    width: 160px;
  }

  .debtor-info-box {
    flex-direction: column;
    text-align: center;
  }

  .debtor-info-box .info {
    text-align: center;
  }
}