/* =========================================================
   NBS360 PREMIUM UI SYSTEM
========================================================= */

:root {
  --bg: #f6f9fb;
  --bg-soft: #eef6f8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);

  --text: #092235;
  --text-soft: #496174;
  --muted: #6e8190;

  --primary: #0b8fb3;
  --primary-dark: #056f8e;
  --primary-soft: rgba(11, 143, 179, 0.12);

  --accent: #2cc7b8;
  --accent-soft: rgba(44, 199, 184, 0.14);

  --navy: #061e31;
  --navy-2: #0b334f;

  --border: rgba(9, 34, 53, 0.09);
  --border-strong: rgba(9, 34, 53, 0.14);

  --shadow-sm: 0 8px 24px rgba(8, 35, 54, 0.08);
  --shadow-md: 0 18px 50px rgba(8, 35, 54, 0.12);
  --shadow-lg: 0 28px 80px rgba(8, 35, 54, 0.18);

  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;

  --container: 1180px;
  --header-h: 82px;

  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Inter", Arial, sans-serif;
}


/* =========================================================
   RESET & BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(44, 199, 184, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(11, 143, 179, 0.08), transparent 32%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body::selection {
  background: var(--primary);
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

main {
  min-height: 70vh;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: var(--font-display);
}

p {
  color: var(--text-soft);
}

.section.light,
.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.85)),
    var(--bg-soft);
}

.section.dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(44, 199, 184, 0.22), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(11, 143, 179, 0.22), transparent 34%),
    linear-gradient(135deg, #061e31, #0b334f 55%, #06495c);
  color: #ffffff;
  overflow: hidden;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}

.section.dark h2,
.section.dark h3,
.section.dark .section-label {
  color: #ffffff;
}

.section.dark p {
  color: rgba(235, 250, 252, 0.84);
}

.section-label {
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.section-header .section-label {
  justify-content: center;
}

.section-header h2,
.two-columns h2,
.contact-box h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
}

/* =========================================================
   SECTION VARIANTS — VISUAL SEPARATION
========================================================= */

.section {
  position: relative;
  padding: 104px 0;
  background: var(--bg);
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.08), transparent 34%),
    linear-gradient(180deg, #f5fbfc 0%, #eef6f8 100%);
}

