/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   ROOT
========================================= */

:root {

  --primary: #c9a227;
  --primary-hover: #d8b54a;

  --dark: #f8f8f6;
  --dark-secondary: #efede8;

  --card: #ffffff;

  --text: #0d2340;
  --text-secondary: #5b6472;

  --border: rgba(13,35,64,0.10);

  --container: 1400px;

  --transition: 0.35s ease;
}

/* =========================================
   GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;

  background: #f8f8f6;

  color: #0d2340;

  overflow-x: hidden;

  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: auto;
}

section {
  position: relative;
}

/* =========================================
   SECTION TITLES
========================================= */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {

  color: var(--primary);

  text-transform: uppercase;

  letter-spacing: 4px;

  font-size: 13px;
  font-weight: 700;
}

.section-header h2 {

  margin-top: 18px;

  font-size: 54px;
  line-height: 1.1;

  font-weight: 800;
}

/* =========================================
   BUTTONS
========================================= */

.btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 4px;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;

  transition: var(--transition);

  cursor: pointer;
}

.btn-primary {

  background: var(--primary);
  color: #000000;
}

.btn-primary:hover {

  background: var(--primary-hover);

  transform: translateY(-2px);
}

.btn-outline {

  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {

  background: rgba(255,255,255,0.08);
}

/* =========================================
   HEADER
========================================= */

.header {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(13,35,64,0.08);

  transition: var(--transition);
}

/* =========================================
   NAVBAR
========================================= */

.navbar {

  height: 96px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

/* =========================================
   LOGO
========================================= */

.logo {

  display: flex;
  align-items: center;

  gap: 18px;
}

.logo-img {

  width: 74px;
  height: 74px;

  object-fit: contain;

  transition: var(--transition);

  filter:
    drop-shadow(0 0 12px rgba(212,166,58,0.18));
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.logo-text {

  display: flex;
  flex-direction: column;
}

.logo-text h1 {

  font-size: 38px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: 1px;
}

.logo-text span {

  margin-top: 5px;

  font-size: 10px;
  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 3px;

  color: var(--text-secondary);
}

/* =========================================
   NAV MENU
========================================= */

.nav-menu {

  display: flex;
  align-items: center;

  gap: 40px;
}

.nav-menu a {

  position: relative;

  font-size: 13px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--primary);

  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
  width: 100%;
}

.nav-menu a.active-link {
  color: var(--primary);
}

/* =========================================
   HERO
========================================= */

.hero {

  min-height: 100vh;

  background:
    linear-gradient(
      to right,
      rgba(248,248,246,0.95),
      rgba(248,248,246,0.65)
    ),
    url('images/hero-main.jpg');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
}

.hero-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0),
      rgba(248,248,246,0.85)
    );
}

.hero-grid {

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 60px;

  align-items: center;

  padding-top: 120px;
  padding-bottom: 120px;
}

/* HERO TEXT */

.hero-content h2 {

  font-size: 82px;
  line-height: 0.95;

  font-weight: 900;
}

.hero-content h2 span {
  color: var(--primary);
}

.hero-content p {

  margin-top: 35px;

  max-width: 620px;

  font-size: 22px;

  color: var(--text-secondary);
}

.hero-buttons {

  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  margin-top: 45px;
}

.hero-features {

  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  margin-top: 55px;
}

