:root {
  --bg-page: #dfe8f7;
  --bg-surface: #f9fbff;
  --bg-surface-2: #eef5ff;
  --bg-dark: #072a67;
  --bg-dark-2: #081f4d;
  --text-main: #112347;
  --text-soft: #52617f;
  --text-white: #ffffff;
  --accent: #ff7f32;
  --accent-2: #ffd54a;
  --line: rgba(17, 35, 71, 0.12);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 26px 80px rgba(30, 61, 120, 0.12);
  --shadow-card: 0 18px 44px rgba(18, 43, 92, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --container: 1260px;
  --nav-height: 88px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(180deg, #bed3fb 0%, #dce9fb 24%, #eff5ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section-shell {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.section-shell-dark {
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-main);
  border: 1px solid rgba(17, 35, 71, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
}

.section-title,
.hero-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.section-title span {
  color: var(--accent);
}

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

.section-text,
.section-side-text {
  max-width: 60ch;
  color: var(--text-soft);
}

.section-shell-dark .section-side-text {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ff9f45);
  color: var(--text-white);
  box-shadow: 0 14px 28px rgba(255, 127, 50, 0.28);
}

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

.btn-outline-dark {
  border: 1px solid rgba(17, 35, 71, 0.16);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-main);
}

.btn-pill {
  padding-inline: 1.15rem;
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 3.45rem;
  padding-inline: 1.4rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: linear-gradient(180deg, rgba(7, 31, 77, 0.72), rgba(7, 31, 77, 0));
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(235, 244, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(27, 59, 117, 0.08);
}

.nav-row {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 0.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-white);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links {
  color: var(--text-main);
}

.brand-mark {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-mark span {
  color: var(--accent-2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .brand-tagline {
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.nav-links a:hover,
.mobile-nav a:hover {
  color: var(--accent);
}

.site-header .nav-links a:not(.btn) {
  text-shadow: 0 1px 10px rgba(7, 31, 77, 0.24);
}

.site-header.is-scrolled .nav-links a:not(.btn) {
  text-shadow: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.65rem;
  margin-right: 0.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(7, 31, 77, 0.16);
  color: currentColor;
}

.nav-toggle span {
  width: 1.5rem;
  height: 2.5px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  margin: 0 0.75rem 0.75rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(235, 244, 255, 0.97);
  border: 1px solid rgba(17, 35, 71, 0.08);
  box-shadow: var(--shadow-card);
  color: var(--text-main);
}

.mobile-nav.is-open {
  display: grid;
  gap: 1rem;
}

.mobile-nav a {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  padding: calc(var(--nav-height) + 1.2rem) 0 1.5rem;
}

.hero-frame {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(223, 236, 255, 0.48));
  border-radius: calc(var(--radius-lg) + 6px);
  box-shadow: var(--shadow-soft);
}

.hero-sky {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 700px;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.76), transparent 30%),
    linear-gradient(180deg, #91ddff 0%, #c6f1ff 54%, #f7fcff 100%);
  overflow: hidden;
}

.hero-sky-full {
  min-height: 760px;
}

.hero-sky::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(241, 249, 255, 0.8));
  pointer-events: none;
}

.hero-float,
.why-float {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  will-change: transform;
  --float-offset: 0px;
  transform: translate3d(0, var(--float-offset), 0);
}

.hero-float {
  z-index: 0;
  opacity: 0.95;
  filter: blur(2px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.14) 55%, rgba(255, 255, 255, 0));
}

.hero-float-one {
  top: 8rem;
  left: 4%;
  width: 12rem;
  height: 12rem;
}

.hero-float-two {
  right: 6%;
  top: 14rem;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(255, 213, 74, 0.72), rgba(255, 213, 74, 0.2) 58%, rgba(255, 213, 74, 0));
}

.hero-topline,
.hero-copy,
.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 540px;
  margin-top: 1.3rem;
  text-align: center;
}

.hero-copy-wide {
  max-width: 760px;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.6rem);
  color: #09214d;
}

