:root{
  --blue:#002D5B;
  --orange:#F05A28;
  --gray:#5A6B7C;
  --white:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--gray);
  line-height:1.6;
}

/* ---------------- HEADER ---------------- */

.anagki-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:1000;
}

.anagki-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  max-width:1200px;
  margin:auto;
}

.anagki-logo strong{
  color:var(--blue);
  font-size:18px;
  letter-spacing:0.5px;
}

.anagki-logo span{
  display:block;
  font-size:11px;
  color:var(--orange);
}

/* Desktop Nav */
.anagki-nav-desktop{
  display:none;
  align-items:center;
  gap:28px;
}

.anagki-nav-desktop a{
  color:var(--blue);
  font-weight:500;
  text-decoration:none;   /* IMPORTANT: no underline */
}

.anagki-nav-desktop .nav-cta{
  background:var(--orange);
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  font-weight:600;
}

/* Mobile Menu Button */
.anagki-menu-btn{
  background:none;
  border:none;
  font-size:24px;
  color:var(--blue);
}

/* ---------------- MOBILE NAV ---------------- */

.anagki-nav-mobile{
  position:fixed;
  inset:0;
  background:#fff;
  transform:translateX(100%);
  transition:0.3s ease;
  padding:24px;
  z-index:2000;
}

.anagki-nav-mobile.active{
  transform:translateX(0);
}

.anagki-nav-mobile a{
  display:block;
  margin:18px 0;
  font-size:18px;
  font-weight:600;
  color:var(--blue);
  text-decoration:none;   /* no underline */
}

.anagki-nav-mobile .nav-cta{
  background:var(--orange);
  color:#fff;
  padding:14px;
  border-radius:6px;
  text-align:center;
  margin-top:24px;
}

.nav-close{
  background:none;
  border:none;
  font-size:22px;
  margin-bottom:20px;
}

/* ===============================
   HEADER – SERVICES DROPDOWN
================================ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #002D5B;
  font-size: 0.95rem;
  font-weight:500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  display: none;
  flex-direction: column;
  z-index: 999;
}

.nav-dropdown-menu a {
  padding: 12px 16px;
  color: #002d5b;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  background: #f5f7fa;
  color: #f05a28;
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
  }
}


/* ---------------- HERO ---------------- */

.anagki-hero{
  min-height:85vh;
  background:
    linear-gradient(rgba(0,45,91,0.85),rgba(0,45,91,0.7)),
    url('../images/hero-industrial-logistics.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
}

.anagki-hero-inner{
  padding:80px 16px;
  max-width:1200px;
  margin:auto;
  color:#fff;
}

.anagki-hero h1{
  font-size:32px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-sub{
  font-size:16px;
  margin-bottom:16px;
  color:#e6ecf2;
}

.hero-desc{
  font-size:15px;
  max-width:680px;
  margin-bottom:28px;
  color:#e6ecf2;
}

/* Buttons */
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.hero-btn-primary{
  background:var(--orange);
  color:#fff;
  padding:14px;
  border-radius:6px;
  text-align:center;
  font-weight:600;
  text-decoration:none;
}

.hero-btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:12px;
  border-radius:6px;
  text-align:center;
  text-decoration:none;
}

/* ---------------- DESKTOP ---------------- */

@media(min-width:1024px){

  .anagki-menu-btn{
    display:none;
  }

  .anagki-nav-desktop{
    display:flex;
  }

  .anagki-hero{
    min-height:70vh;
  }

  .anagki-hero h1{
    font-size:52px;
  }

  .hero-sub{
    font-size:18px;
  }

  .hero-desc{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:row;
  }
}

/* ================= CORE CAPABILITIES ================= */

.anagki-capabilities{
  padding:72px 16px;
  background:#fff;
}

.capabilities-inner{
  max-width:1200px;
  margin:auto;
}

.section-title{
  font-size:26px;
  color:#002D5B;
  margin-bottom:12px;
}

.section-intro{
  max-width:720px;
  margin-bottom:40px;
  color:#5A6B7C;
}

/* Grid */
.capabilities-grid{
  display:grid;
  gap:20px;
}

/* Cards */
.capability-card{
  background:#F5F7FA;
  padding:24px 20px;
  border-radius:8px;
}

.capability-card h3{
  font-size:18px;
  color:#002D5B;
  margin-bottom:8px;
}

.capability-card p{
  font-size:15px;
  color:#5A6B7C;
  line-height:1.5;
}

/* Optional icon styling */
.capability-card img{
  width:132px;
  height:132px;
  margin-bottom:12px;
}

/* ---------- DESKTOP ---------- */
@media(min-width:1024px){

  .anagki-capabilities{
    padding:96px 24px;
  }

  .section-title{
    font-size:32px;
  }

  .capabilities-grid{
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }

  .capability-card{
    padding:28px 26px;
  }
}

/* ===============================
   SECTION 3: ABOUT ANAGKI
   =============================== */

.anagki-about {
  background-color: #F5F7FA;
  padding: 80px 0;
  width: 100%;
  overflow: hidden; /* hard stop for any child overflow */
}

/* Global container (reusable) */
.anagki-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid layout */
.anagki-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 60 / 40 visual balance */
  gap: 48px;
  align-items: center;
}

