:root {
  --navy: #07172f;
  --blue: #003b7a;
  --deep: #020817;
  --red: #ed1c24;
  --orange: #f58220;
  --green: #10a46b;
  --cyan: #19b5ff;
  --white: #fff;
  --text: #102033;
  --muted: #64748b;
  --soft: #f6f8fb;
  --border: #e5e9f1;
  --shadow: 0 24px 70px rgba(7, 23, 47, 0.14);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(7, 23, 47, 0.06);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img {
  height: 62px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}
.main-nav > a,
.mega-holder > a {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  padding: 34px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--orange);
}
.nav-cta {
  margin-left: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  min-height: 50px;
  padding: 14px 24px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: 0.2s;
}
.btn-red {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.25);
}
.btn-red:hover {
  background: #e67300;
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.25);
}
.btn-orange:hover {
  background: #e67300;
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 26px rgba(7, 23, 47, 0.16);
}
.text-link {
  font-weight: 900;
  color: var(--orange);
}
.mega-holder {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1040px, calc(100vw - 40px));
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.18s;
}
.mega-holder:hover .mega-menu,
.mega-holder:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-intro {
  background: linear-gradient(135deg, var(--navy), #0b3774);
  border-radius: 18px;
  color: #fff;
  padding: 24px;
}
.mega-intro h3 {
  margin: 6px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}
.mega-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.mega-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 15px;
  border: 1px solid transparent;
}
.mega-item:hover {
  background: var(--soft);
  border-color: var(--border);
}
.mega-item img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.mega-item strong {
  display: block;
  font-size: 14px;
}
.mega-item small {
  color: var(--muted);
  font-size: 12px;
}
.nav-toggle {
  display: none;
  background: var(--navy);
  color: white;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 20px;
}
.home-hero {
  position: relative;
  min-height: 690px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #020817 0%, #0a1628 40%, #0d2847 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 45%,
    var(--hero-accent, rgba(25, 181, 255, 0.15)),
    transparent 50%
  );
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 38px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin: 0 0 20px;
}
.hero-copy h1 {
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
  color: #fff;
}
.hero-copy h1 span {
  display: block;
  font-weight: 500;
}
.hero-subtitle {
  font-size: clamp(17px, 2vw, 23px);
  max-width: 670px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-device-panel {
  position: relative;
  min-height: 560px;
}
.device-glow {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(25, 181, 255, 0.28),
    transparent 65%
  );
  filter: blur(6px);
}
.hero-phone-main {
  position: absolute;
  right: 3%;
  bottom: 30px;
  height: 500px;
  width: 540px;
  display: block;
  filter: drop-shadow(0 34px 65px rgba(0, 0, 0, 0.48));
  border-radius: 28px;
}
.hero-signal {
  position: absolute;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  padding: 13px 16px;
  border-radius: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}
.signal-one {
  right: 18%;
  top: 86px;
}
.signal-two {
  left: 8%;
  top: 230px;
}
.signal-three {
  right: 0;
  bottom: 82px;
}
.section {
  padding: 88px 0;
}
.section.soft {
  background: var(--soft);
}
.eyebrow {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

/* Quick navigator used on long solution pages (like Safety Nodes) */
.quick-nav {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.25rem 0 2rem 0;
}
.quick-nav .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(7,23,47,0.04);
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}
.quick-nav .nav-item:hover {
  transform: translateY(-3px);
  background: var(--soft);
}
.quick-nav .nav-item:active { transform: translateY(0); }

/* Small screens: make quick-nav scrollable horizontally */
@media (max-width: 640px) {
  .quick-nav { overflow-x: auto; gap: 0.5rem; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
  .quick-nav .nav-item { flex: 0 0 auto; }
}

/* Tighter spacing for quick-nav and the following section to avoid large gaps after hero */
.quick-nav-section {
  padding-top: 12px;
  padding-bottom: 12px;
}
.quick-nav-section + .section {
  padding-top: 18px;
}

/* If a section immediately follows the hero, reduce its top padding */
.home-hero + .section {
  padding-top: 18px;
}

/* Tighten spacing specifically for the 6 Angels section on Safety Nodes */
#features {
  padding-top: 22px; /* override global section padding */
}
#features h2 {
  margin-top: 0.2rem; /* reduce extra white-space above heading */
}
/* If quick-nav directly precedes features, make it even tighter */
.quick-nav-section + #features {
  padding-top: 12px;
}