.hero-subtitle {
  max-width: 34rem;
  margin: 1rem auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-image-wrap {
  margin-top: auto;
  padding-top: 1rem;
  width: 100%;
}

.hero-image-wrap img {
  width: min(100%, 1080px);
  margin-inline: auto;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 54px rgba(18, 43, 92, 0.12);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-mini-stats-overlay {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(420px, calc(100% - 2.8rem));
  z-index: 2;
  margin-top: 0;
}

.hero-mini-stats div {
  padding: 0.9rem 0.8rem;
  border-radius: 20px;
  background: rgba(7, 31, 77, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px rgba(17, 35, 71, 0.16);
  text-align: center;
}

.hero-mini-stats span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-mini-stats small {
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid rgba(17, 35, 71, 0.08);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  animation: ticker 35s linear infinite;
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 2rem;
  border-radius: 999px;
  background: var(--accent);
}

.about-shell,
.founder-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-media {
  display: grid;
  gap: 1rem;
}

.about-image-card,
.founder-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.about-image-card {
  position: relative;
  min-height: 460px;
}

.about-image-card img,
.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge,
.founder-quote {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(7, 31, 77, 0.86);
  color: var(--text-white);
}

.about-image-badge strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
}

.stats-grid,
.service-grid,
.feature-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.service-card,
.feature-card,
.document-item {
  padding: 1.15rem;
  border-radius: 24px;
}

.stat-card {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid rgba(17, 35, 71, 0.08);
  box-shadow: var(--shadow-card);
}

.stat-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
}

.stat-card span {
  color: var(--text-soft);
}

.service-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-shell {
  position: relative;
  overflow: hidden;
}

.why-float {
  z-index: 0;
  opacity: 0.95;
  filter: blur(3px);
  background: radial-gradient(circle, rgba(7, 42, 103, 0.16), rgba(7, 42, 103, 0.06) 58%, rgba(7, 42, 103, 0));
}

.why-float-one {
  width: 15rem;
  height: 15rem;
  right: -3rem;
  top: 2rem;
}

.why-float-two {
  width: 10rem;
  height: 10rem;
  left: -2rem;
  bottom: 4rem;
  background: radial-gradient(circle, rgba(255, 127, 50, 0.38), rgba(255, 127, 50, 0.12) 58%, rgba(255, 127, 50, 0));
}

.feature-block {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.95));
  border: 1px solid rgba(17, 35, 71, 0.08);
  box-shadow: 0 16px 38px rgba(18, 43, 92, 0.1);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(18, 43, 92, 0.16);
  border-color: rgba(255, 127, 50, 0.18);
}

.feature-block-accent {
  background: linear-gradient(160deg, rgba(7, 42, 103, 0.98), rgba(9, 31, 77, 0.96));
}

.feature-block-copy {
  position: relative;
  z-index: 1;
}

.feature-block-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.feature-subtitle {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-block .feature-number {
  color: rgba(17, 35, 71, 0.42);
}

.feature-block h3 {
  color: var(--text-main);
}

.feature-block p {
  color: var(--text-soft);
}

.feature-detail {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 35, 71, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.feature-block-accent .feature-number,
.feature-block-accent .feature-subtitle,
.feature-block-accent h3,
.feature-block-accent p {
  color: #fff;
}

.feature-block-accent .feature-detail {
  color: rgba(255, 255, 255, 0.76);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.team-card {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 1px solid rgba(17, 35, 71, 0.08);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  background: #dce6f7;
}

.team-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.team-role {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
}

.team-card:hover,
.stat-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(18, 43, 92, 0.16);
}

.service-number,
.feature-number {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 127, 50, 0.14);
  color: #ffbb84;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card h3,
.feature-card h3,
.document-panel h3 {
  margin: 0.95rem 0 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.28rem;
}

.service-card p,
.feature-card p,
.section-shell-dark .section-text,
.section-shell-dark .section-side-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.project-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 35, 71, 0.08);
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  appearance: none;
}

.project-card.is-featured {
  outline: 2px solid rgba(255, 127, 50, 0.18);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 1.25rem;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 44, 0.84);
  backdrop-filter: blur(8px);
}

.project-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  max-height: calc(100vh - 3rem);
  padding: 0.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(7, 20, 44, 0.28);
}

.project-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 5rem);
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.project-lightbox-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(7, 20, 44, 0.9);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

body.lightbox-open {
  overflow: hidden;
}

.document-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 1px solid rgba(17, 35, 71, 0.08);
}

.document-list {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 560px);
}

.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 35, 71, 0.08);
}

.document-item p {
  margin: 0;
}

.document-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.founder-image-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 30, 70, 0.18), rgba(10, 30, 70, 0.06));
  border: 1px solid rgba(17, 35, 71, 0.08);
}

.founder-copy {
  padding-inline: 0.5rem;
}

.founder-role {
  margin: 0.6rem 0 1rem;
  color: var(--text-soft);
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.founder-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 4%;
  transform: scale(1.34);
  border-radius: 24px;
  filter: saturate(1.02) contrast(1.02);
}

.cta-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.section-text-cta {
  max-width: 48rem;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0;
}

.contact-meta {
  display: grid;
  gap: 0.45rem;
  color: var(--text-soft);
}

.contact-meta p {
  margin: 0;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: var(--text-main);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0.7rem 1rem 0.7rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1faf5a, #22c767);
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 122, 62, 0.28);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.whatsapp-float-text {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-white);
  box-shadow: var(--shadow-soft);
}