/* Text styles */
.anagki-about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002D5B;
  margin-bottom: 24px;
}

.anagki-about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5A6B7C;
  margin-bottom: 16px;
}

/* Image wrapper */
.anagki-about-media {
  width: 100%;
  max-width: 100%;
}

/* Image safety rules */
.anagki-about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .anagki-about {
    padding: 48px 0;
  }

  .anagki-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .anagki-about-title {
    font-size: 1.8rem;
  }
}

/* ===============================
   SECTION 4: SERVICES OVERVIEW
   =============================== */

.anagki-services {
  background-color: #FFFFFF;
  padding: 80px 0;
}

.anagki-section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.anagki-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002D5B;
  margin-bottom: 16px;
}

.anagki-section-header p {
  font-size: 1rem;
  color: #5A6B7C;
  line-height: 1.6;
}

/* Grid */
.anagki-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Card */
.anagki-service-card {
  background-color: #F5F7FA;
  padding: 32px;
  border-radius: 12px;
}

.anagki-service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002D5B;
  margin-bottom: 12px;
}

.anagki-service-card p {
  font-size: 0.95rem;
  color: #5A6B7C;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Bullet points */
.anagki-service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anagki-service-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #5A6B7C;
  margin-bottom: 10px;
}

.anagki-service-points i {
  color: #2E7D32;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Desktop */
@media (min-width: 992px) {
  .anagki-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ===============================
   SECTION 5: INDUSTRIES WE SERVE
   =============================== */

.anagki-industries {
  background: #F5F7FA;
  padding: 80px 0;
}

/* Tabs */
.anagki-industry-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
}

.anagki-industry-tabs::-webkit-scrollbar {
  display: none;
}

.industry-tab {
  background: #FFFFFF;
  border: 1px solid #002D5B;
  color: #002D5B;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.industry-tab.active {
  background: #F05A28;
  border-color: #F05A28;
  color: #FFFFFF;
}

/* Content panel */
.anagki-industry-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
}

.industry-panel {
  display: none;
}

.industry-panel.active {
  display: block;
}

.industry-panel h3 {
  color: #002D5B;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.industry-panel p {
  color: #5A6B7C;
  margin-bottom: 16px;
  line-height: 1.6;
}

.industry-panel ul {
  padding-left: 18px;
}

.industry-panel ul li {
  color: #5A6B7C;
  margin-bottom: 8px;
}

/* Desktop refinement */
@media (min-width: 992px) {
  .anagki-industry-tabs {
    justify-content: center;
  }

  .anagki-industry-content {
    max-width: 960px;
    margin: auto;
  }
}

/* ===============================
   SECTION 6: WHY CHOOSE ANAGKI
   =============================== */

.anagki-why {
  background: #FFFFFF;
  padding: 80px 0;
}

