/* ================================================
   SWIFT SUPPORT AGENCY — Complete Stylesheet
   Typography Scale:
   Hero title:     clamp(1.9rem, 4.5vw, 3.8rem)
   Section titles: clamp(1.9rem, 3.5vw, 2.8rem)
   Card titles:    1.15rem
   Body:           1rem / line-height 1.8
   Small:          0.85rem
   Spacing Base:   8px system
   Section padding: 110px vertical
================================================ */

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

/* ------------------------------------------------
   CSS VARIABLES
------------------------------------------------ */
:root {
  --navy-deep:    #050d1f;
  --navy:         #071428;
  --navy-mid:     #0a1f3d;
  --navy-light:   #0d2a52;
  --blue:         #2979ff;
  --blue-bright:  #5393ff;
  --gold:         #e8a020;
  --gold-light:   #f5b740;

  --text-primary:   #f0f6ff;
  --text-secondary: rgba(200, 220, 255, 0.7);
  --text-muted:     rgba(160, 190, 255, 0.4);

  --surface-1: rgba(41, 121, 255, 0.06);
  --surface-2: rgba(41, 121, 255, 0.10);
  --surface-3: rgba(41, 121, 255, 0.15);

  --border:       rgba(41, 121, 255, 0.12);
  --border-blue:  rgba(41, 121, 255, 0.3);
  --border-gold:  rgba(232, 160, 32, 0.25);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);

  --glow-blue: 0 0 28px rgba(41, 121, 255, 0.25);
  --glow-gold: 0 0 24px rgba(232, 160, 32, 0.2);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: all 0.28s ease;
  --max-width: 1180px;
  --section-pad: 110px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(
    180deg,
    #050d1f 0%,
    #071428 35%,
    #061830 70%,
    #071428 100%
  ) fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ------------------------------------------------
   TYPOGRAPHY
------------------------------------------------ */
h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

small { font-size: 0.85rem; }

.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-bright); }

/* ------------------------------------------------
   LAYOUT
------------------------------------------------ */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section { padding: var(--section-pad) 0; }

