:root {
  --teal: #2f9cad;
  --teal-dark: #167789;
  --magenta: #d80b63;
  --navy: #0b243d;
  --navy-deep: #06182a;
  --ink: #263238;
  --muted: #6b7680;
  --line: #e7edf0;
  --soft: #f6fafb;
  --cream: #f1f0ec;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 33, 43, 0.12);
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav-check,
.menu-toggle {
  display: none;
}

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

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--magenta);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--magenta);
}

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

.nav-actions .btn {
  min-width: 128px;
  padding-left: 18px;
  padding-right: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 0;
  background: var(--magenta);
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(216, 11, 99, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #bd0754;
  box-shadow: 0 16px 30px rgba(216, 11, 99, 0.28);
}

.btn-teal {
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(47, 156, 173, 0.22);
}

.btn-teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 16px 30px rgba(47, 156, 173, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(47, 156, 173, 0.35);
  box-shadow: none;
}

.hero {
  min-height: 760px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 34%, rgba(47, 156, 173, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(7, 30, 58, 0.96) 0%, rgba(11, 36, 61, 0.86) 46%, rgba(11, 36, 61, 0.48) 100%),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=85") center / cover;
  display: grid;
  align-items: center;
  border-bottom: 6px solid var(--teal);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 58px;
  align-items: center;
  padding: 82px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #95ecf4;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #95ecf4;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-item {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 5px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  font-weight: 750;
}

.lead-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.lead-card h2 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lead-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 13px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: 650 14px var(--font);
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 156, 173, 0.12);
}

.form-note {
  font-size: 12px !important;
  color: var(--muted) !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

.section {
  padding: 88px 0;
}

.soft {
  background: var(--soft);
}

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

.kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dark .kicker {
  color: #95ecf4;
}

.section-title {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.16;
  margin-bottom: 18px;
}

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

.section-copy {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.center {
  text-align: center;
}

.center .section-copy {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #3e4a52;
  font-weight: 750;
}

.dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "\2713";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 156, 173, 0.13);
  color: var(--teal);
  font-weight: 900;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
  align-items: stretch;
}

.card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(16, 33, 43, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-image {
  width: 100%;
  height: 152px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(16, 33, 43, 0.10);
}

.card:hover,
.project-card:hover,
.package-card:hover,
.profile-block:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 156, 173, 0.35);
  box-shadow: 0 22px 60px rgba(16, 33, 43, 0.13);
}