.anagki-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Card */
.anagki-why-card {
  background: #F5F7FA;
  padding: 32px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.2s ease;
}

.anagki-why-card:hover {
  transform: translateY(-4px);
}

/* Icon */
.anagki-why-icon {
  width: 56px;
  height: 56px;
  background: #002D5B;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.anagki-why-icon i {
  font-size: 1.4rem;
}

/* Text */
.anagki-why-card h3 {
  font-size: 1.25rem;
  color: #002D5B;
  margin-bottom: 12px;
}

.anagki-why-card p {
  font-size: 0.95rem;
  color: #5A6B7C;
  line-height: 1.6;
}

/* Bottom accent on hover */
.anagki-why-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #F05A28;
  transition: width 0.25s ease;
  border-radius: 0 0 12px 12px;
}

.anagki-why-card:hover::after {
  width: 100%;
}

/* Desktop */
@media (min-width: 992px) {
  .anagki-why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.anagki-operations {
  padding: 80px 0;
  background: #ffffff;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.operation-card {
  background: #F5F7FA;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.2s ease;
}

.operation-card:hover {
  transform: translateY(-4px);
}

.operation-card i {
  font-size: 28px;
  color: #002D5B;
  margin-bottom: 14px;
}

.operation-card h4 {
  font-size: 1rem;
  color: #002D5B;
  margin-bottom: 8px;
}

.operation-card p {
  font-size: 0.9rem;
  color: #5A6B7C;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 991px) {
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .operation-card {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .operation-card i {
    font-size: 24px;
    margin-top: 4px;
  }
}

.anagki-clients {
  padding: 60px 0;
  background: #F5F7FA;
}

.clients-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* DESKTOP = 3 */
  gap: 32px;
  align-items: center;
}


.client-logo {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.client-logo img {
  max-height: 60px;
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .clients-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .clients-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* =========================
   CTA SECTION
========================= */

.anagki-cta-section {
  background-image: url("../images/cta-industrial-site.webp"); /* replace anytime */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.anagki-cta-overlay {
  background: linear-gradient(
    rgba(0, 45, 91, 0.85),
    rgba(0, 45, 91, 0.85)
  );
  padding: 80px 20px;
}

.anagki-cta-content {
  text-align: center;
  max-width: 900px;
}

.anagki-cta-content h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.anagki-cta-content p {
  color: #f5f7fa;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
/* =========================
   CTA BUTTONS – HARD FIX
========================= */

.anagki-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: nowrap; /* IMPORTANT for desktop */
}

.anagki-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  min-width: 220px;   /* KEY: stops weird shrink/stretch */
  max-width: none;    /* overrides global rules */
}

/* Primary */
.anagki-cta-primary {
  background: #F05A28;
  color: #FFFFFF;
  border: none;
}

.anagki-cta-primary:hover {
  background: #d94f22;
}

/* Secondary */
.anagki-cta-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.anagki-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile */
@media (max-width: 575px) {
  .anagki-cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .anagki-cta-btn {
    width: 100%;
    min-width: unset;
  }
}

/* ===============================
   SECTION 10 – CONTACT US
================================ */

.anagki-contact {
  background: #002D5B;
  padding: 80px 16px;
  color: #FFFFFF;
}

.anagki-contact-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.anagki-contact-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.anagki-contact-header p {
  color: #F5F7FA;
  line-height: 1.6;
}

/* Grid */
.anagki-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Form Card */
.anagki-contact-form {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D0D7DE;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  width: 100%;
  background: #F05A28;
  color: #FFFFFF;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

/* Contact Info */
.anagki-contact-info h3 {
  margin-bottom: 20px;
}

.anagki-contact-info p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #F5F7FA;
}

/* Desktop */
@media (min-width: 1024px) {
  .anagki-contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: flex-start;
  }

  .anagki-contact {
    padding: 100px 0;
  }
}

/* ===============================
   FOOTER
================================ */

.anagki-footer {
  background: #001F3F;
  color: #F5F7FA;
  padding: 64px 16px 32px;
  font-size: 0.9rem;
}

.anagki-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #FFFFFF;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #F5F7FA;
}

.footer-links a {
  color: #F5F7FA;
  text-decoration: none;
}

.footer-links a:hover {
  color: #F05A28;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #F05A28;
  transform: translateY(-2px);
}


/* Desktop */
@media (min-width: 1024px) {
  .anagki-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/* SERVICE HERO */
.service-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: url("../images/service-road-hero.jpg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* DARK OVERLAY */
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 44, 0.92) 0%,
    rgba(6, 24, 44, 0.75) 55%,
    rgba(6, 24, 44, 0.6) 100%
  );
}

