/* ================================================
   NEXTXEN Technology — Modern Design System
   ================================================ */

/* === VARIABLES === */
:root {
  --primary:        #0B3D91;
  --primary-light:  #1a56c4;
  --primary-dark:   #071d47;
  --secondary:      #2ECC71;
  --secondary-dark: #1fb85e;
  --bg:             #f7f9fc;
  --card:           #ffffff;
  --text:           #0f172a;
  --muted:          #64748b;
  --border:         #e2e8f0;
  --shadow:         0 4px 20px rgba(11,61,145,.07);
  --shadow-lg:      0 16px 48px rgba(11,61,145,.14);
  --radius:         18px;
  --radius-sm:      12px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* === CONTAINER & UTILITIES === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.center  { text-align: center; }
.mt-3    { margin-top: 16px; }
.mt-4    { margin-top: 28px; }
.mt-6    { margin-top: 48px; }
.note    { font-size: 14px; color: var(--muted); }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(11,61,145,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.logo  { height: 44px; }

/* Nav links */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 8px 13px;
  border-radius: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s, background .2s;
}
.nav a:not(.cta)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 13px; right: 13px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .2s ease;
  transform-origin: left;
}
.nav a:not(.cta):hover { color: var(--primary); background: transparent; }
.nav a:not(.cta):hover::after { transform: scaleX(1); }

/* CTA button in nav */
.nav .cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 9px 22px;
  border-radius: 10px;
  margin-left: 10px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(11,61,145,.25);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11,61,145,.38);
  background: linear-gradient(135deg, var(--primary-light), #2060d8);
}
.nav .cta::after { display: none; }

/* Hamburger */
.nav-toggle { display: none; }
.hamburger  {
  display: none;
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--primary); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: background .2s;
}
.hamburger:hover span { background: var(--primary); }

@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.09);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav a { padding: 11px 14px; border-radius: 10px; }
  .nav a:not(.cta)::after { display: none; }
  .nav .cta { margin-left: 0; text-align: center; margin-top: 6px; }
  .nav-toggle:checked ~ .nav { display: flex; }

  /* Mobile dropdown: always expanded inline */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--border) !important;
    border-radius: 0 !important;
    padding: 2px 0 2px 4px !important;
    margin: 0 0 4px 14px !important;
    background: transparent !important;
    min-width: 0 !important;
  }
  .nav-dropdown a { padding: 8px 10px !important; font-size: 13px !important; color: #475569 !important; }
  .nav-drop-chevron { display: none; }
}

/* ================================================
   NAV DROPDOWN
   ================================================ */
.nav-item-drop { position: relative; }
.nav-drop-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.nav-drop-chevron {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  transition: transform .2s;
  margin-top: 1px;
  opacity: .6;
}
.nav-item-drop:hover .nav-drop-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-item-drop:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items override nav link styles */
.nav-dropdown a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 10px !important;
  border-radius: 9px !important;
  font-size: 13.5px !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  transition: background .15s, color .15s !important;
  text-decoration: none;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: #f1f5f9 !important; color: var(--primary) !important; }

.nav-dd-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-dd-icon img { width: 20px; height: 20px; display: block; }

