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

:root {
  --blue: #0D3CA6;
  --blue-dark: #082C7D;
  --blue-soft: #EAF1FF;
  --orange: #FF6A00;
  --orange-soft: #FFF2E7;
  --text: #10213A;
  --muted: #5C6D86;
  --white: #FFFFFF;
  --border: #E4EAF3;
  --shadow: 0 20px 50px rgba(13, 60, 166, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 60, 166, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-weight: 600;
  color: var(--blue-dark);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 65%, var(--orange) 100%);
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.25;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: #ffffff;
  right: -120px;
  top: -80px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: var(--orange);
  left: -100px;
  bottom: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  padding: 88px 0 80px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--orange);
}

.eyebrow {
  color: #FFDABF;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 14px;
  border-radius: 999px;
}

.section-tag.small {
  font-size: 0.72rem;
}

.section-tag.light {
  color: #FFDABF;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
  max-width: 850px;
}

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

.hero-text,
.lead,
p {
  color: var(--muted);
}

.hero-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.06rem;
  max-width: 640px;
}

.lead {
  font-size: 1.06rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

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

.full-width {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(8, 44, 125, 0.18);
}

.stat-card h3 {
  color: #FFDABF;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.section {
  padding: 90px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.two-col,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.values-card,
.market-card,
.contact-form,
.cta-box,
.team-card,
.service-card,
.growth-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values-card {
  background: var(--blue-soft);
  padding: 30px;
  border: 1px solid #DCE8FF;
}

.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.values-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.values-list strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.card-grid,
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service-card {
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--border);
}

.service-card h3 {
  color: var(--blue-dark);
  font-size: 1.24rem;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--orange-soft), var(--blue-soft));
  margin-bottom: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.team-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.team-image-wrap {
  aspect-ratio: 4 / 4.2;
  background: linear-gradient(180deg, var(--blue-soft), var(--orange-soft));
}

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

.team-content {
  padding: 24px;
}

.role {
  color: var(--orange);
  font-weight: 800;
  margin-top: -4px;
}

.split-accent {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 68%, var(--orange) 100%);
  color: var(--white);
}

.reason-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.reason-item {
  padding: 18px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  font-weight: 600;
}

.market-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.market-card h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.market-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.growth-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fff7f1);
  font-weight: 600;
}

.cta-section {
  padding-top: 10px;
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 68%, var(--orange) 100%);
  padding: 34px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-text {
  color: rgba(255,255,255,0.88);
  max-width: 620px;
}

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

.contact-item {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #FCFDFF;
}

.contact-item span {
  display: block;
  color: var(--blue-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--blue);
  font-weight: 700;
  word-break: break-word;
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 700;
  color: var(--blue-dark);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #D6DFEF;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(13, 60, 166, 0.15);
  border-color: var(--blue);
}

.form-note {
  font-size: 0.9rem;
  margin: 14px 0 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .why-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav.open {
    display: flex;
  }

  .brand-text span {
    display: none;
  }

  .card-grid,
  .growth-grid,
  .team-grid,
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid {
    padding: 72px 0 68px;
  }

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .btn,
  .whatsapp-float {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