/* BRAND ACCENT (RIGHT SHAPE) */
.service-hero__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: #f26522;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.95;
}

/* CONTENT */
.service-hero__content {
  position: relative;
  max-width: 760px;
  padding-top: 40px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
}

/* TITLE */
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* SUBTEXT */
.service-hero p {
  font-size: 1.05rem;
  max-width: 620px;
  opacity: 0.95;
}
/* SERVICE HERO */
.service-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: url("../images/cta-industrial-site.webp") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* DARK OVERLAY */
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 44, 0.92) 0%,
    rgba(6, 24, 44, 0.75) 55%,
    rgba(6, 24, 44, 0.6) 100%
  );
}

/* BRAND ACCENT (RIGHT SHAPE) */
.service-hero__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: #f26522;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.95;
}

/* CONTENT */
.service-hero__content {
  position: relative;
  max-width: 760px;
  padding: 40px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
}

/* TITLE */
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

/* SUBTEXT */
.service-hero p {
  font-size: 1.05rem;
  max-width: 620px;
  opacity: 0.95;
}

.service-intro {
  padding: 80px 20px;
  background: #ffffff;
}

.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-intro__content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #002d5b;
}

.service-intro__content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #5a6b7c;
}

.service-intro__image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Desktop */
@media (min-width: 992px) {
  .service-intro__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.service-capabilities {
  padding: 70px 20px;
  background: #f5f7fa;
}

.service-capabilities h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: #002d5b;
}

.capabilities-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.capabilities-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1.2rem;
  color: #3b4a5a;
}

/* Green check icon */
.capabilities-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f9d55;
  font-weight: bold;
}

/* Desktop */
@media (min-width: 768px) {
  .capabilities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-process {
  padding: 80px 20px;
  background: #ffffff;
}

.service-process h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: #002d5b;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.process-step {
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

.process-step span {
  font-size: 1.85rem;
  font-weight: 700;
  color: #f26522;
}

.process-step p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #5a6b7c;
}

/* Desktop */
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.forwarding-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.forwarding-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;
}

.forwarding-card h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #002d5b;
}

.forwarding-card ul {
  list-style: none;
  padding: 0;
}

.forwarding-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4b5b6a;
}

.forwarding-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f9d55;
}

/* Desktop */
@media (min-width: 768px) {
  .forwarding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.capability-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.capability-item h4 {
  color: #002d5b;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.capability-item p {
  color: #5a6b7c;
  font-size: 0.95rem;
}

/* Desktop */
@media (min-width: 768px) {
  .capability-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-dispatch {
  padding: 20px;
}

.dispatch-points {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px;
  gap: 18px;
}

.dispatch-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.dispatch-item span {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #002d5b;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dispatch-item p {
  color: #5a6b7c;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .dispatch-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-section {
  padding: 80px 20px;
}

.service-section h2,
.service-section h3 {
  color: #002d5b;
}

.service-project-intro .lead {
  font-size: 1.1rem;
  max-width: 720px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.cap-card {
  background: #f5f7fa;
  padding: 24px;
  border-radius: 12px;
}

.process-list {
  max-width: 720px;
  margin-top: 32px;
}

.process-list li {
  margin-bottom: 20px;
}

.check-list li {
  margin-bottom: 12px;
}

.anagki-odc-capabilities {
  padding: 80px 20px;
}

.odc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.odc-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.odc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #f05a28;
  border-radius: 14px 0 0 14px;
}

.odc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.odc-icon {
  width: 48px;
  height: 48px;
  background: #002d5b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.odc-card h3 {
  color: #002d5b;
  margin-bottom: 10px;
}

.odc-card p {
  color: #5a6b7c;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .odc-grid {
    grid-template-columns: 1fr;
  }
}

.anagki-odc-execution {
  padding: 80px 20px;
  background: #f5f7fa;
}

.execution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.execution-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.execution-card.highlight {
  border-left: 6px solid #f05a28;
}

.execution-card h3 {
  margin-bottom: 18px;
  color: #002d5b;
}

.execution-card ul {
  list-style: none;
  padding: 0;
}

.execution-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #5a6b7c;
}