.nav-dd-sep { height: 1px; background: var(--border); margin: 4px 2px; }
.nav-dd-live {
  display: inline-flex; align-items: center;
  background: #dcfce7; color: #16a34a;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 99px;
  letter-spacing: .03em; margin-left: 5px; vertical-align: middle;
}
.nav-dd-soon-badge {
  display: inline-flex;
  background: #f1f5f9; color: #94a3b8;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 99px;
  margin-left: 5px; vertical-align: middle;
}
.nav-dropdown a.nav-dd-soon { opacity: .6; pointer-events: none; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  color: #fff;
  padding: 50px 0 50px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at -10% 65%, rgba(46,204,113,.18) 0%, transparent 55%),
    radial-gradient(ellipse 700px 600px at 110% -5%, rgba(26,86,196,.45) 0%, transparent 55%),
    linear-gradient(140deg, #071d47 0%, #0B3D91 55%, #1347a8 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero .container,
.hero-inner { position: relative; z-index: 2; }

/* Hero two-column layout */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text {
  flex: 1 1 0;
  min-width: 0;
}
.hero-image {
  flex: 0 0 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}
@media (max-width: 920px) {
  .hero-inner  { flex-direction: column; }
  .hero-image  { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.hero .lead {
  opacity: .9;
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 18px);
  max-width: 580px;
  line-height: 1.75;
}
.hero-cta  { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.badges    { display: flex; gap: 8px; margin: 36px 0 0; flex-wrap: wrap; }
.badges li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(0) scale(.98) !important; }

/* Primary — solid blue, works on light backgrounds */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(11,61,145,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), #2060d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(11,61,145,.38);
}

/* Outline — blue border/text, for light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,61,145,.22);
}

/* Hero primary — white pill for dark hero background */
.btn-hero-primary {
  background: #fff;
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  font-weight: 800;
}
.btn-hero-primary:hover {
  background: #f0f6ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

/* Ghost — white border/text, for dark/hero backgrounds */
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
}

/* Secondary — green CTA */
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(46,204,113,.3);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), #169a4a);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(46,204,113,.4);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } }

.about-intro {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  margin: 0;
}

.about-highlights { display: flex; flex-direction: column; gap: 18px; }
.about-highlight  { display: flex; gap: 14px; align-items: flex-start; }
.highlight-icon {
  font-size: 20px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-highlight strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.about-highlight p     { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* Stats block */
.about-stat-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-side {
  margin-top: 25px;
}

.about-stat {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
  transition: background .2s;
}
.about-stat:hover { background: #f8faff; }
.about-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat span { font-size: 13px; color: var(--muted); }

/* Tech stack */
.about-tech {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.tech-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 0 0 12px;
}
.mt-50 { margin-top: 50px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tech-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: #334155;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.tech-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.tech-chip:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(11,61,145,.12);
}

/* About pillar cards */
.about-pillar {
  position: relative;
  overflow: hidden;
  min-height: 170px;
}
.about-pillar .pillar-icon {
  position: absolute;
  top: -6px;
  right: -2px;
  font-size: 100px;
  line-height: 1;
  opacity: .07;
  pointer-events: none;
  user-select: none;
}
.about-pillar h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--text);
}
.about-pillar p {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  line-height: 1.75;
  margin: 0;
}

/* About section — new design */
.about-statement {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: #334155;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.about-pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.about-pillar-card:hover {
  box-shadow: 0 8px 24px rgba(11,61,145,.1);
  transform: translateY(-3px);
}
.about-pillar-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}
.about-pillar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.about-pillar-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.about-pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary);
  background: #eff4ff;
  padding: 4px 10px;
  border-radius: 99px;
}
.about-diff-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.about-diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #fff;
}
.about-diff-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.about-diff-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.about-diff-item p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  margin: 0;
}
@media (max-width: 1024px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .about-pillars { grid-template-columns: 1fr; }
  .about-diff-strip { grid-template-columns: 1fr; padding: 28px 20px; }
}

/* ================================================
   METRICS BAND
   ================================================ */
.band {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.metric {
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.metric:last-child  { border-right: none; }
.metric:hover       { background: #f8faff; }
.metric strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.metric .note { font-size: 13px; }
@media (max-width: 920px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--border); }
  .metric:nth-child(2)  { border-right: none; }
  .metric:nth-child(3),
  .metric:nth-child(4)  { border-bottom: none; }
}

/* ================================================
   SECTIONS
   ================================================ */
section { padding: 80px 0; }
section:nth-of-type(even) { background: #fff; }

.section-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--secondary-dark);
  margin-bottom: 10px;
}
h2.section-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
p.section-sub {
  color: var(--muted);
  text-align: center;
  margin: 0 auto 4px;
  font-size: 17px;
  max-width: 540px;
  line-height: 1.7;
}