.dark .card {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(47, 156, 173, 0.13);
  font-size: 24px;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.dark .card h3 {
  color: var(--white);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.image-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.caption-box {
  margin: -64px 28px 28px;
  position: relative;
  background: var(--white);
  border-left: 5px solid var(--magenta);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.caption-box h3 {
  color: var(--ink);
  font-size: 21px;
  margin-bottom: 6px;
}

.caption-box p {
  color: var(--muted);
  margin: 0;
  font-weight: 650;
}

.process-grid,
.package-grid,
.project-grid,
.values-grid,
.profile-grid,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.process-grid,
.package-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card div {
  flex: 1;
  display: grid;
  align-content: start;
  padding: 20px;
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.project-card p {
  color: var(--muted);
  margin: 0;
}

.package-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 14px 36px rgba(16, 33, 43, 0.07);
}

.package-card.featured {
  border: 2px solid var(--teal);
  transform: translateY(-8px);
}

.package-card h3 {
  color: var(--ink);
  font-size: 23px;
  margin-bottom: 8px;
}

.price {
  color: var(--magenta);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 12px;
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.mini-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
}

.mini-list li {
  color: var(--muted);
  font-weight: 700;
}

.mini-list li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 900;
  margin-right: 8px;
}

.page-hero {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 30, 58, 0.96), rgba(11, 36, 61, 0.76)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=85") center / cover;
  border-bottom: 6px solid var(--teal);
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.profile-hero {
  background:
    linear-gradient(90deg, rgba(7, 30, 58, 0.96), rgba(11, 36, 61, 0.76)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.profile-sheet {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.profile-head {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.profile-head img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 12px;
}

.profile-body {
  padding: 34px;
}

.profile-block {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.profile-block h3 {
  color: var(--teal);
  font-size: 21px;
  margin-bottom: 10px;
}

.profile-block p {
  color: var(--muted);
  margin: 0;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.profile-metric {
  padding: 22px;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: var(--shadow);
}

.profile-metric:nth-child(2),
.profile-metric:nth-child(4) {
  background: linear-gradient(135deg, var(--magenta), #9f073e);
}

.profile-metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 7px;
}

.profile-metric span {
  display: block;
  font-size: 13px;
  font-weight: 850;
  opacity: 0.88;
}

.profile-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.profile-project {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(16, 33, 43, 0.08);
}

.profile-project img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.profile-project h4 {
  padding: 14px 14px 2px;
  color: var(--ink);
  font-size: 16px;
}

.profile-project p {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  background: var(--teal);
  padding: 56px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
}

.cta-panel h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  margin-bottom: 12px;
}

.cta-panel p {
  color: var(--muted);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 17px;
  margin-top: 26px;
}

.contact-line {
  display: flex;
  gap: 13px;
  color: var(--muted);
  font-weight: 750;
}

.contact-line span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(47, 156, 173, 0.13);
  color: var(--teal);
}

.contact-line b {
  display: block;
  color: var(--ink);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: auto;
  min-width: 118px;
  height: 58px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 42px;
}

.footer-logo {
  width: 110px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 18px;
}

footer h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 11px;
  font-weight: 700;
}

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

.copyright {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 700;
}

.visual-band {
  background: linear-gradient(180deg, var(--white), var(--soft));
  overflow: hidden;
}

.masonry-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 190px;
  gap: 18px;
  margin-top: 38px;
}

.showcase-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.showcase-tile.large {
  grid-row: span 2;
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.45s ease, opacity 0.22s ease;
}

.showcase-tile:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.showcase-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(16, 33, 43, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stat-pill {
  padding: 20px;
  min-height: 96px;
  border-radius: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16, 33, 43, 0.08);
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
}

.stat-pill strong {
  display: block;
  width: 100%;
  color: var(--magenta);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-pill span {
  display: block;
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.video-section {
  background:
    linear-gradient(90deg, rgba(7, 30, 58, 0.96), rgba(11, 36, 61, 0.86)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=85") center / cover;
  color: var(--white);
}

.video-section .section-title,
.video-section .section-copy {
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 38px;
}

.video-card {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  padding: 22px;
}

.video-note h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 8px;
}

.video-note p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.video-list {
  display: grid;
  gap: 16px;
}

.video-mini {
  padding: 22px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.video-mini strong {
  display: block;
  color: #95ecf4;
  margin-bottom: 6px;
}

.video-mini span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-links a,
.social-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.social-links a:hover,
.social-float a:hover {
  background: var(--teal);
}

.social-float a:nth-child(1),
.social-links a:nth-child(1) {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-float a:nth-child(2),
.social-links a:nth-child(2) {
  background: #111827;
}

.social-float a:nth-child(3),
.social-links a:nth-child(3) {
  background: #ff0033;
}

.social-float a:nth-child(4),
.social-links a:nth-child(4) {
  background: #1877f2;
}

.social-float {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 79;
  display: grid;
  gap: 8px;
}

.reveal {
  animation: fadeUp 0.72s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .topbar,
  .header,
  .cta-band,
  footer,
  .whatsapp-float,
  .social-float,
  .no-print {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .section {
    padding: 0;
  }

  .profile-sheet {
    box-shadow: none;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .profile-head {
    grid-template-columns: 88px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .profile-head img {
    width: 82px;
    height: 82px;
  }

  .profile-body {
    padding: 18px;
  }

  .profile-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 14px 0;
  }

  .profile-metric {
    padding: 12px;
  }

  .profile-metric strong {
    font-size: 22px;
  }

  .profile-metric span {
    font-size: 10px;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile-block {
    padding: 12px;
  }

  .profile-block h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .profile-block p,
  .mini-list li {
    font-size: 11px;
    line-height: 1.45;
  }

  .profile-projects {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .profile-project img {
    height: 70px;
  }

  .profile-project h4 {
    padding: 8px 8px 0;
    font-size: 12px;
  }

  .profile-project p {
    padding: 0 8px 8px;
    font-size: 10px;
    line-height: 1.35;
  }

  .section-title {
    font-size: 22px !important;
  }

  .section-copy {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 6px;
    background: var(--teal);
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(47, 156, 173, 0.24);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(330px, 86vw);
    height: 100vh;
    padding: 96px 24px 24px;
    display: grid;
    align-content: start;
    gap: 0;
    background: var(--navy);
    color: var(--white);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.28);
    transform: translateX(105%);
    transition: transform 0.24s ease;
    z-index: 70;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .nav-check:checked ~ .nav-links {
    transform: translateX(0);
  }

  .nav-check:checked ~ .menu-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 80;
    background: var(--magenta);
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .package-grid,
  .project-grid,
  .values-grid,
  .masonry-showcase,
  .video-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-showcase {
    grid-auto-rows: 220px;
  }

  .showcase-tile.large {
    grid-row: span 1;
  }

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

  .profile-metrics,
  .profile-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    gap: 4px;
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
  }

  .nav {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    min-width: auto;
    flex: 1;
    gap: 9px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .brand-text span {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 54px 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero p,
  .section-copy {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .proof-row,
  .cards-grid,
  .process-grid,
  .package-grid,
  .project-grid,
  .values-grid,
  .profile-grid,
  .faq-grid,
  .masonry-showcase,
  .video-grid,
  .stats-ribbon,
  .profile-metrics,
  .profile-projects,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .lead-card,
  .contact-form,
  .card,
  .package-card,
  .profile-body,
  .cta-panel {
    padding: 22px;
  }

  .profile-head {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .profile-head img {
    width: 118px;
    height: 118px;
  }

  .package-card.featured {
    transform: none;
  }

  .masonry-showcase {
    grid-auto-rows: 230px;
  }

  .social-float {
    left: 10px;
    bottom: 76px;
  }

  .social-float a {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 9999;
    min-width: 112px;
    height: 52px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Final mobile/header safety overrides */
@media screen {
  .whatsapp-float,
  .whatsapp-float.no-print {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 720px) {
  body {
    padding-bottom: 140px;
  }

  .whatsapp-float,
  .whatsapp-float.no-print {
    position: fixed !important;
    right: 12px !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    z-index: 99999 !important;
    min-width: 112px;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    pointer-events: auto !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
}

.nav input[type="checkbox"].nav-check {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
}

@media (min-width: 1061px) {
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 1060px) {
  .menu-toggle {
    flex: 0 0 44px;
  }
}

/* Mobile menu stability: use a real dropdown instead of an off-canvas drawer. */
@media screen and (max-width: 1060px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header {
    z-index: 1000;
    overflow: visible;
  }

  .nav {
    position: relative;
  }

  .menu-toggle,
  .nav-check:checked ~ .menu-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 1003;
  }

  .nav-links {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(300px, calc(100vw - 32px)) !important;
    height: auto !important;
    max-height: 0;
    padding: 0 18px !important;
    display: grid !important;
    align-content: start;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(6, 24, 42, 0.24);
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1002;
    transition: max-height 0.24s ease, padding 0.2s ease, opacity 0.18s ease, visibility 0s linear 0.24s;
  }

  .nav-check:checked ~ .nav-links {
    max-height: 440px;
    padding: 10px 18px !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.24s ease, padding 0.2s ease, opacity 0.18s ease;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }
}