.footer-brand,
.footer-title {
  margin: 0 0 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-text,
.footer-links a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.projects-page {
  padding-top: calc(var(--nav-height) + 1rem);
}

.projects-hero {
  padding: 1rem 0 0;
}

.projects-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.projects-hero-meta {
  display: grid;
  gap: 1rem;
}

.project-stat-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-white);
  box-shadow: var(--shadow-card);
}

.project-stat-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
}

.project-stat-card span {
  color: rgba(255, 255, 255, 0.72);
}

.projects-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-page-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.project-filter {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 71, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.project-filter.is-active {
  background: linear-gradient(135deg, var(--accent), #ff9f45);
  color: var(--text-white);
  border-color: transparent;
}

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

.project-card-page {
  aspect-ratio: 5 / 4;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.975);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(12px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-copy,
.hero-image-wrap,
.hero-mini-stats-overlay {
  animation: heroLift 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-shell,
.cta-card,
.project-card,
.team-card,
.stat-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.section-shell:hover,
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(30, 61, 120, 0.16);
}

.hero-image-wrap {
  animation-delay: 120ms;
}

.hero-mini-stats-overlay {
  animation-delay: 220ms;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.975);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 1100px) {
  .hero-copy {
    max-width: 620px;
  }

  .hero-image-wrap img {
    width: min(100%, 860px);
  }

  .service-grid,
  .feature-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-block {
    padding: 1.2rem;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.is-featured {
    grid-column: span 1;
  }

  .section-heading,
  .document-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .document-list {
    width: 100%;
  }

  .projects-hero-shell,
  .projects-toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 80px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    color: var(--text-white);
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--text-main);
    background: rgba(7, 31, 77, 0.06);
    border-color: rgba(17, 35, 71, 0.08);
    box-shadow: 0 10px 24px rgba(17, 35, 71, 0.08);
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding: clamp(3.4rem, 8vw, 5rem) 0;
  }

  .section-shell,
  .section-shell-dark,
  .cta-card {
    padding: 1.35rem;
  }

  .section-title {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .section-text,
  .section-side-text,
  .hero-subtitle,
  .hero-side-card span,
  .document-item span,
  .contact-meta,
  .footer-bottom {
    font-size: 1rem;
  }

  .btn {
    min-height: 3.3rem;
    padding: 0.9rem 1.25rem;
    font-size: 0.98rem;
  }

  .hero-title {
    font-size: clamp(3.2rem, 10vw, 4.8rem);
  }

  .hero-sky {
    min-height: 540px;
    padding: 1.35rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-image-wrap {
    padding-top: 1.2rem;
  }

  .hero-image-wrap img {
    width: min(100%, 760px);
  }

  .about-shell,
  .founder-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.2rem;
  }

  .hero-actions,
  .cta-actions {
    gap: 0.75rem;
  }

  .stats-grid,
  .service-grid,
  .feature-grid,
  .team-grid,
  .project-grid,
  .footer-grid,
  .projects-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .mobile-nav a {
    font-size: 0.95rem;
    padding-block: 0.2rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-float,
  .why-float {
    opacity: 0.8;
  }

  .project-card.is-featured {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 76px;
  }

  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero-frame {
    padding: 0.75rem;
  }

  .whatsapp-float {
    padding: 0.75rem;
  }

  .whatsapp-float-text {
    display: none;
  }

  .hero-sky {
    border-radius: 24px;
  }

  .hero-sky {
    min-height: auto;
    padding: 1.1rem;
  }

  .hero-title {
    font-size: clamp(3.1rem, 13vw, 4.5rem);
    line-height: 0.9;
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

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

  .hero-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.2rem;
  }

  .hero-mini-stats-overlay {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-mini-stats div {
    padding: 0.85rem 0.45rem;
  }

  .hero-mini-stats span {
    font-size: 1.35rem;
  }

  .about-shell,
  .founder-shell {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .stats-grid,
  .project-grid,
  .footer-grid,
  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-block {
    padding: 1.15rem;
  }

  .project-card.is-featured {
    grid-column: span 1;
  }

  .about-image-card,
  .founder-image-wrap {
    min-height: 400px;
  }

  .founder-image-wrap img {
    object-position: center 5%;
    transform: scale(1.24);
  }

  .document-item {
    padding: 1rem;
  }
}

@media (max-width: 430px) {
  .section-title {
    font-size: clamp(2.6rem, 11vw, 3.5rem);
  }

  .hero-title {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .service-grid,
  .feature-grid,
  .team-grid,
  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .project-filters {
    width: 100%;
  }

  .project-filter {
    flex: 1 1 auto;
    text-align: center;
  }

  .about-shell,
  .founder-shell {
    grid-template-columns: 1fr;
  }

  .hero-mini-stats {
    gap: 0.6rem;
  }

  .btn {
    min-height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-copy,
  .hero-image-wrap,
  .hero-mini-stats-overlay {
    animation: none !important;
  }
}