.execution-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f05a28;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .execution-grid {
    grid-template-columns: 1fr;
  }
}

.industries-overview {
  padding: 90px 20px;
  background: #f5f7fa;
}

.container.narrow {
  max-width: 880px;
}

.industries-overview h2 {
  color: #002d5b;
  margin-bottom: 18px;
}

.overview-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6b7c;
}

.industry-section {
  padding: 100px 20px;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.industry-content h3 {
  color: #002d5b;
  margin-bottom: 16px;
}

.industry-content p {
  color: #5a6b7c;
  line-height: 1.6;
  margin-bottom: 18px;
}

.industry-points {
  list-style: none;
  padding: 0;
}

.industry-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #5a6b7c;
}

.industry-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f05a28;
  font-weight: 600;
}

.industry-image {
  background: #e9eef3;
  height: 280px;
  border-radius: 18px;
}



/* Mobile */
@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-section.alt {
  background: #f5f7fa;
}

.contact-intro {
  padding: 80px 30px;
  background: #f5f7fa;
}

.contact-intro h2 {
  color: #002d5b;
  margin-bottom: 16px;
}

.contact-intro p {
  color: #5a6b7c;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-main {
  padding: 100px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.contact-form h3 {
  color: #002d5b;
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #dce3ea;
  font-size: 0.95rem;
  font-family: Inter, sans-serif;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #f05a28;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* DETAILS */
.contact-details {
  padding: 20px;
}

.contact-details h3 {
  color: #002d5b;
  margin-bottom: 20px;
}

.contact-details p {
  color: #5a6b7c;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-details a {
  color: #002d5b;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 22px;
  }
}

.contact-assurance {
  background: #002d5b;
  padding: 50px 20px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: #ffffff;
}

.assurance-grid strong {
  display: block;
  margin-bottom: 6px;
}

.assurance-grid span {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .assurance-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ==============================
   ABOUT US – INTRO SECTION
============================== */

.about-intro {
  padding: 120px 0 100px;
  background: #ffffff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Vertical Accent */
.about-intro-accent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-accent::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f05a28;
}

.about-intro-accent span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #5a6b7c;
  background: #ffffff;
  padding: 8px 0;
}

/* Content */
.about-intro-content h2 {
  color: #002d5b;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.about-intro-content .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #002d5b;
  margin-bottom: 18px;
  max-width: 820px;
}

.about-intro-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6b7c;
  max-width: 860px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-intro {
    padding: 90px 30px 70px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro-accent {
    display: none;
  }

  .about-intro-content h2 {
    font-size: 1.8rem;
  }
}

/* ==============================
   ABOUT US – WHAT WE DO
============================== */

.about-what-we-do {
  padding: 110px 20px;
  background: #f5f7fa;
}

.about-what-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

/* Left content */
.about-what-content h2 {
  color: #002d5b;
  font-size: 2.1rem;
  margin-bottom: 22px;
}

.about-what-content .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #002d5b;
  margin-bottom: 18px;
}

.about-what-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6b7c;
  max-width: 720px;
}

