/* ============================================================
   ROCKBRIDGE CAPITAL MANAGEMENT AG
   Design: Figgus-inspired dark premium finance
   Colors: Pure black bg, white text, navy/blue accent
   Typography: Syne (display) + DM Sans (body)
   ============================================================ */

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

:root {
  --black:       #000000;
  --black-soft:  #0a0a0a;
  --black-card:  #111111;
  --black-card2: #161616;
  --black-hover: #1c1c1c;
  --white:       #ffffff;
  --gray-100:    #f5f5f5;
  --gray-300:    #cccccc;
  --gray-500:    #888888;
  --gray-700:    #444444;

  /* Brand accent - navy/blue */
  --accent:      #4a90d9;
  --accent-dark: #1b3a6b;
  --accent-light:#7ab8f5;
  --accent-bg:   rgba(74,144,217,0.1);
  --accent-border: rgba(74,144,217,0.25);

  /* Borders */
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(255,255,255,0.15);

  /* Radius */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgb(255 255 255);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-main {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #4a90d9;
  text-transform: uppercase;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #4a90d9;
  text-transform: uppercase;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a90d9;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active { color: #4a90d9; }
.navbar-nav a:hover::after,
.navbar-nav a.active::after { width: 100%; }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-item-dropdown > a svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav-item-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray-300);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding-left: 20px;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu .dropdown-icon {
  width: 26px; height: 26px;
  background: var(--accent-bg);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dropdown-menu .dropdown-icon svg { width: 13px; height: 13px; color: var(--accent); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #4a90d9;
  color: rgb(255 255 255);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-nav:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.btn-nav svg { width: 13px; height: 13px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgb(255 255 255);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 30px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu ul a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-menu ul a:hover { color: var(--white); }
.mobile-menu .btn-nav { margin-top: 16px; width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn svg { width: 16px; height: 16px; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,144,217,0.3);
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   HERO SECTION — Figgus 1/1
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  background: var(--black);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Hero cards row — Figgus 3-column */
.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--border);
}

.hero-card-left {
  background: var(--black-card);
  border-right: 1px solid var(--border);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}
.hero-card-left .quote-icon {
  font-size: 56px;
  color: var(--accent);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 20px;
}
.hero-card-left .quote-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.hero-card-left .client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.hero-card-left .client-avatars {
  display: flex;
}
.hero-card-left .client-avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-dark);
  border: 2px solid var(--black-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-left: -8px;
  color: var(--accent-light);
}
.hero-card-left .client-avatars span:first-child { margin-left: 0; }
.hero-card-left .client-label { font-size: 12px; color: var(--gray-700); }

.hero-card-center {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #0d0d0d;
}
.hero-card-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s ease;
}
.hero-card-center:hover img { transform: scale(1.03); }

.hero-card-right {
  background: var(--accent-dark);
  border-left: 1px solid rgba(74,144,217,0.3);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-right .stat-big {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-card-right .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  line-height: 1.4;
}
.hero-card-right .mini-widget {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 24px;
}
.hero-card-right .mini-widget .widget-title {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.hero-card-right .mini-widget .widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
.hero-card-right .mini-widget .widget-row:last-child { border-bottom: none; }
.hero-card-right .mini-widget .widget-row span:first-child { color: rgba(255,255,255,0.5); }
.hero-card-right .mini-widget .widget-row span:last-child { color: var(--white); font-weight: 600; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--black);
}
.partners-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.partners-track:hover { animation-play-state: paused; }
.partner-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-700);
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color var(--transition);
}
.partner-item:hover { color: var(--gray-500); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION — Figgus asymmetric
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left { padding-right: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.about-stat {
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
.about-stat:nth-child(2) { padding-left: 24px; }
.about-stat .stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-stat .stat-lbl {
  font-size: 13px;
  color: var(--gray-700);
  margin-top: 6px;
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.85);
}
.about-visual .floating-card {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  min-width: 190px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}
.about-visual .floating-card .fc-label {
  font-size: 10px;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.about-visual .floating-card .fc-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.about-visual .floating-card .fc-sub {
  font-size: 12px;
  color: var(--gray-700);
  margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION — Figgus 3x2 grid
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--black-soft);
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black-card);
  padding: 40px 36px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover { background: var(--black-hover); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(74,144,217,0.1);
  border: 1px solid rgba(74,144,217,0.2);
  border-radius: 50px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent-bg);
  border-color: var(--accent-border);
}
.service-icon svg { width: 22px; height: 22px; color: var(--gray-300); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: var(--accent); }
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0;
  transition: all var(--transition);
}
.service-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   CTA BANNER — Figgus "Plan Your Finance"
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--accent-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner .section-label { color: rgba(255,255,255,0.6); }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner .section-desc { margin: 0 auto 44px; color: rgba(255,255,255,0.65); }
.cta-banner .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover { background: var(--gray-100); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ============================================================
   HOW IT WORKS — Figgus steps
   ============================================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--black);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.8);
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.how-step:last-child { border-bottom: none; }
.how-step:hover .step-num-circle { background: var(--accent-bg); border-color: var(--accent-border); }
.step-num-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}
.step-num-circle svg { width: 16px; height: 16px; color: var(--accent); }
.step-num {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--black-soft);
}
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.testimonial-card {
  background: var(--black-card);
  padding: 36px;
  transition: background var(--transition);
}
.testimonial-card:hover { background: var(--black-hover); }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 22px;
}
.testimonial-stars svg { width: 14px; height: 14px; color: var(--accent); fill: var(--accent); }
.testimonial-text {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role { font-size: 12px; color: var(--gray-700); margin-top: 2px; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
  padding: 120px 0;
  background: var(--black);
}
.team-header { text-align: center; margin-bottom: 72px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-card {
  background: var(--black-card);
  padding: 40px 36px;
  text-align: center;
  transition: background var(--transition);
}
.team-card:hover { background: var(--black-hover); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), #2a5298);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-light);
  margin: 0 auto 24px;
}
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.team-position {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}
.team-desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--black-soft);
}
.faq-header { text-align: center; margin-bottom: 72px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.faq-item {
  background: var(--black-card);
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item.open { background: var(--black-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question span {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent-bg); border-color: var(--accent-border); transform: rotate(45deg); }
.faq-icon svg { width: 13px; height: 13px; color: var(--gray-300); }
.faq-item.open .faq-icon svg { color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   APPOINTMENT CTA
   ============================================================ */
.appointment-cta {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.appointment-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27,58,107,0.25) 0%, transparent 70%);
}
.appointment-cta-inner {
  position: relative;
  z-index: 2;
}
.appointment-cta .section-title { margin-bottom: 16px; }
.appointment-cta .section-desc { margin: 0 auto 44px; }
.appointment-cta .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-main { font-size: 20px; margin-bottom: 4px; }
.footer-brand .logo-sub { margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: #4a90d9;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--gray-700); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 140px 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(27,58,107,0.2) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .section-title { margin-top: 12px; }
.page-header .section-desc { margin-top: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--border-hover); }
.contact-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-card-title { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.contact-card-value { font-size: 14px; color: var(--gray-300); line-height: 1.5; }
.contact-card-value a { color: var(--gray-300); transition: color var(--transition); }
.contact-card-value a:hover { color: var(--white); }

.company-data-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.company-data-card h4 {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.company-data-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.company-data-row:last-child { border-bottom: none; }
.company-data-row .key { color: var(--gray-700); }
.company-data-row .val { color: var(--gray-300); font-weight: 500; text-align: right; }

/* Contact Form */
.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.contact-form-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.08);
}
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: none; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.form-checkbox label a { color: var(--accent); text-decoration: underline; }
.form-note { font-size: 12px; color: var(--gray-700); margin-top: 12px; }
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.form-success .success-icon svg { width: 28px; height: 28px; color: var(--accent); }
.form-success h3 { font-family: 'Syne', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--gray-500); max-width: 360px; margin: 0 auto 28px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section { padding: 80px 0; background: var(--black); }
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-family: 'Syne', sans-serif; font-size: 17px; color: var(--gray-100); margin: 28px 0 10px; }
.legal-content p { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content ul li { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content strong { color: var(--gray-300); }
.legal-content .info-box {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-content .info-box p { margin: 0; }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail { padding: 80px 0; background: var(--black); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-detail-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 14px;
}
.service-detail-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-detail-content ul { margin: 0 0 20px 20px; }
.service-detail-content ul li {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 8px;
}
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.sidebar-card h4 {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--gray-500);
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
.sidebar-nav a svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success {
  background: rgba(74,144,217,0.08);
  border: 1px solid rgba(74,144,217,0.25);
  color: var(--accent-light);
}
.alert-error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  color: #fca5a5;
}
.alert svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 520px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 14px; color: var(--gray-300); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-buttons .btn { padding: 10px 20px; font-size: 13px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.75s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.58s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual .floating-card { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-card-left { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-card-right { border-left: none; border-top: 1px solid rgba(74,144,217,0.3); }
  .hero-card-center { min-height: 260px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid, .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 44px; }
  .hero-cards { display: none; }
  .section-title { font-size: 34px; }
  .contact-form-wrap { padding: 24px; }
  .faq-list { border-radius: var(--radius-sm); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 12px 22px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .about-stat:last-child { border-bottom: none; }
}
