:root {
  /* =========
     BRAND BLUE
     Base: #0743D3
  ========= */
  --blue-100: #e6ecfb;
  --blue-200: #c1d0f4;
  --blue-300: #9cb4ed;
  --blue-400: #517be0;
  --blue-500: #0743d3;
  --blue-600: #0639b3;
  --blue-700: #052f94;
  --blue-800: #042574;
  --blue-900: #031b54;

  /* =========
     BRAND RED
     Base: #CC1516
  ========= */
  --red-100: #fae8e8;
  --red-200: #f2c4c5;
  --red-300: #eba1a2;
  --red-400: #db5b5c;
  --red-500: #cc1516;
  --red-600: #ad1213;
  --red-700: #8f0f0f;
  --red-800: #700c0c;
  --red-900: #520809;

  /* =========
     LIGHT UI NEUTRALS
  ========= */
  --bg: #f8fafc;
  --bg-soft: #eef4ff;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --border: #dbe4f0;
  --border-strong: #bfd0ea;

  /* =========
     TEXT
  ========= */
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* =========
     PRIMARY SYSTEM
  ========= */
  --primary: var(--blue-500);
  --primary-hover: var(--blue-600);
  --primary-active: var(--blue-700);
  --primary-soft: var(--blue-100);
  --primary-border: var(--blue-200);

  /* =========
     DANGER / ALERT
  ========= */
  --danger: var(--red-500);
  --danger-hover: var(--red-600);
  --danger-active: var(--red-700);
  --danger-soft: var(--red-100);
  --danger-border: var(--red-200);

  /* =========
     STATES
  ========= */
  --success: #15803d;
  --success-soft: #dcfce7;
  --warning: #b45309;
  --warning-soft: #fef3c7;
  --info: var(--blue-500);
  --info-soft: var(--blue-100);

  /* =========
     SHADOWS
  ========= */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.12);

  /* =========
     RADIUS
  ========= */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* =========
     LAYOUT
  ========= */
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 50px;
  background: var(--blue-900);
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

html,
body {
  min-height: 100%;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* Navbar----------------------------------------------------------------------------------------------- */

/* =========================
   NAVBAR
========================= */

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 18px;
  background: transparent;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    padding 0.25s ease;
}

.navbar.scrolled {
  background: rgba(3, 27, 84, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
  opacity: 0.9;
  color: var(--red-500);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-links a:hover i {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--red-500);
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(204, 21, 22, 0.28);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-quote #iconQuote {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.btn-quote:hover {
  background: var(--red-600);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(204, 21, 22, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.menu-toggle i {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(3, 27, 84, 0.94);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding-top: 10px;
  }
}

/* =========================
   MOBILE
========================= */

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

  .nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-logo img {
    height: 48px;
  }

  .nav-logo {
    flex: 0 0 auto;
  }

  .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
  }

  .btn-quote {
    display: inline-flex;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
    border-radius: 999px;
  }

  .btn-quote span {
    display: none;
  }

  .btn-quote #iconQuote {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-links {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
  }
}

/* ----------------------------------------------------------------------------------------------------- */
/* Hero----------------------------------------------------------------------------------------------- */

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

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.56) 35%,
      rgba(0, 0, 0, 0.28) 65%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  padding-top: 120px;
  padding-bottom: 100px;
  color: #ffffff;
}