/* Right cards */
.about-what-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.what-card {
  background: #ffffff;
  padding: 26px 28px;
  border-radius: 14px;
  border-left: 4px solid #f05a28;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.what-card h4 {
  color: #002d5b;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.what-card p {
  font-size: 0.95rem;
  color: #5a6b7c;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .about-what-we-do {
    padding: 90px 20px;
  }

  .about-what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-what-content h2 {
    font-size: 1.8rem;
  }
}

/* ==============================
   ABOUT US – OPERATING PHILOSOPHY
============================== */

.about-philosophy {
  padding: 120px 20px;
  background: #ffffff;
}

.philosophy-intro {
  max-width: 720px;
  margin-bottom: 70px;
}

.philosophy-intro h2 {
  color: #002d5b;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.philosophy-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6b7c;
}

/* Pillars */
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.pillar {
  position: relative;
  padding-top: 40px;
}

.pillar-index {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #f05a28;
  letter-spacing: 1px;
}

.pillar h3 {
  font-size: 1.25rem;
  color: #002d5b;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6b7c;
}

/* Mobile */
@media (max-width: 768px) {
  .about-philosophy {
    padding: 90px 20px;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-intro h2 {
    font-size: 1.8rem;
  }
}

/* ==============================
   ABOUT US – WHY ANAGKI EXISTS
============================== */

.about-why-exists {
  padding: 120px 20px;
  background: #f5f7fa;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
}

/* Problems */
.why-problems h2 {
  color: #002d5b;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.why-problems .intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6b7c;
  margin-bottom: 24px;
}

.why-problems ul {
  list-style: none;
  padding: 0;
}

.why-problems li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: #5a6b7c;
}

.why-problems li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #f05a28;
  font-weight: 600;
}

/* Solution */
.why-solution {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.why-solution h3 {
  color: #002d5b;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.why-solution p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6b7c;
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-why-exists {
    padding: 90px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-problems h2 {
    font-size: 1.8rem;
  }
}

/* ==============================
   ABOUT US – DIFFERENTIATION
============================== */

.about-differentiation {
  padding: 120px 20px;
  background: #ffffff;
}

/* Header */
.diff-header {
  max-width: 760px;
  margin-bottom: 70px;
}

.diff-header h2 {
  color: #002d5b;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.diff-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6b7c;
}

/* Grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Items */
.diff-item {
  position: relative;
  padding-left: 22px;
}

.diff-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 40px;
  background: #f05a28;
  border-radius: 2px;
}

.diff-item h3 {
  color: #002d5b;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.diff-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #5a6b7c;
}

/* Mobile */
@media (max-width: 768px) {
  .about-differentiation {
    padding: 90px 20px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .diff-header h2 {
    font-size: 1.8rem;
  }
}
/* ==============================
   ABOUT US – INDUSTRIES SUPPORTED
============================== */

.about-industries {
  padding: 110px 20px;
  background: #f5f7fa;
}

/* Header */
.industries-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.industries-header h2 {
  color: #002d5b;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.industries-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6b7c;
}

/* Industry Grid */
.industries-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 40px;
}

.industry-item {
  font-size: 1.05rem;
  color: #002d5b;
  padding-left: 18px;
  position: relative;
}

.industry-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f05a28;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-industries {
    padding: 90px 20px;
  }

  .industries-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industries-header h2 {
    font-size: 1.8rem;
  }
}

/* ===========================
   GEOGRAPHY & SCALE SECTION
=========================== */

.about-geo-section {
  background: #f5f7fa;
  padding: 80px 20px;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* LEFT CONTENT */
.geo-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #002d5b;
  margin-bottom: 16px;
}

.geo-content p {
  font-size: 1.05rem;
  color: #5a6b7c;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* RIGHT VISUAL */
.geo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.india-map-wrapper {
  width: 100%;
  max-width: 520px;
  background: #fdfeff; /* Map base */
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.india-map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===========================
   DESKTOP LAYOUT
=========================== */

@media (min-width: 992px) {
  .geo-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }

  .geo-content h2 {
    font-size: 2.6rem;
  }
}

/* MEDIA HERO */
.media-hero {
  background: linear-gradient(
      180deg,
      rgba(10, 58, 106, 0.04),
      rgba(10, 58, 106, 0.01)
    ),
    #ffffff;
  padding: 96px 0 72px;
}

.media-hero .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.media-hero-content {
  max-width: 760px;
}

.media-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #f05a28;
  margin-bottom: 14px;
}