.section-blue {
  background:
    radial-gradient(circle at top right, rgba(11, 143, 179, 0.10), transparent 34%),
    linear-gradient(180deg, #eef8fb 0%, #f7fbfc 100%);
}

.section-sand {
  background:
    radial-gradient(circle at top left, rgba(220, 184, 116, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
}

.section-panel {
  background: #ffffff;
}

.section-panel .container {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 54px;
  box-shadow: var(--shadow-sm);
}

.section+.section {
  border-top: 1px solid rgba(9, 34, 53, 0.06);
}

.section.dark {
  border-top: none;
}

/* =========================================================
   HEADER & NAVBAR
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 34, 53, 0.08);
  box-shadow: 0 10px 40px rgba(8, 35, 54, 0.06);
}

.nav-container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img-wide {
  width: 158px;
  height: auto;
  object-fit: contain;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(9, 34, 53, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 28px rgba(8, 35, 54, 0.05);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #263d50;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.22s ease;
  white-space: nowrap;
  font-size: 14px;
}

.nav-link:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.nav-contact {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  padding-inline: 18px;
  box-shadow: 0 10px 24px rgba(11, 143, 179, 0.22);
}

.nav-contact:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}


/* =========================================================
   HERO HOME
========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding: 80px 0 96px;
  background:
    linear-gradient(105deg, rgba(3, 22, 36, 0.88) 0%, rgba(3, 38, 56, 0.76) 45%, rgba(3, 62, 74, 0.50) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(to top, #ffffff, transparent);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  background: rgba(44, 199, 184, 0.28);
  right: 11%;
  top: 20%;
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  background: rgba(11, 143, 179, 0.32);
  right: 28%;
  bottom: 18%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  margin-bottom: 26px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(44, 199, 184, 0.16);
}

.hero h2 {
  font-size: clamp(46px, 6.2vw, 86px);
  line-height: 0.98;
  margin-bottom: 28px;
  color: #ffffff;
  max-width: 880px;
}

.hero p {
  font-size: clamp(18px, 2vw, 21px);
  max-width: 760px;
  margin-bottom: 38px;
  color: rgba(236, 250, 253, 0.88);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}


/* =========================================================
   BUTTONS & LINKS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
  min-height: 54px;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(11, 143, 179, 0.30);
}

.btn.primary:hover {
  box-shadow: 0 20px 48px rgba(11, 143, 179, 0.40);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.btn.secondary:hover {
  background: #ffffff;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 900;
  transition: 0.22s ease;
}

.inline-link:hover {
  gap: 12px;
  color: var(--primary);
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  position: relative;
  padding: 112px 0 88px;
  background:
    linear-gradient(105deg, rgba(3, 22, 36, 0.86), rgba(3, 48, 67, 0.66)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2200&q=85");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 90px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: 22px;
  color: #ffffff;
}

.page-hero p {
  max-width: 780px;
  font-size: 18px;
  color: rgba(236, 250, 253, 0.88);
}


/* =========================================================
   CONTENT LAYOUT
========================================================= */

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.two-columns p {
  margin-bottom: 16px;
  font-size: 16.5px;
}

.info-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 252, 0.92));
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.info-card h3 {
  position: relative;
  margin-bottom: 18px;
  font-size: 25px;
  color: var(--navy);
}

.info-card p,
.info-card li {
  position: relative;
  color: var(--text-soft);
}

.info-card ul {
  display: grid;
  gap: 11px;
}

.info-card li {
  list-style: none;
  padding-left: 22px;
}

.info-card li::before {
  content: "";
  position: absolute;
  margin-left: -22px;
  margin-top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.dark-card {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.dark-card h3,
.dark-card li,
.dark-card p {
  color: #ffffff;
}

.center-button {
  text-align: center;
  margin-top: 40px;
}


/* =========================================================
   CARDS
========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card,
.service-card,
.news-card,
.timeline-card,
.demo-card,
.stat-card,
.partner-logo {
  border: 1px solid var(--border);
}

.card,
.service-card,
.news-card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
  overflow: hidden;
}

.card::before,
.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: 0.25s ease;
}

.card:hover,
.news-card:hover,
.service-card:hover,
.demo-card:hover,
.timeline-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.card:hover::before,
.news-card:hover::before {
  opacity: 1;
}

.card h3,
.service-card h3,
.news-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  color: var(--navy);
}

.card p,
.news-card p {
  color: var(--text-soft);
}

.service-card {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card h3,
.service-card p {
  color: #ffffff;
}

.service-card p {
  opacity: 0.82;
}
.partner-card {
  text-decoration: none;
  color: inherit;
}

.partner-card:focus-visible {
  outline: 3px solid rgba(11, 143, 179, 0.35);
  outline-offset: 4px;
}

/* =========================================================
   STATS
========================================================= */

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

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: 0.25s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -42px;
  bottom: -42px;
  border-radius: 999px;
  background: var(--primary-soft);
}

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

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-card span {
  position: relative;
  z-index: 1;
  color: var(--text-soft);
  font-weight: 800;
}


/* =========================================================
   DEMONSTRATION SITES
========================================================= */

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

.demo-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.demo-content {
  padding: 28px;
}

.demo-content span {
  display: inline-flex;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}

.demo-content h3 {
  font-size: 23px;
  margin-bottom: 10px;
  color: var(--navy);
}

.demo-content p {
  color: var(--text-soft);
}


/* =========================================================
   OBJECTIVES PAGE
========================================================= */

.objectives-list {
  display: grid;
  gap: 18px;
}

.objective-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.objective-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.objective-item span {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.objective-item h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.objective-item p {
  color: var(--text-soft);
}


/* =========================================================
   METHODOLOGY PAGE
========================================================= */

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

.timeline-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.timeline-card span {
  display: inline-flex;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-card p {
  color: var(--text-soft);
}


/* =========================================================
   PARTNERS
========================================================= */

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

.partner-logo {
  min-height: 126px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.partner-logo small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}


/* =========================================================
   NEWS
========================================================= */

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

.news-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fdfefe;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11, 143, 179, 0.48);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  padding: 15px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 143, 179, 0.25);
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(44, 199, 184, 0.16), transparent 34%),
    linear-gradient(135deg, #061827, #071d2c 65%, #062b3a);
  color: #ffffff;
  padding-top: 54px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(44, 199, 184, 0.12);
  right: -120px;
  top: -120px;
  filter: blur(12px);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.95fr 0.9fr 1.95fr 1.05fr;
  gap: 38px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-logos-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 18px;
}

.footer-logo {
  width: 150px;
  max-width: 150px;
  flex: 0 0 150px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 0;
}

.prima-logo-inline {
  width: 145px;
  max-width: 145px;
  max-height: 48px;
  flex: 0 0 145px;
  object-fit: contain;
  background: #ffffff;
  padding: 7px 11px;
  border-radius: 12px;
  transform: translateY(0);
  margin-bottom: 0;
}

.footer-brand p {
  max-width: 480px;
  line-height: 1.65;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(216, 235, 243, 0.78);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  transition: 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Contacts column */

.footer-contact {
  grid-column: auto;
  max-width: none;
  min-width: 280px;
  padding-left: 0;
}

.footer-contact h4 {
  margin-bottom: 14px;
}

.footer-contact-block {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-block:first-of-type {
  margin-top: 0;
}

.footer-contact-block h5 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-contact-name {
  max-width: 340px;
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.35;
}

.footer-contact-org {
  color: rgba(216, 235, 243, 0.72) !important;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.45;
}

.footer-contact a {
  color: rgba(216, 235, 243, 0.86);
  font-weight: 800;
  word-break: break-word;
}

/* Follow column */

.footer-follow {
  min-width: 0;
}

.footer-follow h4 {
  margin-bottom: 16px;
}

.footer-contact-us {
  display: inline-block;
  color: rgba(216, 235, 243, 0.9) !important;
  font-weight: 900;
  margin-bottom: 16px !important;
}

.footer-contact-us:hover {
  color: #ffffff !important;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(216, 235, 243, 0.86);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
  transition: 0.22s ease;
}

.footer-social-icons a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-3px);
}

.footer-social-icons i {
  font-size: 15px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 22px;
  color: rgba(216, 235, 243, 0.72);
}
.footer-follow {
  min-width: 190px;
}

.footer-social-icons {
  flex-wrap: nowrap;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .navbar {
    gap: 2px;
  }

  .nav-link {
    font-size: 13px;
    padding: 9px 10px;
  }

  .logo-img-wide {
    width: 140px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: calc(var(--header-h) + 10px);
    left: 4%;
    right: 4%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    display: none;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }

  .navbar.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 15px;
    font-size: 15px;
  }

  .nav-contact {
    justify-content: center;
    margin-top: 6px;
  }

  .two-columns,
  .contact-box {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cards-grid,
  .news-grid,
  .stats-grid,
  .demo-grid,
  .timeline-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding: 96px 0 120px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .logo-img-wide {
    width: 128px;
  }

  .hero h2 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .section {
    padding: 74px 0;
  }

  .page-hero {
    padding: 82px 0 64px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .news-grid,
  .stats-grid,
  .demo-grid,
  .timeline-grid,
  .partners-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .objective-item {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 30px;
  }
}

/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1.55fr 0.85fr 0.85fr 1.6fr 1fr;
    gap: 26px;
  }
  .footer-follow {
    min-width: 170px;
  }

  .footer-logo {
    width: 135px;
    max-width: 135px;
    flex-basis: 135px;
  }

  .prima-logo-inline {
    width: 120px;
    max-width: 120px;
    flex-basis: 120px;
  }

  .footer-brand p {
    max-width: 390px;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

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

  .footer-social-icons {
    gap: 10px;
  }
}

/* =========================================================
   PARTNER LOGO CARDS
========================================================= */

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  min-height: 190px;
  padding: 28px 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid #e3edf3;
  box-shadow: 0 12px 35px rgba(15, 72, 96, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 72, 96, 0.13);
}

