:root {
  color-scheme: light;
  --primary: #0b1e36;
  --primary-light: #17355e;
  --primary-rgb: 11, 30, 54;
  --accent: #f2994a;
  --accent-hover: #e08535;
  --dext: #ff5a43;
  --dext-rgb: 255, 90, 67;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.85);
  --border: #e2e8f0;
  --border-light: rgba(226, 232, 240, 0.4);
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(11, 30, 54, 0.03);
  --shadow: 0 16px 40px rgba(11, 30, 54, 0.06);
  --shadow-lg: 0 24px 60px rgba(11, 30, 54, 0.12);
  --font-title: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HEADER & NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(11, 30, 54, 0.08);
  border: 1px solid var(--border);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.brand-cabinet {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.brand-exaucal {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.2px;
  margin-top: -1px;
}

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

.main-nav a {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover {
  color: var(--primary-light);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 96px);
  overflow: hidden;
  background: #0962c2; /* Vibrant blue matching the background image edges */
  color: #ffffff;
  padding: 80px 6vw;
}

@media (min-width: 769px) {
  .hero {
    min-height: clamp(430px, 34vw, 560px);
    height: auto;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.95;
  filter: contrast(102%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(9, 98, 194, 0.88) 24%, rgba(9, 98, 194, 0.42) 58%, rgba(9, 98, 194, 0.1) 100%),
    linear-gradient(90deg, rgba(9, 98, 194, 0.12), rgba(9, 98, 194, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  flex: 0 1 760px;
  text-shadow: 0 2px 14px rgba(11, 30, 54, 0.7);
  animation: fadeInUp 1s ease-out;
}

.hero-missions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(360px, 28vw);
  margin-left: auto;
  padding: 22px 0 22px 24px;
  border-left: 5px solid var(--accent);
}

.hero-missions span {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(0.94rem, 1.32vw, 1.32rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(11, 30, 54, 0.45);
  background: rgba(11, 30, 54, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(11, 30, 54, 0.12);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.hero-title {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}

.hero-cabinet {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 1.5px;
}

.hero-exaucal {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0px;
}

.hero-content p {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(242, 153, 74, 0.25);
}

.button.primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 30px rgba(242, 153, 74, 0.35);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.button:hover .btn-icon {
  transform: rotate(-10deg) scale(1.1);
}

/* SECTION STYLES */
.section {
  padding: 100px 6vw;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

/* SECTION HISTORY */
.history {
  background: var(--bg-soft);
}

.history-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.history-badge-card {
  background: var(--primary);
  color: #ffffff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--accent);
}

.history-badge-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.badge-num {
  font-family: var(--font-title);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.badge-label {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.history-badge-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.history-text h2 {
  margin-bottom: 24px;
}

.history-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.history-text p strong {
  color: var(--primary);
}

/* SERVICES SECTION */
.services {
  background: var(--bg);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.missions-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.mission-feature {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--accent);
}

.mission-feature::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.mission-label {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.mission-feature h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission-feature p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(11, 30, 54, 0.15);
}

.mission-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-feature:hover .mission-feature-image img {
  transform: scale(1.06);
}

.mission-feature ul {
  list-style: none;
  margin-top: auto;
}

.mission-feature li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.mission-feature li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.mission-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mission-row {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-row:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: var(--shadow);
  border-color: rgba(11, 30, 54, 0.1);
}

.mission-icon {
  font-size: 1.7rem;
  width: 48px;
  height: 48px;
  background: rgba(11, 30, 54, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mission-row:hover .mission-icon {
  background: rgba(242, 153, 74, 0.1);
}

.mission-row h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.mission-row p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* INNOVATION & IA SECTION (DEXT) */
.innovation {
  background: var(--bg-soft);
  position: relative;
}

.innovation-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.innovation-info h2 {
  margin-bottom: 24px;
}

.innovation-info > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tech-item {
  display: flex;
  gap: 20px;
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.tech-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-item h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.tech-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* DEXT CARD SPECIAL STYLING */
.dext-card {
  background: radial-gradient(circle at 100% 0%, rgba(255, 90, 67, 0.07) 0%, rgba(255, 255, 255, 0) 60%), #ffffff;
  border: 2px solid rgba(255, 90, 67, 0.2);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(255, 90, 67, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.dext-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(255, 90, 67, 0.14);
}

.dext-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.dext-partner-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 90, 67, 0.1);
  color: var(--dext);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dext-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.dext-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.dext-benefits {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.dext-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}

.check-icon {
  color: var(--dext);
  font-weight: bold;
  font-size: 1.1rem;
}

.dext-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.dext-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dext-secure-badge svg {
  color: var(--dext);
}

/* APPROACH SECTION */
.approach {
  background: var(--bg);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.approach-copy h2 {
  margin-bottom: 20px;
}

.approach-copy p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.approach-list {
  display: grid;
  gap: 20px;
}

.approach-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.approach-card:hover {
  border-color: rgba(11, 30, 54, 0.15);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.approach-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.approach-card span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CONTACT SECTION */
.contact {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-details {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-details address {
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details address strong {
  color: var(--primary);
  font-size: 1.15rem;
  font-family: var(--font-title);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-title);
  margin-bottom: 30px;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--accent);
}

.opening-hours {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 30px;
}

.opening-hours h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.opening-hours dl {
  display: grid;
  gap: 8px;
}

.opening-hours dl div {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.opening-hours dt {
  font-weight: 700;
  color: var(--text);
}

.opening-hours dd {
  color: var(--text-muted);
}

.opening-hours dd.closed {
  color: #ef4444;
  font-weight: 600;
}

.contact-details .button {
  margin-top: auto;
  width: 100%;
}

.map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 480px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 480px;
}

/* FOOTER */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.back-to-top:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

/* MOBILE AND TABLET RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hero {
    align-items: flex-start;
    flex-direction: column;
    aspect-ratio: auto;
  }

  .hero-content {
    flex: 0 1 auto;
  }

  .hero-missions {
    width: min(100%, 720px);
    margin-left: 0;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 5px solid var(--accent);
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .history-container,
  .missions-layout,
  .innovation-container,
  .approach,
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-panel {
    min-height: 400px;
  }
  
  .map-panel iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
    height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--bg-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-missions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-missions span {
    width: auto;
    padding: 8px 11px;
    font-size: 0.88rem;
    border-radius: var(--radius);
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 70px 20px;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  .mission-feature {
    padding: 30px;
  }

  .dext-card {
    padding: 30px 20px;
  }

  .contact-details {
    padding: 30px 20px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 30px 20px;
  }
}
