/* ===========================
   QUICKFIX 24 — GLOBAL CSS
   =========================== */

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

:root {
  --navy: #0c1f40;
  --navy-dark: #081529;
  --navy-mid: #102448;
  --teal: #239f9a;
  --teal-dark: #1a7d79;
  --teal-light: #e8f7f7;
  --teal-lighter: #f0fbfb;
  --white: #ffffff;
  --light-bg: #f0f3f8;
  --text: #1a2940;
  --text-muted: #5a6a82;
  --border: #dde3ee;
  --shadow-sm: 0 2px 8px rgba(12, 31, 64, 0.07);
  --shadow-md: 0 4px 20px rgba(12, 31, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(12, 31, 64, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font: 'Roboto', sans-serif;
  --container-max: 1140px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-dark);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-dark);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===========================
   SECTION COMMONS
   =========================== */
.section {
  padding: 80px 0;
  background: var(--white);
}

.section--light {
  background: var(--light-bg);
}

.section--dark {
  background: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-badge--light {
  color: var(--teal);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title--light {
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub--light {
  color: rgba(255,255,255,0.72);
}

.logo__img.logo__footer{
      background-color: #ffffff;
    padding: 5px;
    width: 75px;
    height: 75px;
    border-radius: 8px;
    box-shadow: rgb(255 255 255 / 20%) 0px 7px 29px 0px;
}