.feature-item {

  border-left: 3px solid var(--primary);

  padding-left: 16px;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* HERO CARD */

.hero-card {

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(13,35,64,0.10);

  border-radius: 20px;

  padding: 50px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

.hero-card h3 {
  color: #0d2340;
}

.hero-card p {
  color: #5b6472;
}

.hero-card h3 {

  margin-top: 18px;

  font-size: 42px;
  line-height: 1.1;
}

.hero-card .line {

  width: 80px;
  height: 4px;

  background: var(--primary);

  margin: 30px 0;
}

.hero-card p {

  color: var(--text-secondary);

  letter-spacing: 2px;

  font-size: 14px;
}

/* =========================================
   STATS
========================================= */

.stats {

  padding: 50px 0;

  background: var(--dark-secondary);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {

  display: grid;
  grid-template-columns: repeat(4,1fr);

  gap: 30px;
}

.stat-box {

  background: rgba(255,255,255,0.03);

  border: 1px solid var(--border);

  padding: 40px;

  transition: var(--transition);
}

.stat-box:hover {

  transform: translateY(-6px);

  border-color:
    rgba(212,166,58,0.4);
}

.stat-box h3 {

  color: var(--primary);

  font-size: 56px;
  font-weight: 900;
}

.stat-box p {

  margin-top: 12px;

  color: var(--text-secondary);

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* =========================================
   SERVICES
========================================= */

.services {
  padding: 120px 0;
}

.services-grid {

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 32px;
}

.service-card {

  overflow: hidden;

  border-radius: 20px;

  background: #ffffff;

  border: 1px solid rgba(13,35,64,0.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

  transition: var(--transition);
}

.service-content h3 {
  color: #0d2340;
}

.service-content p {
  color: #5b6472;
}
.service-card:hover {

  transform: translateY(-10px);
}

.service-card img {

  height: 260px;

  object-fit: cover;
}

.service-content {
  padding: 36px;
}

.service-content h3 {

  font-size: 28px;

  margin-bottom: 16px;
}

.service-content p {
  color: var(--text-secondary);
}

/* =========================================
   WHY MOSP
========================================= */

.why-mosp {

  padding: 120px 0;

  background: #ffffff;

  border-top: 1px solid rgba(13,35,64,0.08);
  border-bottom: 1px solid rgba(13,35,64,0.08);
}

.why-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.why-image img {

  border-radius: 24px;

  border: 1px solid var(--border);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.4);
}

.why-content h2 {

  margin-top: 20px;

  font-size: 54px;
  line-height: 1.1;
}

.why-content p {

  margin-top: 30px;

  font-size: 18px;

  color: var(--text-secondary);
}

.why-content ul {

  margin: 40px 0;

  list-style: none;

  display: grid;
  grid-template-columns: repeat(2,1fr);

  gap: 18px;
}

.why-content li {
  color: var(--text-secondary);
}

/* =========================================
   INDUSTRIES
========================================= */

.industries {
  padding: 120px 0;
}

.industries-grid {

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

.industry-card {

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  height: 320px;

  border: 1px solid var(--border);
}

.industry-card img {

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card::after {

  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.95),
      rgba(0,0,0,0.1)
    );
}

.industry-card h3 {

  position: absolute;

  left: 30px;
  bottom: 30px;

  z-index: 2;

  font-size: 30px;
  font-weight: 800;
}

/* =========================================
   PARTNERS
========================================= */

.partners {

  padding: 90px 0;

  text-align: center;

  background: #ffffff;

  border-top: 1px solid rgba(13,35,64,0.08);
  border-bottom: 1px solid rgba(13,35,64,0.08);
}

.partners-grid img {

  opacity: 0.75;

  filter: grayscale(100%);

  transition: var(--transition);

  max-height: 55px;
}

.partners-grid img:hover {

  opacity: 1;

  filter: grayscale(0%);
}
.partners-grid {

  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(6,1fr);

  gap: 40px;

  align-items: center;
}

.partners-grid img {

  opacity: 0.7;

  transition: var(--transition);

  max-height: 55px;

  object-fit: contain;
}

.partners-grid img:hover {

  opacity: 1;

  transform: scale(1.05);
}

/* =========================================
   CTA
========================================= */

.cta {
  padding: 120px 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {

  margin-top: 20px;

  font-size: 64px;
  line-height: 1.1;
}

.cta-content p {

  margin: 30px auto 0;

  max-width: 780px;

  font-size: 22px;

  color: var(--text-secondary);
}

/* =========================================
   FOOTER
========================================= */

.footer {

  padding: 50px 0;

  background: #0d2340;

  border-top: none;
}

.footer h3 {
  color: #ffffff;
}

.footer span,
.footer p {
  color: rgba(255,255,255,0.75);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1200px) {

  .hero-grid,
  .why-grid,
  .services-grid,
  .industries-grid,
  .stats-grid {

    grid-template-columns: 1fr 1fr;
  }

  .hero-content h2 {
    font-size: 64px;
  }

  .section-header h2,
  .why-content h2,
  .cta-content h2 {

    font-size: 46px;
  }
}

@media(max-width: 992px) {

  .nav-menu {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .services-grid,
  .industries-grid,
  .stats-grid,
  .partners-grid {

    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-content h2 {
    font-size: 52px;
  }

  .hero-card h3 {
    font-size: 34px;
  }

  .why-content ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {

    flex-direction: column;

    text-align: center;
  }
}

@media(max-width: 768px) {

  .navbar {
    height: 84px;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }

  .logo-text h1 {
    font-size: 30px;
  }

  .logo-text span {

    font-size: 8px;

    letter-spacing: 2px;
  }
}

@media(max-width: 576px) {

  .container {
    width: 92%;
  }

  .hero-content h2 {
    font-size: 42px;
  }

  .section-header h2,
  .why-content h2,
  .cta-content h2 {

    font-size: 36px;
  }

  .hero-content p,
  .cta-content p {

    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 35px;
  }

  .hero-card h3 {
    font-size: 28px;
  }

  .stat-box h3 {
    font-size: 42px;
  }

  .service-content {
    padding: 28px;
  }

  .logo-img {
    width: 52px;
    height: 52px;
  }

  .logo-text h1 {
    font-size: 26px;
  }

  .logo-text span {
    display: none;
  }

  .btn-primary {
    display: none;
  }
}
.section-header h2,
.why-content h2,
.cta-content h2,
.hero-content h2 {
  color: #0d2340;
}

.hero-content p,
.why-content p,
.cta-content p {
  color: #5b6472;
}