.media-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #0a3a6a;
  margin-bottom: 18px;
}

.media-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #2c3e50;
  margin-bottom: 16px;
}

.media-description {
  font-size: 16px;
  line-height: 1.7;
  color: #5b6b7c;
  max-width: 680px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .media-hero {
    padding: 72px 0 56px;
  }

  .media-hero h1 {
    font-size: 32px;
  }

  .media-subtitle {
    font-size: 17px;
  }
}
/* ===========================
   MEDIA – FEATURED INSIGHT
=========================== */

.media-featured {
  background: #f5f7fa;
  padding: 88px 20px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  background: #ffffff;
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  align-items: center;
}

/* CONTENT */
.featured-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #f05a28;
  display: inline-block;
  margin-bottom: 12px;
}

.featured-content h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #0a3a6a;
  margin-bottom: 16px;
}

.featured-summary {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6b7c;
  margin-bottom: 18px;
}

.featured-meta {
  font-size: 14px;
  color: #8a99a8;
  margin-bottom: 20px;
}

.featured-meta span {
  margin-right: 6px;
}

/* CTA */
.featured-link {
  font-size: 15px;
  font-weight: 600;
  color: #f05a28;
  text-decoration: none;
}

.featured-link:hover {
  text-decoration: underline;
}

/* VISUAL */
.featured-visual {
  height: 220px;
  background: linear-gradient(
    135deg,
    rgba(10, 58, 106, 0.08),
    rgba(10, 58, 106, 0.02)
  );
  border-radius: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .featured-content h2 {
    font-size: 22px;
  }

  .featured-visual {
    height: 160px;
  }
}

/* ===========================
   MEDIA – INSIGHTS CATEGORIES
=========================== */

.media-categories {
  background: #ffffff;
  padding: 80px 24px;
}

.categories-header {
  max-width: 680px;
  margin-bottom: 32px;
}

.categories-header h2 {
  font-size: 24px;
  color: #0a3a6a;
  margin-bottom: 10px;
}

.categories-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6b7c;
}

/* Category Pills */
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-pill {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: #0a3a6a;
  background: #f5f7fa;
  border: 1px solid #e3e9ef;
  white-space: nowrap;
}

/* Hover (subtle, optional) */
.category-pill:hover {
  background: #ffffff;
  border-color: #f05a28;
  color: #f05a28;
}

/* MOBILE */
@media (max-width: 768px) {
  .media-categories {
    padding: 64px 26px;
  }

  .categories-header h2 {
    font-size: 20px;
  }
}

/* ===========================
   MEDIA – INSIGHTS LIST
=========================== */

.media-insights-list {
  background: #ffffff;
  padding: 72px 26px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Card */
.insight-card {
  border: 1px solid #e5ebf1;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  background: #ffffff;
}

.insight-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Category */
.insight-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #f05a28;
  margin-bottom: 10px;
}

/* Title */
.insight-card h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #0a3a6a;
  margin-bottom: 12px;
}

/* Description */
.insight-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6b7c;
  margin-bottom: 16px;
}

/* Meta */
.insight-meta {
  font-size: 13px;
  color: #8a99a8;
  margin-bottom: 14px;
}

/* CTA */
.insight-link {
  font-size: 14px;
  font-weight: 600;
  color: #0a3a6a;
  text-decoration: none;
}

.insight-link:hover {
  color: #f05a28;
}

/* MOBILE */
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-card {
    padding: 22px;
  }
}

/* ===========================
   MEDIA – WHITEPAPERS
=========================== */

.media-whitepapers {
  background: #f5f7fa;
  padding: 88px 20px 104px;
}