/* ------------------------------------------------
   SECTION HEADER
------------------------------------------------ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 14px;
  font-size: 1.05rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid var(--border-blue);
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ------------------------------------------------
   BUTTONS
------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow-blue), var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-blue);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold), var(--shadow-md);
}

/* ------------------------------------------------
   NAVBAR
------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 13, 31, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  flex-shrink: 0;
}

.navbar__logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.navbar__logo strong { color: var(--gold); font-weight: 700; }

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--text-primary); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.navbar__cta { padding: 10px 22px; font-size: 0.86rem; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.navbar__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .navbar__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(5, 13, 31, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    border-left: 1px solid var(--border);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .navbar__links.open { right: 0; }
  .nav-link { font-size: 1.05rem; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
}

/* ------------------------------------------------
   HERO
------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 80px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 121, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 121, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(41, 121, 255, 0.18) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__content h1 { margin-top: 4px; }

.hero__sub {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
  color: var(--text-secondary);
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

/* ---- Dashboard ---- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard {
  width: 100%;
  max-width: 420px;
  background: rgba(10, 31, 61, 0.9);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-blue);
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid var(--border);
}

.dashboard__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.dashboard__dot.red    { background: #ff5f57; }
.dashboard__dot.yellow { background: #febc2e; }
.dashboard__dot.green  { background: #28c840; }

.dashboard__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0.05em;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.dashboard__stat {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard__stat:last-child { border-right: none; }

.dashboard__stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.dashboard__stat-val small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dashboard__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.dashboard__tickets {
  overflow: hidden;
  position: relative;
  max-height: 192px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.dashboard__tickets-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  animation: ticketScroll 12s linear infinite;
}

.dashboard__tickets-track:hover {
  animation-play-state: paused;
}

@keyframes ticketScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.dashboard__ticket {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dashboard__ticket:hover { background: var(--surface-2); }

.ticket__status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ticket__status.resolved { background: #28c840; box-shadow: 0 0 6px rgba(40,200,64,0.5); }
.ticket__status.active   { background: var(--gold); box-shadow: 0 0 6px rgba(232,160,32,0.5); }

.ticket__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ticket__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket__time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ticket__badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ticket__badge.resolved {
  background: rgba(40, 200, 64, 0.12);
  color: #28c840;
  border: 1px solid rgba(40,200,64,0.2);
}

.ticket__badge.active {
  background: rgba(232, 160, 32, 0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.dashboard__footer {
  padding: 12px 18px;
  font-size: 0.76rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.2);
}

.dashboard__live {
  color: #28c840;
  font-size: 0.55rem;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__content { align-items: center; }
  .hero__sub { margin: 0 auto; }
  .hero__btns { justify-content: center; }
  .dashboard { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .hero__sub {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 320px;
  }

  .hero__btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .hero__btns .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 5px 13px;
    letter-spacing: 0.08em;
  }

  .dashboard__stat-val { font-size: 1.2rem; }
}

/* ------------------------------------------------
   TRUST STRIP
------------------------------------------------ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(41, 121, 255, 0.04);
  padding: 22px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-strip__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-strip__items {
  overflow: hidden;
  position: relative;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trust-strip__track {
  display: flex;
  gap: 36px;
  align-items: center;
  width: max-content;
  animation: trustSlide 18s linear infinite;
}

.trust-strip__track:hover { animation-play-state: paused; }

@keyframes trustSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0.75;
  transition: var(--transition);
  white-space: nowrap;
}

.trust-item i { color: var(--blue-bright); font-size: 1rem; }
.trust-item:hover { opacity: 1; color: var(--text-primary); }

@media (max-width: 600px) {
  .trust-strip__inner { justify-content: center; gap: 16px; }
  .trust-strip__label { width: 100%; text-align: center; }
}

/* ------------------------------------------------
   OUTCOMES STRIP
------------------------------------------------ */
.outcomes {
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.07) 0%, rgba(232, 160, 32, 0.04) 100%);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.outcomes__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.outcomes__item i {
  font-size: 1.3rem;
  color: var(--blue-bright);
  margin-top: 3px;
  flex-shrink: 0;
}

.outcomes__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.outcomes__item p { font-size: 0.85rem; line-height: 1.65; }

@media (max-width: 860px) {
  .outcomes__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 480px) {
  .outcomes__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ------------------------------------------------
   SERVICES
------------------------------------------------ */
.services { background: var(--navy-deep); }

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

.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: var(--border-blue);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--blue-bright);
  margin-bottom: 18px;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; line-height: 1.75; }

.services__more {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   PROCESS
------------------------------------------------ */
.process { background: var(--navy); }

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 16px;
}

.process__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(41, 121, 255, 0.1);
  border: 1.5px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: var(--transition);
}

.process__step:hover .process__num {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--glow-blue);
}

.process__body h3 { margin-bottom: 8px; }
.process__body p  { font-size: 0.88rem; line-height: 1.75; }

.process__connector {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--border-blue), var(--border-gold));
  margin-top: 28px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .process__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .process__connector {
    width: 1.5px;
    height: 36px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--border-blue), var(--border-gold));
  }

  .process__step { padding: 0; }
}

/* ------------------------------------------------
   WHY US
------------------------------------------------ */
.why { background: var(--navy-deep); }

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

.why__text { display: flex; flex-direction: column; }
.why__text h2 { margin: 12px 0 20px; }
.why__text p  { margin-bottom: 8px; }

.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why__card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.why__card:hover {
  border-color: var(--border-blue);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.why__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.why__card h3 { font-size: 1rem; margin-bottom: 8px; }
.why__card p  { font-size: 0.86rem; line-height: 1.7; }

@media (max-width: 860px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 480px) {
  .why__cards { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   TALENT NETWORK
------------------------------------------------ */
.agents { background: var(--navy); }

.agents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.agent-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.agent-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.agent-card__photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--border-blue);
}

.agent-card__placeholder {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--blue-bright);
}

.agent-card h3 { margin-bottom: 6px; }

.agent-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.agent-card p { font-size: 0.86rem; }