/* ================================================
   GRIDS
   ================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 560px) and (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   CARDS
   ================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,61,145,.12);
}
.card h3 { margin: 12px 0 8px; font-weight: 700; font-size: 17px; }
.card p  { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }

.icon {
  font-size: 24px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.svc-card:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11,61,145,.3);
}

.svc-bg-icon {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 110px;
  line-height: 1;
  opacity: .07;
  pointer-events: none;
  user-select: none;
  transition: opacity .3s;
}
.svc-card:hover .svc-bg-icon { opacity: .14; }

.svc-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color .3s;
}
.svc-card:hover h3 { color: #fff; }

.svc-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
  transition: color .3s;
}
.svc-card:hover > p { color: rgba(255,255,255,.8); }

.svc-features {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.svc-features li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
  transition: color .3s;
}
.svc-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  color: var(--secondary-dark);
  font-weight: 900;
  font-size: 11px;
  transition: color .3s;
}
.svc-card:hover .svc-features li        { color: rgba(255,255,255,.8); }
.svc-card:hover .svc-features li::before { color: rgba(255,255,255,.9); }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span {
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: #475569;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background .3s, border-color .3s, color .3s;
}
.svc-card:hover .svc-tags span {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}

/* ================================================
   PRICING CARDS
   ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #bfdbfe;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}
.pricing-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}
.pricing-price { margin-bottom: 4px; }
.pricing-price strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-timeline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: #f1f5f9;
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.pricing-features {
  list-style: none;
  padding: 0; margin: 0;
}
.pricing-features li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid #f8faff;
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  color: var(--secondary-dark);
  font-weight: 900;
  font-size: 12px;
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* Solid blue button for light cards */
/* btn-solid → alias for btn-primary (keep for backwards compat) */
.btn-solid {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(11,61,145,.24);
}
.btn-solid:hover {
  background: linear-gradient(135deg, var(--primary-light), #2060d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,61,145,.34);
}

/* Featured card */
.pricing-featured {
  background: linear-gradient(155deg, #071d47 0%, #0B3D91 100%);
  border-color: transparent;
  box-shadow: 0 20px 56px rgba(11,61,145,.38);
}
.pricing-featured::before {
  background: linear-gradient(90deg, var(--secondary), #34e07a);
}
.pricing-featured:hover { box-shadow: 0 28px 64px rgba(11,61,145,.48); }
.pricing-featured h3,
.pricing-featured .pricing-price strong { color: #fff; }
.pricing-featured .pricing-desc        { color: rgba(255,255,255,.65); }
.pricing-featured .pricing-divider     { border-color: rgba(255,255,255,.12); }
.pricing-featured .pricing-badge {
  background: rgba(46,204,113,.18);
  color: #6ef0ad;
  border-color: rgba(46,204,113,.3);
}
.pricing-featured .pricing-timeline {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
}
.pricing-featured .pricing-features li {
  color: rgba(255,255,255,.72);
  border-bottom-color: rgba(255,255,255,.07);
}
.pricing-featured .pricing-features li::before { color: #6ef0ad; }

.pricing-popular {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ================================================
   OFFSHORE SECTION
   ================================================ */
.offshore-section {
  background: linear-gradient(155deg, #071d47 0%, #0c2f72 60%, #0B3D91 100%);
  position: relative;
  overflow: hidden;
}
.offshore-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.offshore-label  { color: var(--secondary) !important; }
.offshore-title  { color: #fff; }
.offshore-sub    { color: rgba(255,255,255,.65); }

/* Stats strip */
.offshore-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
@media (max-width: 760px) { .offshore-stats { grid-template-columns: repeat(2,1fr); } }
.offshore-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.offshore-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.offshore-stat span { font-size: 13px; color: rgba(255,255,255,.55); }

/* Plan cards */
.offshore-plans {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
@media (max-width: 760px) { .offshore-plans { grid-template-columns: 1fr; } }

.offshore-plan {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: background .25s, border-color .25s;
}
.offshore-plan:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

.offshore-plan-featured {
  background: rgba(255,255,255,.1);
  border-color: rgba(46,204,113,.4);
  box-shadow: 0 0 0 1px rgba(46,204,113,.2), 0 20px 48px rgba(0,0,0,.3);
}
.offshore-plan-featured:hover { background: rgba(255,255,255,.13); }

.offshore-plan-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--secondary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.offshore-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}
.featured-badge {
  background: rgba(46,204,113,.18);
  border-color: rgba(46,204,113,.35);
  color: #6ef0ad;
}

.offshore-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.offshore-plan-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.offshore-plan-header p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}
.offshore-price { text-align: right; flex-shrink: 0; }
.offshore-price strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.offshore-price span { font-size: 13px; color: rgba(255,255,255,.5); }

/* Capacity pills */
.offshore-capacity {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.capacity-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  flex: 1;
  min-width: 70px;
}
.cap-num   { display: block; font-size: 20px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.cap-label { font-size: 11px; color: rgba(255,255,255,.5); }

/* Feature list */
.offshore-features {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  flex: 1;
}
.offshore-features li {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.5;
}
.offshore-features li:last-child { border-bottom: none; }
.offshore-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--secondary);
  font-weight: 900;
  font-size: 12px;
}
/* btn-offshore-outline → alias for btn-ghost on dark bg */
.btn-offshore-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .2s;
}
.btn-offshore-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

/* Bottom info cards */
.offshore-bottom {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
@media (max-width: 760px) { .offshore-bottom { grid-template-columns: 1fr; } }

.offshore-info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.offshore-info-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

/* Stack categories */
.stack-categories { display: flex; flex-direction: column; gap: 14px; }
.stack-cat { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stack-cat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  width: 90px;
  flex-shrink: 0;
}
.stack-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.stack-pills span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Onboarding steps */
.onboard-steps { display: flex; flex-direction: column; gap: 14px; }
.onboard-step  { display: flex; gap: 14px; align-items: flex-start; }
.onboard-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.onboard-step strong { display: block; font-size: 14px; color: #fff; margin-bottom: 2px; font-weight: 700; }
.onboard-step p      { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 26px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Ghost big number — top right background */
.ps-ghost {
  position: absolute;
  top: -14px; right: 8px;
  font-size: 96px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.055;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

/* Icon circle */
.ps-icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(11,61,145,.22);
  position: relative; z-index: 1;
}
.ps-icon { font-size: 24px; line-height: 1; }

/* Duration badge */
.ps-duration {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--secondary);
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  transition: color .2s;
}
.process-step:hover h3 { color: var(--primary); }
.process-step > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Deliverables checklist */
.ps-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ps-list li {
  font-size: 13px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.ps-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
}

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

/* ================================================
   PORTFOLIO
   ================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.port-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.port-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.port-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #e2e8f0;
}
.port-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.port-card:hover .port-img img { transform: scale(1.06); }

.port-category {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
}

.port-body {
  padding: 20px;
}
.port-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  transition: color .2s;
}
.port-card:hover .port-body h3 { color: var(--primary); }
.port-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
}

.port-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.port-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(11,61,145,.07);
  border: 1px solid rgba(11,61,145,.15);
  border-radius: 20px;
  padding: 2px 9px;
}

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

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 26px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-quote {
  font-size: 72px;
  line-height: .8;
  font-weight: 800;
  color: var(--secondary);
  opacity: .25;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testi-card > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-author span {
  font-size: 12px;
  color: var(--muted);
}

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

/* ================================================
   FAQ
   ================================================ */
details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
details:hover        { box-shadow: var(--shadow); }
details + details    { margin-top: 10px; }
details[open]        { border-color: rgba(11,61,145,.2); box-shadow: var(--shadow); }

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--primary);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
details[open] summary::after { content: '−'; }
details p.note {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,61,145,.08);
  background: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b0bac9; }
.contact-form button { width: 100%; padding: 14px; font-size: 15px; margin-top: 4px; }

/* Info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-info-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.contact-info-item span {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.contact-note {
  background: rgba(11,61,145,.05);
  border: 1px solid rgba(11,61,145,.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 6px;
}
.contact-note p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* Form result message */

.form-result {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.form-result--success {
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.3);
  color: #1a9e52;
}
.form-result--error {
  background: rgba(220,38,38,.07);
  border: 1px solid rgba(220,38,38,.2);
  color: #b91c1c;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #080e1c;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-social svg {
  width: 16px; height: 16px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