.whitepapers-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.whitepapers-header h2 {
  font-size: 26px;
  color: #0a3a6a;
  margin-bottom: 12px;
}

.whitepapers-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b7c;
}

/* List */
.whitepaper-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Card */
.whitepaper-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.06);
}

/* Content */
.whitepaper-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #f05a28;
  display: inline-block;
  margin-bottom: 10px;
}

.whitepaper-card h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #0a3a6a;
  margin-bottom: 12px;
}

.whitepaper-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6b7c;
  margin-bottom: 14px;
}

.whitepaper-meta {
  font-size: 13px;
  color: #8a99a8;
}

/* Action */
.whitepaper-action {
  display: flex;
  align-items: center;
}

.download-btn {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #0a3a6a;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.download-btn:hover {
  background: #f05a28;
}

/* MOBILE */
@media (max-width: 768px) {
  .whitepaper-card {
    flex-direction: column;
    padding: 26px;
  }

  .whitepaper-action {
    justify-content: flex-start;
  }
}

/* ===========================
   MEDIA – WHY WE SHARE INSIGHTS
=========================== */

.media-why-insights {
  padding: 96px 20px;
  background: #ffffff;
}

.container.narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-insights-block {
  position: relative;
  padding-left: 24px;
}

/* Accent line */
.why-insights-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 48px;
  background: #f05a28;
  border-radius: 2px;
}

.why-insights-block h2 {
  font-size: 26px;
  color: #0a3a6a;
  margin-bottom: 16px;
}

.why-insights-block .lead {
  font-size: 18px;
  line-height: 1.6;
  color: #0a3a6a;
  margin-bottom: 14px;
}

.why-insights-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b7c;
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .media-why-insights {
    padding: 72px 20px;
  }

  .why-insights-block h2 {
    font-size: 22px;
  }

  .why-insights-block .lead {
    font-size: 16px;
  }
}

/* HERO */
.legal-hero {
  background: linear-gradient(
    180deg,
    rgba(0, 45, 91, 0.05),
    rgba(0, 45, 91, 0.02)
  );
  padding: 96px 30px 72px;
}

.legal-hero h1 {
  font-size: 40px;
  color: #002d5b;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 17px;
  max-width: 640px;
}

/* CONTENT */
.legal-content {
  padding: 72px 0 96px;
}

.legal-section {
  margin-bottom: 42px;
}

.legal-section h2 {
  font-size: 20px;
  color: #002d5b;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 18px;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .legal-hero {
    padding: 72px 30px 56px;
  }

  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-content {
    padding: 56px 0 72px;
  }
}


/* Hero */
.legal-hero {
  background: linear-gradient(
    180deg,
    rgba(0, 45, 91, 0.05),
    rgba(0, 45, 91, 0.02)
  );
  padding: 96px 30px 72px;
}

.legal-hero h1 {
  font-size: 40px;
  color: #002d5b;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 17px;
  max-width: 640px;
}

/* Content */
.legal-content {
  padding: 72px 0 96px;
}

.legal-section {
  margin-bottom: 42px;
}

.legal-section h2 {
  font-size: 20px;
  color: #002d5b;
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 18px;
}

.legal-section li {
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-hero {
    padding: 72px 20px 56px;
  }

  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-content {
    padding: 56px 20px 72px;
  }
}


/* HERO */
.faq-hero {
  background: linear-gradient(
    180deg,
    rgba(0, 45, 91, 0.06),
    rgba(0, 45, 91, 0.02)
  );
  padding: 96px 30px 72px;
}

.faq-hero h1 {
  font-size: 40px;
  color: #002d5b;
  margin-bottom: 12px;
}

.faq-hero p {
  font-size: 17px;
  max-width: 640px;
}

/* FAQ CONTENT */
.faq-content {
  padding: 72px 20px 96px;
}

.faq-item {
  border-bottom: 1px solid #e4ebf1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: #002d5b;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #f05a28;
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #f05a28;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-hero {
    padding: 72px 20px 56px;
  }

  .faq-hero h1 {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
  }
}