.agents__empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--surface-1);
  border: 1px dashed var(--border-blue);
  border-radius: var(--radius-xl);
  gap: 14px;
}

.agents__empty i {
  font-size: 2.4rem;
  color: var(--border-blue);
}

.agents__empty h3 { color: var(--text-secondary); font-weight: 500; }
.agents__empty p  { font-size: 0.9rem; max-width: 360px; }

/* ------------------------------------------------
   FAQ
------------------------------------------------ */
.faq { background: var(--navy-deep); }

.faq__inner { max-width: 760px; margin: 0 auto; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item.open {
  border-color: var(--border-blue);
  background: var(--surface-2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover { color: var(--blue-bright); }

.faq__question i {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.open .faq__question i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  padding: 16px 24px 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* ------------------------------------------------
   FINAL CTA SECTION
------------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 96px 0;
}

.cta-section__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-section__inner h2 { margin-bottom: 4px; }
.cta-section__inner p  { font-size: 1.05rem; }

/* ------------------------------------------------
   CONTACT
------------------------------------------------ */
.contact { background: var(--navy); }

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

.contact__card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.contact__card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact__card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(232,160,32,0.06) 0%, var(--surface-1) 100%);
}

.contact__card--featured:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold), var(--shadow-md);
}

.contact__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(41, 121, 255, 0.1);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-bright);
  margin-bottom: 18px;
}

.contact__icon--gold {
  background: rgba(232, 160, 32, 0.1);
  border-color: var(--border-gold);
  color: var(--gold);
}

.contact__card h3 { margin-bottom: 10px; }
.contact__card p  { font-size: 0.9rem; }

@media (max-width: 760px) {
  .contact__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ------------------------------------------------
   FOOTER
------------------------------------------------ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer__brand img {
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__nav-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer__nav-col a:hover { color: var(--gold); }

.footer__bottom { padding: 20px 0; }

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

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__socials { display: flex; gap: 16px; }

.footer__socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__socials a:hover {
  background: var(--surface-3);
  color: var(--gold);
  border-color: var(--border-gold);
}

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .footer__nav { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   INLINE STYLE REPLACEMENTS
------------------------------------------------ */
.why__cta     { margin-top: 32px; }
.contact__btn { margin-top: 20px; }
.agents__cta  { margin-top: 8px; }

/* ------------------------------------------------
   SCROLL REVEAL
------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ------------------------------------------------
   THEME TOGGLE
------------------------------------------------ */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--surface-3);
}

/* ------------------------------------------------
   LIGHT MODE
------------------------------------------------ */
[data-theme="light"] {
  --navy-deep:  #eef2ff;
  --navy:       #f0f4ff;
  --navy-mid:   #e2e9ff;
  --navy-light: #ccd6ff;

  --text-primary:   #07142a;
  --text-secondary: rgba(7, 20, 42, 0.65);
  --text-muted:     rgba(7, 20, 42, 0.38);

  --surface-1: rgba(41, 121, 255, 0.05);
  --surface-2: rgba(41, 121, 255, 0.09);
  --surface-3: rgba(41, 121, 255, 0.13);

  --border:      rgba(41, 121, 255, 0.13);
  --border-blue: rgba(41, 121, 255, 0.28);
  --border-gold: rgba(200, 130, 20, 0.28);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.13);
}

[data-theme="light"] body {
  background: linear-gradient(
    180deg,
    #eef2ff 0%,
    #f0f4ff 40%,
    #e8eeff 100%
  ) fixed;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(238, 242, 255, 0.95);
}

[data-theme="light"] .navbar__links {
  background: rgba(238, 242, 255, 0.98);
}

[data-theme="light"] .trust-strip {
  background: rgba(41, 121, 255, 0.04);
}

[data-theme="light"] .dashboard {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .dashboard__header,
[data-theme="light"] .dashboard__footer {
  background: #f5f8ff;
}

[data-theme="light"] .dashboard__ticket {
  background: #f8faff;
}

[data-theme="light"] .footer {
  background: #e2e9ff;
}

[data-theme="light"] .footer__bottom .container {
  border-top: 1px solid var(--border);
}