.hero-content > * {
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(204, 21, 22, 0.14);
  border: 1px solid rgba(204, 21, 22, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, serif;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.92;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.hero-text {
  margin-top: 20px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.btn-hero-primary {
  background: var(--red-500);
  color: white;
  box-shadow: 0 12px 30px rgba(204, 21, 22, 0.3);
}

.btn-hero-primary:hover {
  background: var(--red-600);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.62);
  color: white;
}

.btn-hero-secondary:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow-left {
  left: 20px;
}

.hero-arrow-right {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
  width: 26px;
  background: var(--red-500);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .hero-content {
    width: min(100% - 32px, 900px);
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .hero-content > * {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-arrow-left {
    left: 14px;
  }

  .hero-arrow-right {
    right: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.48) 36%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 118px;
    padding-bottom: 90px;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-tag {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 0.72rem;
    max-width: 320px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero {
    width: 100%;
    min-height: 54px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 22px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    width: calc(100% - 24px);
    padding-top: 110px;
    padding-bottom: 86px;
  }

  .hero-tag {
    font-size: 0.66rem;
    padding: 7px 10px;
    max-width: 280px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12.5vw, 4rem);
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-dot {
    width: 9px;
    height: 9px;
  }

  .hero-dot.active {
    width: 22px;
  }
}

/* ----------------------------------------------------------------------------------------------------- */
/* Services----------------------------------------------------------------------------------------------- */

/* =========================
   SERVICES
========================= */

.services {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(7, 67, 211, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-shell {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(204, 21, 22, 0.08);
  border: 1px solid rgba(204, 21, 22, 0.18);
  color: var(--red-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-header {
  max-width: 760px;
}

.services-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.services-intro {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red-500) 0%,
    var(--blue-500) 100%
  );
  opacity: 0.95;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(7, 67, 211, 0.18);
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(7, 67, 211, 0.04), rgba(255, 255, 255, 0.98));
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(204, 21, 22, 0.12),
    rgba(7, 67, 211, 0.12)
  );
  border: 1px solid rgba(7, 67, 211, 0.12);
  color: var(--blue-700);
}

.service-icon i {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--blue-900);
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .services {
    padding: 84px 0;
  }

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

  .service-card {
    min-height: 230px;
  }

  .services-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.7rem);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .services {
    padding: 72px 0;
  }

  .services-shell {
    gap: 28px;
  }

  .services-header h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .services-intro {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .service-icon i {
    width: 24px;
    height: 24px;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card p {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

.services-extra {
  margin-top: 10px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(7, 67, 211, 0.05);
  border: 1px solid rgba(7, 67, 211, 0.1);
}

.services-extra p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ----------------------------------------------------------------------------------------------------- */

/* About----------------------------------------------------------------------------------------------- */

/* =========================
   ABOUT
========================= */

.about {
  position: relative;
  padding: 110px 0;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 52px;
}

.about-media {
  position: relative;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 620px;
  background: linear-gradient(
    135deg,
    rgba(7, 67, 211, 0.12),
    rgba(204, 21, 22, 0.12)
  );
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 27, 84, 0.04) 0%,
      rgba(3, 27, 84, 0.14) 100%
    );
  pointer-events: none;
}

.about-badge {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
}

.about-badge i {
  width: 22px;
  height: 22px;
  color: var(--red-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-badge strong {
  display: block;
  color: var(--blue-900);
  font-size: 0.98rem;
  line-height: 1.2;
}

.about-badge span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-badge-primary {
  left: -24px;
  bottom: 34px;
}

.about-badge-secondary {
  right: -24px;
  top: 34px;
}

.about-content {
  max-width: 640px;
}

.about-content h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.about-text {
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.about-point {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.about-point-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(204, 21, 22, 0.12),
    rgba(7, 67, 211, 0.12)
  );
  color: var(--blue-700);
  border: 1px solid rgba(7, 67, 211, 0.1);
}

.about-point-icon i {
  width: 26px;
  height: 26px;
  stroke-width: 2.1;
}

.about-point h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--blue-900);
}

.about-point p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-about {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-about-primary {
  background: var(--red-500);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(204, 21, 22, 0.24);
}

.btn-about-primary:hover {
  background: var(--red-600);
  transform: translateY(-2px);
}

.btn-about-secondary {
  background: transparent;
  color: var(--blue-900);
  border: 2px solid rgba(3, 27, 84, 0.16);
}

.btn-about-secondary:hover {
  background: var(--blue-900);
  color: #ffffff;
  border-color: var(--blue-900);
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .about {
    padding: 90px 0;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-media {
    order: 1;
  }

  .about-content {
    order: 2;
    max-width: 100%;
  }

  .about-image-wrap {
    min-height: 520px;
  }

  .about-badge-primary {
    left: 18px;
    bottom: 18px;
  }

  .about-badge-secondary {
    right: 18px;
    top: 18px;
  }

  .about-content h2 {
    font-size: clamp(2.3rem, 7vw, 3.8rem);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .about {
    padding: 72px 0;
  }

  .about-shell {
    gap: 26px;
  }

  .about-image-wrap {
    min-height: 380px;
    border-radius: 22px;
  }

  .about-badge {
    position: static;
    max-width: 100%;
    margin-top: 14px;
    border-radius: 18px;
  }

  .about-content h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .about-text {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .about-points {
    margin-top: 24px;
    gap: 14px;
  }

  .about-point {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .about-point-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .about-point-icon i {
    width: 22px;
    height: 22px;
  }

  .about-point h3 {
    font-size: 1.18rem;
  }

  .about-point p {
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .about-actions {
    margin-top: 26px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-about {
    width: 100%;
    min-height: 52px;
  }
}

/* ----------------------------------------------------------------------------------------------------- */

/* =========================
   REVIEWS
========================= */

.reviews {
  padding: 100px 0;
}

.reviews-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */

.reviews-content h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--blue-900);
  margin: 0;
}

.reviews-text {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* STATS */

.reviews-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.review-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--red-500);
}

.review-stat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* RIGHT (WIDGET) */

.reviews-widget {
  width: 100%;
}

.widget-placeholder {
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .reviews-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .reviews {
    padding: 70px 0;
  }

  .reviews-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .reviews-text {
    font-size: 0.95rem;
  }

  .reviews-stats {
    gap: 20px;
  }

  .widget-placeholder {
    min-height: 250px;
  }
}

/* ----------------------------------------------------------------------------------------------------- */

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

.contact {
  padding: 110px 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}

.contact-content h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.contact-text {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(7, 67, 211, 0.18);
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(204, 21, 22, 0.12),
    rgba(7, 67, 211, 0.12)
  );
  color: var(--blue-700);
  border: 1px solid rgba(7, 67, 211, 0.1);
}

.contact-info-icon i {
  width: 25px;
  height: 25px;
  stroke-width: 2.1;
}

.contact-info-card span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-info-card strong {
  display: block;
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-cta-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-cta-label {
  margin: 0 0 10px;
  color: var(--red-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--blue-900);
}

.contact-cta-card p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-contact-primary,
.btn-contact-secondary {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-contact-primary {
  background: var(--red-500);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(204, 21, 22, 0.24);
}

.btn-contact-primary:hover {
  background: var(--red-600);
  transform: translateY(-2px);
}

.btn-contact-secondary {
  background: transparent;
  color: var(--blue-900);
  border: 2px solid rgba(3, 27, 84, 0.16);
}

.btn-contact-secondary:hover {
  background: var(--blue-900);
  color: #ffffff;
  border-color: var(--blue-900);
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .contact {
    padding: 90px 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-content h2 {
    font-size: clamp(2.3rem, 7vw, 3.8rem);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .contact {
    padding: 72px 0;
  }

  .contact-content h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .contact-text {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .contact-info-list {
    margin-top: 24px;
    gap: 14px;
  }

  .contact-info-card {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .contact-info-icon i {
    width: 22px;
    height: 22px;
  }

  .contact-cta-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .contact-cta-card h3 {
    font-size: 1.7rem;
  }

  .contact-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-contact-primary,
  .btn-contact-secondary {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------- */
/* Footer----------------------------------------------------------------------------------------------- */

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

.footer {
  margin-top: 80px;
  padding-top: 60px;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.85);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */

.footer-brand img {
  height: 60px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* LINKS */

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact i {
  width: 18px;
  height: 18px;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================
   TABLET
========================= */

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

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .footer {
    padding-top: 50px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand img {
    height: 52px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

.footer-bottom p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 0.92rem;
}

.footer-credit {
  color: var(--red-500);
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-credit:hover {
  color: var(--blue-500);
  text-decoration: underline;
}

/* ----------------------------------------------------------------------------------------------------- */

/* Projects----------------------------------------------------------------------------------------------- */

/* =========================
   PROJECTS
========================= */

.projects {
  padding: 110px 0;
}

.projects-shell {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.projects-header {
  max-width: 760px;
}

.projects-header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.projects-intro {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--text-soft);
}

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

.project-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(7, 67, 211, 0.18);
}

.project-card-link {
  display: block;
  height: 100%;
}

.project-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #e9eef8;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.04);
}

.project-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 27, 84, 0.08) 0%,
    rgba(3, 27, 84, 0.22) 100%
  );
  pointer-events: none;
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.project-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 22px 24px;
}

.project-card-content h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--blue-900);
}

.project-card-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 67, 211, 0.07);
  border: 1px solid rgba(7, 67, 211, 0.1);
  color: var(--blue-800);
  font-size: 0.84rem;
  font-weight: 600;
}

.project-card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-500);
  font-weight: 700;
}

.project-card-action i {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.projects-footer {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.btn-projects-more {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-900);
  color: #ffffff;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 34px rgba(3, 27, 84, 0.18);
}

.btn-projects-more:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .projects {
    padding: 90px 0;
  }

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

  .projects-header h2 {
    font-size: clamp(2.3rem, 7vw, 3.8rem);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .projects {
    padding: 72px 0;
  }

  .projects-shell {
    gap: 28px;
  }

  .projects-header h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.96;
  }

  .projects-intro {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-image-wrap {
    height: 220px;
  }

  .project-card {
    border-radius: 22px;
  }

  .project-card-content {
    padding: 18px 18px 20px;
    gap: 14px;
  }

  .project-card-content h3 {
    font-size: 1.35rem;
  }

  .project-card-content p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .project-tags {
    gap: 8px;
  }

  .project-tags span {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .btn-projects-more {
    width: 100%;
  }
}

/* =========================
   FOOTER SOCIAL
========================= */

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-social h4 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: all 0.25s ease;
}

.footer-social-links a i {
  width: 20px;
  height: 20px;
}

/* HOVER BONITO */
.footer-social-links a:hover {
  transform: translateY(-3px);
  background: var(--red-500);
  border-color: var(--red-500);
  box-shadow: 0 10px 20px rgba(204, 21, 22, 0.3);
}