/* The 6 Angels styles */
.angels-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.angels-section .section-head { text-align: center; margin-bottom: 1rem; }
.angels-section .angels-intro { color: #6b7280; margin-bottom: 1.5rem; }
.angels-grid {
  display: grid;
  /* Desktop: three cards per row, then down to two on smaller wide screens and one on mobile */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: stretch;
}
.angel-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.25rem;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(7,23,47,0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
  min-height: 300px;
}
.angel-card:hover { transform: translateY(-10px); box-shadow: 0 26px 70px rgba(7,23,47,0.09); }
.angel-card .angel-icon { font-size: 2.2rem; margin-right: 0.9rem; }
.angel-card h3 { margin: 0 0 0.5rem 0; font-size: 1.4rem; }
.angel-card .eyebrow { font-size: 1rem; letter-spacing: 0.12em; margin-bottom: 0.6rem; color: var(--navy); }
.angel-card p { color: #374151; margin-bottom: 0.9rem; font-size: 1.05rem; }
.angel-card ul { margin: 0; padding-left: 1.25rem; color: #4b5563; font-size: 1rem; }
.angel-card ul li { margin-bottom: 0.6rem; }

/* Make grid responsive */
/* Responsiveness: keep two columns for large and medium screens, collapse to one column on smaller devices */
@media (max-width: 1200px) {
  .angels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .angels-grid { grid-template-columns: 1fr; }
  .angel-card { padding: 1.25rem; min-height: auto; }
  .angel-card h3 { font-size: 1.125rem; }
  .angel-card p, .angel-card ul { font-size: 0.96rem; }
}

/* Golden Hour block */
.golden-hour-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  border-left: 4px solid #dc2626;
  box-shadow: 0 10px 30px rgba(7,23,47,0.04);
}
.golden-hour-card ol { margin-left: 1.1rem; color: #374151; }
.golden-hour-card li { margin-bottom: 0.5rem; }

.intro-section {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.intro-grid h2,
.section-head h2,
.feature-copy h2,
.growth-section h2,
.guardian-card h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  margin: 10px 0;
  color: var(--navy);
  letter-spacing: -0.045em;
}
.lead {
  font-size: 20px;
  color: #23344b;
  margin-top: 0;
}
.intro-grid p:not(.eyebrow) {
  color: #42526a;
}
.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 46px;
}
.section-head.tight {
  margin-bottom: 38px;
}
.section-head h2 .red {
  color: var(--orange);
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}
.sector-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0 0 36px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(7, 23, 47, 0.06);
  min-height: 150px;
}
.audience-card.primary {
  background: linear-gradient(135deg, var(--navy), #0b3774);
  color: #fff;
}
.audience-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.audience-card.primary span {
  color: rgba(255, 255, 255, 0.72);
}
.audience-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin: 6px 0;
}
.audience-card p {
  margin: 0;
  color: #42526a;
  font-size: 13px;
}
.audience-card.primary strong {
  color: #fff;
}
.audience-card.primary p {
  color: rgba(255, 255, 255, 0.8);
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 14px 38px rgba(7, 23, 47, 0.07);
  transition: 0.22s;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.premium-card {
  position: relative;
  overflow: hidden;
}
.premium-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--blue));
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(237, 28, 36, 0.18);
}
.app-card img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.app-card h3 {
  font-size: 15px;
  margin: 0 0 10px;
  color: var(--navy);
}
.app-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.app-card a {
  margin-top: auto;
  font-size: 13px;
  color: var(--orange);
  font-weight: 900;
}
.highlight-section {
  background: #07172f;
  color: #fff;
}
.highlight-grid {
  display: block;
}
.feature-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #081b3a, #0c3877);
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-copy h2 {
  color: #fff;
}
.feature-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}
.feature-media {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 26px;
}
.feature-media img {
  max-height: 460px;
  margin: auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.34));
}
.usecase-section {
  background: #fff;
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(7,23,47,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.solution-card:hover { transform: translateY(-8px); box-shadow: 0 26px 70px rgba(7,23,47,0.09); }
.solution-card .solution-ico { font-size: 1.9rem; }
.solution-card h3 { margin: 0 0 0.25rem 0; font-size: 1.25rem; }
.solution-card .eyebrow { margin: 0; font-size: 0.95rem; color: var(--muted); font-weight: 800; }
.solution-card p { color: #374151; }
.solution-card ul { margin: 0.6rem 0 0 1.1rem; }
.solution-card ul li { margin-bottom: 0.5rem; }

/* Accent borders for each scenario */
.solution-card.accent-red { border-left: 6px solid #dc2626; }
.solution-card.accent-amber { border-left: 6px solid #fbbf24; }
.solution-card.accent-blue { border-left: 6px solid #3b82f6; }

@media (max-width: 1100px) {
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .usecases-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 1rem; }
}

/* Non-card aesthetic for use-cases: clean split rows with icon and body */
.usecases-list {
  display: grid;
  gap: 1.25rem;
}
.usecase-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.usecase-media { display: flex; align-items: flex-start; justify-content: center; }
.usecase-media .ico {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
}
.usecase-media .ico i {
  font-size: 1.6rem;
  line-height: 1;
}
.usecase-body h3 { margin: 0 0 6px 0; font-size: 1.3rem; color: var(--navy); }
.usecase-body .eyebrow { margin: 0 0 8px 0; color: var(--muted); font-weight: 800; }
.usecase-body p { margin: 0.4rem 0; color: #374151; }
.usecase-body ul { margin: 0.4rem 0 0 1.05rem; }

/* Accent colours */
.usecase-accent-red .usecase-media .ico { background: linear-gradient(135deg,#dc2626,#b91c1c); }
.usecase-accent-amber .usecase-media .ico { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.usecase-accent-blue .usecase-media .ico { background: linear-gradient(135deg,#3b82f6,#2563eb); }

/* Alternate layout: icon above title on small screens */
@media (max-width: 720px) {
  .usecase-row { grid-template-columns: 1fr; }
  .usecase-media { justify-content: center; margin-bottom: 8px; }
  .usecase-media .ico { width: 64px; height: 64px; }
}

.usecase-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(7, 23, 47, 0.08);
}
.usecase-card img {
  height: 260px;
  object-fit: contain;
  margin: auto;
}
.usecase-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin: 8px 0;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.usecase-card p {
  color: #42526a;
}
.growth-section {
  background: var(--soft);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}
.split > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.usecase-card {
  height: 100%;
}
.clean-split p {
  color: #42526a;
  font-size: 17px;
}
.device-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.device-gallery img {
  height: 330px;
  object-fit: contain;
  margin: auto;
  filter: drop-shadow(0 18px 30px rgba(7, 23, 47, 0.18));
}
.guardian-section {
  background: #fff;
}
.guardian-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #07172f, #0b3774);
  border-radius: 34px;
  color: #fff;
  padding: 48px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.guardian-card h2 {
  color: #fff;
}
.guardian-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.guardian-card img {
  max-height: 500px;
  margin: auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.35));
}
.videos-section {
  background: var(--soft);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.video-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background: #07172f;
}
.video-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.78;
}
.video-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 23, 47, 0.88));
  pointer-events: none;
  z-index: 1;
}
.video-card a {
  position: relative;
  z-index: 2;
  display: block;
}
.video-card div {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
  pointer-events: none;
}
.video-card h3 {
  font-size: 28px;
  margin: 8px 0 0;
  line-height: 1.1;
}
.play-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar {
  text-align: center;
  padding: 42px 24px;
  border-right: 1px solid var(--border);
}
.pillar:last-child {
  border-right: 0;
}
.pillar .ico {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 14px;
}
.pillar h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 10px;
}
.pillar p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.glass-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.dark-panel {
  background: linear-gradient(135deg, var(--navy), #0c3877);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.dark-panel h2,
.dark-panel h3 {
  color: #fff;
}
.dark-panel p {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0b3774);
  color: #fff;
  padding: 92px 0;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
  margin: 0 0 22px;
}
.page-hero p {
  max-width: 760px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(7, 23, 47, 0.07);
}
.content-card h3 {
  color: var(--navy);
  margin-top: 0;
}
.article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: 0 12px 34px rgba(7, 23, 47, 0.07);
}
.article h2,
.article h3 {
  color: var(--navy);
}
.article p,
.article li {
  color: #334155;
}
.footer {
  background: #071126;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 54px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1.2fr;
  gap: 44px;
}
.footer h3 {
  font-size: 25px;
  margin: 0 0 24px;
  color: #fff;
}
.footer p {
  font-size: 16px;
  line-height: 1.45;
}
.footer a {
  color: rgba(255, 255, 255, 0.88);
}
.footer-links {
  display: grid;
  gap: 8px;
}
.two-col {
  grid-template-columns: 1fr 1fr;
}
.play-badge {
  width: 170px;
  margin-top: 22px;
}
.socials {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.socials a {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 19px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 44px;
}
.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-bottom b {
  color: rgba(255, 255, 255, 0.38);
  margin: 0 10px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.form {
  display: grid;
  gap: 14px;
}
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
}
.form textarea {
  min-height: 150px;
}
.service-hero-image {
  max-height: 440px;
  object-fit: contain;
  margin: auto;
}
.service-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.service-list li {
  background: var(--soft);
  padding: 16px 18px;
  border-radius: 14px;
  list-style: none;
  border-left: 4px solid var(--orange);
}
@media (max-width: 1120px) {
  .audience-grid,
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-hero-inner,
  .intro-grid,
  .feature-story,
  .usecase-grid,
  .split,
  .guardian-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-device-panel {
    display: none;
  }
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .main-nav {
    position: fixed;
    inset: 88px 0 auto 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 22px 30px;
    box-shadow: var(--shadow);
    z-index: 1001;
    width: 100%;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    gap: 16px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .mega-holder > a {
    width: 100%;
    padding: 14px 0;
  }
  .mega-holder {
    width: 100%;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 1002;
  }
  .nav-cta {
    display: none;
  }
  .mega-menu {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    box-shadow: none;
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .mega-holder:hover .mega-menu,
  .mega-holder:focus-within .mega-menu,
  .mega-holder.open .mega-menu {
    display: grid;
    transform: none;
  }
  .mega-holder.open > a .mega-caret {
    transform: rotate(180deg);
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
  .device-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.nav-open {
  overflow: hidden;
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .home-hero,
  .home-hero-inner {
    min-height: 590px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .app-grid,
  .audience-grid,
  .video-grid,
  .content-grid,
  .contact-cards,
  .two-col {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .feature-story,
  .guardian-card {
    padding: 28px;
    border-radius: 24px;
  }
  .usecase-card {
    grid-template-columns: 1fr;
  }
  .device-gallery {
    grid-template-columns: 1fr;
  }
  .device-gallery img {
    height: 260px;
  }
  .footer-bottom-inner span:first-child {
    line-height: 2;
  }
  .brand img {
    height: 54px;
  }
}

/* Homepage Redesign */
.redesigned-hero {
  background: linear-gradient(135deg, #050816 0%, #0d1630 60%, #111827 100%);
  padding: 120px 0 80px;
}

.redesigned-hero h1 {
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 24px;
}

.redesigned-hero h1 span {
  color: #ef4444;
}

.hero-products-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hero-product-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.hero-product-card span {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: 700;
}

.products-home-section {
  background: #f8fafc;
}

.product-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 90px;
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.product-feature-row.reverse .product-feature-image {
  order: 2;
}

.product-feature-row.reverse .product-feature-content {
  order: 1;
}

.product-feature-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-feature-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.product-summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.product-feature-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-ghost-dark {
  border: 1px solid #111827;
  color: #111827;
  background: transparent;
}

@media (max-width: 991px) {
  .redesigned-hero h1 {
    font-size: 2.8rem;
  }

  .product-feature-row,
  .hero-products-showcase {
    grid-template-columns: 1fr;
  }

  .product-feature-row {
    padding: 32px;
    gap: 32px;
  }

  .product-feature-row.reverse .product-feature-image,
  .product-feature-row.reverse .product-feature-content {
    order: initial;
  }
}

.mega-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  display: inline-block;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.mega-holder:hover > a .mega-caret,
.mega-holder:focus-within > a .mega-caret {
  transform: rotate(225deg) translateY(-1px);
}

.home-carousel-inner {
  align-items: center;
  padding-inline: 92px;
}

/* Side arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow-left {
  left: 24px;
}
.carousel-arrow-right {
  right: 24px;
}

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.carousel-dot:hover {
  border-color: #fff;
  transform: scale(1.2);
}
.carousel-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.carousel-slide.active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.carousel-slide.slide-out-left {
  transform: translateX(-60px);
  opacity: 0;
}

.carousel-slide.slide-out-right {
  transform: translateX(60px);
  opacity: 0;
}

.carousel-swap {
  animation: carouselSwap 0.28s ease;
}

@keyframes carouselSwap {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .home-carousel-inner {
    padding-inline: 68px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .carousel-arrow-left {
    left: 12px;
  }
  .carousel-arrow-right {
    right: 12px;
  }
}

@media (max-width: 720px) {
  .home-carousel-inner {
    padding-inline: 50px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .carousel-arrow-left {
    left: 8px;
  }
  .carousel-arrow-right {
    right: 8px;
  }

  .signal-two {
    left: 8%;
    right: 8%;
    width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NEWS & ARTICLES STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── News Filters Section ── */
.news-filters-section {
  padding: 60px 0 40px;
  background: var(--soft);
}

.news-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-search-form {
  display: flex;
  justify-content: center;
}

.news-search-input-wrap {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.news-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  background: white;
  transition: all 0.2s ease;
}

.news-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.1);
}

.news-search-btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.news-search-btn:hover {
  color: var(--red);
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.news-category-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: white;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-category-tag:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.news-category-tag.active {
  border-color: var(--category-color, var(--red));
  background: var(--category-color, var(--red));
  color: white;
}

.category-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.news-category-tag:not(.active) .category-count {
  background: var(--soft);
  color: var(--muted);
}

/* ── Active Filters ── */
.news-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 20px;
}

.active-filters-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.active-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--red);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.remove-filter {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.remove-filter:hover {
  background: rgba(255, 255, 255, 0.5);
}

.clear-all-filters {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  margin-left: auto;
}

/* ── Results Summary ── */
.news-results-summary {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--soft);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(7, 23, 47, 0.18);
}

.news-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--soft);
  display: block;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(135deg, var(--soft) 0%, #e2e8f0 100%);
}

.news-card-body {
  padding: 24px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.news-category-badge {
  background: var(--category-color, var(--red));
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-date, .news-author, .news-views, .news-read-time {
  font-weight: 500;
}

.news-dot {
  opacity: 0.5;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.news-card h3 a {
  color: var(--text);
  transition: color 0.2s ease;
}

.news-card h3 a:hover {
  color: var(--red);
}

.news-card-excerpt {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.news-tag {
  background: var(--soft);
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.news-read-link {
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-read-link:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

/* ── Pagination ── */
.news-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.news-pagination nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.news-pagination .page-link {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  background: white;
}

.news-pagination .page-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.news-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Article Page Styles ── */
.article-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}

.article-breadcrumb a {
  color: var(--red);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-category-badge {
  display: inline-block;
  background: var(--category-color, var(--red));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.meta-author, .meta-time, .meta-views {
  font-weight: 500;
}

.meta-dot {
  opacity: 0.5;
}

.article-tags {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.article-tags h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.article-tag {
  display: inline-block;
  background: var(--soft);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ── Related Articles ── */
.related-articles-section {
  padding: 80px 0;
  background: var(--soft);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 50px;
  color: var(--text);
}

.related-articles-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-articles-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Empty States ── */
.news-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.news-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.news-empty h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.news-empty p {
  margin: 0 0 30px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Responsive Design ── */
@media (max-width: 768px) {
  .news-filters {
    gap: 20px;
  }
  
  .news-search-input-wrap {
    max-width: none;
  }
  
  .news-categories {
    justify-content: flex-start;
    gap: 8px;
  }
  
  .news-category-tag {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .news-active-filters {
    padding: 16px;
  }
  
  .article-meta {
    font-size: 13px;
    gap: 8px;
  }
  
  .related-articles-grid {
    grid-template-columns: 1fr;
  }
  
  .news-pagination nav {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .news-pagination .page-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .news-filters-section {
    padding: 40px 0 30px;
  }
  
  .news-search-btn {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding: 12px;
    background: var(--red);
    color: white;
    border-radius: 12px;
  }
  
  .news-search-input {
    padding: 16px 20px;
  }
  
  .news-card-body {
    padding: 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* ───────────────────────────────────────────────────────────────────────────
   Facebook Posts Slider
─────────────────────────────────────────────────────────────────────────── */
.facebook-posts-section {
  background: var(--soft);
  overflow: hidden;
}

.facebook-posts-slider-wrapper {
  position: relative;
  margin-top: 40px;
}

.facebook-posts-slider {
  overflow: hidden;
  margin: 0 60px;
}

.facebook-posts-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.facebook-post-card {
  flex: 0 0 calc(33.333% - 16px);
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.facebook-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.facebook-post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--soft);
}

.facebook-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facebook-post-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facebook-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.facebook-icon {
  flex-shrink: 0;
}

.facebook-post-date {
  font-size: 13px;
  color: var(--muted);
}

.facebook-post-message {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
  flex: 1;
}

.facebook-post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.facebook-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.facebook-stat svg {
  flex-shrink: 0;
}

.facebook-post-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #1877F2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.facebook-post-link:hover {
  color: #145dbf;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text);
}

.slider-nav:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .facebook-post-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .facebook-posts-slider {
    margin: 0 50px;
  }

  .facebook-post-card {
    flex: 0 0 100%;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .facebook-posts-slider {
    margin: 0 40px;
  }

  .facebook-post-image {
    height: 180px;
  }

  .facebook-post-body {
    padding: 16px;
  }
}