.partner-card img {
  max-width: 150px;
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
}

.partner-card h3 {
  font-size: 18px;
  color: #0b2f4a;
  margin-bottom: 4px;
}

.partner-card p {
  color: #667085;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 980px) {
  .partners-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .partner-card {
    min-height: 160px;
    padding: 22px 16px;
  }

  .partner-card img {
    max-width: 120px;
    max-height: 60px;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.prima-logo-inline {
  max-width: 160px;
  max-height: 56px;
  object-fit: contain;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  transform: translateY(-10px);
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
  border-radius: 28px;
  background: white;
  border: 1px solid #e3edf3;
  box-shadow: 0 16px 45px rgba(15, 72, 96, 0.08);
}

.contact-info-panel {
  padding: 38px;
}

.contact-info-panel h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #0b2f4a;
  margin-bottom: 18px;
}

.contact-info-panel > p {
  color: #536579;
  margin-bottom: 28px;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  padding: 20px;
  border-radius: 18px;
  background: #f4f8fb;
  border: 1px solid #e3edf3;
}

.contact-info-card span {
  display: block;
  color: #0b8fb3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: #0b2f4a;
  font-size: 18px;
  font-weight: 800;
}

.contact-info-card a:hover {
  color: #0b8fb3;
}

.contact-info-card p {
  color: #536579;
  margin: 0;
}

.contact-form-panel {
  padding: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #f8fbfd;
}

.contact-form textarea {
  min-height: 180px;
}

@media (max-width: 980px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* =========================================================
   CONTACT PAGE ENHANCED
========================================================= */

.contact-box-enhanced {
  align-items: stretch;
}

.contact-intro {
  background: linear-gradient(135deg, #e8f8fb, #ffffff);
  padding: 38px;
  border-radius: 26px;
  box-shadow: 0 16px 45px rgba(15, 72, 96, 0.08);
  border: 1px solid #e3edf3;
}

.contact-intro h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #0b2f4a;
  margin-bottom: 18px;
}

.contact-intro p {
  color: #536579;
  margin-bottom: 20px;
}

.contact-email-card {
  margin: 26px 0 18px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid #d9e6ec;
  box-shadow: 0 10px 28px rgba(15, 72, 96, 0.06);
}

.contact-email-card span {
  display: block;
  color: #0b8fb3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-email-card a {
  color: #0b2f4a;
  font-size: 18px;
  font-weight: 800;
}

.contact-email-card a:hover {
  color: #0b8fb3;
}

.contact-note {
  font-size: 14px;
  color: #667085;
}

.contact-box-enhanced .contact-form {
  background: white;
  padding: 38px;
  border-radius: 26px;
  box-shadow: 0 16px 45px rgba(15, 72, 96, 0.08);
  border: 1px solid #e3edf3;
}

.contact-box-enhanced .contact-form input,
.contact-box-enhanced .contact-form textarea {
  background: #f8fbfd;
}

.contact-box-enhanced .contact-form textarea {
  min-height: 170px;
}

@media (max-width: 640px) {
  .contact-intro,
  .contact-box-enhanced .contact-form {
    padding: 26px;
  }

  .contact-intro h2 {
    font-size: 30px;
  }
}
  .contact-info-panel h2 {
    font-size: 30px;
  }
}

/* pour le message de confirmation après l'envoi du formulaire de contact */
.form-messages {
  margin-bottom: 18px;
}

.form-message {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-message.success {
  background: rgba(44, 199, 184, 0.14);
  color: #056f8e;
  border: 1px solid rgba(44, 199, 184, 0.28);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
}

/* =========================================================
   WORK PACKAGES PAGE
========================================================= */


.workpackages-hero .section-label {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.9);
}

.workpackages-hero .section-label::before {
  background: linear-gradient(90deg, var(--accent), #ffffff);
}

.workpackages-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.10), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(11, 143, 179, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbfc 0%, #eef6f8 100%);
}

.wp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.wp-card {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
  overflow: hidden;
}

.wp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: 0.25s ease;
}

.wp-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -64px;
  bottom: -64px;
  border-radius: 999px;
  background: var(--primary-soft);
  pointer-events: none;
}

.wp-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

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

.wp-card-featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 250, 252, 0.92));
}

.wp-number {
  position: relative;
  z-index: 1;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px rgba(11, 143, 179, 0.24);
}

.wp-content {
  position: relative;
  z-index: 1;
}

.wp-content h3 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 12px;
}

.wp-content p {
  color: var(--text-soft);
  line-height: 1.75;
}

.wp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.wp-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
}

.wp-flow-section {
  background: #ffffff;
}

.wp-flow-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 14%, rgba(44, 199, 184, 0.26), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2) 58%, var(--primary-dark));
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.wp-flow-card .section-label {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
}

.wp-flow-card .section-label::before {
  background: linear-gradient(90deg, var(--accent), #ffffff);
}

.wp-flow-card h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}

.wp-flow-card p {
  color: rgba(235, 250, 252, 0.84);
  line-height: 1.8;
}

.wp-flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wp-flow-steps span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
}

@media (max-width: 980px) {
  .wp-grid,
  .wp-flow-card {
    grid-template-columns: 1fr;
  }

  .wp-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .wp-card {
    flex-direction: column;
    padding: 24px;
  }

  .wp-number {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .wp-flow-card {
    padding: 28px;
  }
}
/* =========================================================
   NEWS PAGE — DYNAMIC
========================================================= */

.news-hero,
.news-detail-hero {
  background:
    linear-gradient(105deg, rgba(3, 22, 36, 0.88), rgba(3, 48, 67, 0.68)),
    url("https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1800&q=85");
  background-size: cover;
  background-position: center;
}

.news-hero .section-label,
.news-detail-hero .section-label {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.9);
}

.news-hero .section-label::before,
.news-detail-hero .section-label::before {
  background: linear-gradient(90deg, var(--accent), #ffffff);
}

.news-page-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.10), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(11, 143, 179, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbfc 0%, #eef6f8 100%);
}

/* Featured news */

.news-featured-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 12%, rgba(44, 199, 184, 0.16), transparent 36%),
    linear-gradient(135deg, #ffffff, #edfafd);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.news-featured-image {
  min-height: 360px;
  background:
    radial-gradient(circle at 30% 20%, rgba(44, 199, 184, 0.22), transparent 36%),
    linear-gradient(135deg, #dff5f8, #b9e4ec);
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-placeholder {
  display: grid;
  place-items: center;
}

.news-placeholder span {
  color: var(--primary-dark);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.news-featured-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured-content span,
.news-card span {
  display: inline-flex;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

.news-featured-content h3 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
  margin-bottom: 18px;
}

.news-featured-content p {
  font-size: 17px;
  color: var(--text-soft);
}

.news-date {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

/* News cards */

.news-page-grid {
  align-items: stretch;
}

.news-card {
  min-height: 100%;
}

.news-card-image {
  height: 190px;
  margin: -30px -30px 24px;
  background: #dbeff4;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .inline-link {
  margin-top: 22px;
}

.empty-news-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.empty-news-card h3 {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 12px;
}

/* CTA */

.news-cta-section {
  background: #ffffff;
}

.news-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 14%, rgba(44, 199, 184, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f2fbfd);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.news-cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}

.news-cta-card p {
  max-width: 720px;
}

/* =========================================================
   NEWS DETAIL PAGE
========================================================= */

.news-detail-section {
  background:
    radial-gradient(circle at top right, rgba(11, 143, 179, 0.08), transparent 34%),
    #ffffff;
}

.news-detail-container {
  max-width: 920px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.news-detail-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.news-detail-content {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.news-detail-content p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: var(--text-soft);
}

.news-detail-content p:last-child {
  margin-bottom: 0;
}

.news-detail-actions {
  margin-top: 34px;
}

.related-news-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.10), transparent 34%),
    linear-gradient(180deg, #f5fbfc 0%, #eef6f8 100%);
}

/* Responsive */

@media (max-width: 980px) {
  .news-featured-card {
    grid-template-columns: 1fr;
  }

  .news-featured-image {
    min-height: 280px;
  }

  .news-cta-card {
    grid-template-columns: 1fr;
  }

  .news-cta-card .btn {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .news-featured-content,
  .news-detail-content,
  .empty-news-card {
    padding: 28px;
  }

  .news-card-image {
    height: 170px;
  }

  .news-detail-image img {
    max-height: 340px;
  }

  .news-cta-card {
    padding: 28px;
  }

  .news-cta-card .btn {
    width: 100%;
  }
}
/* =========================================================
   HOME NEWS SECTION
========================================================= */

.home-news-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.10), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(11, 143, 179, 0.10), transparent 32%),
    linear-gradient(180deg, #f5fbfc 0%, #eef6f8 100%);
}

.home-news-section .news-card {
  min-height: 100%;
}

/* =========================================================
   HOME FOLLOW SECTION
========================================================= */

.home-follow-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(44, 199, 184, 0.10), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(11, 143, 179, 0.10), transparent 32%),
    #ffffff;
}

.home-follow-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 42px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 12%, rgba(44, 199, 184, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #f1fbfd);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.home-follow-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 14px;
  color: var(--navy);
}

.home-follow-content p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
}

.home-follow-actions {
  display: grid;
  gap: 22px;
  justify-items: end;
}

.home-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.home-social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(11, 143, 179, 0.16);
  transition: 0.22s ease;
}

.home-social-icons a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 143, 179, 0.22);
}

.home-social-icons i {
  font-size: 16px;
}

@media (max-width: 980px) {
  .home-follow-card {
    grid-template-columns: 1fr;
  }

  .home-follow-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .home-follow-card {
    padding: 30px;
  }

  .home-follow-actions .btn {
    width: 100%;
  }

  .home-social-icons {
    flex-wrap: wrap;
  }
}

/* =========================================================
   CONTACT PAGE — ENHANCED INFO
========================================================= */

.contact-info-stack {
  display: grid;
  gap: 16px;
  margin: 26px 0 22px;
}

.contact-email-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-email-card p {
  margin: 6px 0 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.contact-social-block {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.contact-social-block > span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(11, 143, 179, 0.16);
  transition: 0.22s ease;
}

.contact-social-icons a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 143, 179, 0.22);
}
