:root {
  --bg: #eef3f9;
  --surface: #ffffff;
  --surface-strong: #10141d;
  --text: #11151d;
  --text-muted: #596273;
  --primary: #d5101d;
  --primary-dark: #ab0b16;
  --secondary: #121b2d;
  --line: #d7dde7;
  --ok: #16b86a;
  --container: min(1120px, 92vw);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 22px 45px rgba(17, 21, 29, 0.12);
  --shadow-card: 0 14px 35px rgba(16, 20, 29, 0.08);
  --noise: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.12) 0.2px, transparent 1px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0.8rem;
}

section[id] {
  scroll-margin-top: 1rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 8% -2%, #ffffff, transparent 40%),
    radial-gradient(circle at 96% 0%, rgba(213, 16, 29, 0.13), transparent 38%),
    linear-gradient(180deg, #edf2f8, #f7f9fc 42%, #eef3f9 100%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(213, 16, 29, 0.85);
  outline-offset: 2px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.7rem 0.95rem;
  border-radius: 0.6rem;
}

.skip-link:focus {
  top: 1rem;
}

.top-strip {
  background: linear-gradient(92deg, #0e1422, #1b2437);
  color: #f4f7ff;
  font-size: 0.85rem;
}

.top-strip-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 2.65rem;
}

.top-strip a {
  font-weight: 700;
  color: #bcf5d8;
}

.top-strip-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.top-strip-links a:last-child {
  color: #f8ced2;
}

.site-header {
  position: relative;
  z-index: 15;
  padding: 0.85rem 0 0.55rem;
}

.header-content {
  position: relative;
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid #d7dfea;
  border-radius: 1rem;
  padding: 0.45rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(248, 251, 255, 0.96));
  box-shadow: 0 10px 24px rgba(24, 33, 49, 0.09);
}

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

.brand img {
  width: clamp(178px, 20vw, 255px);
  max-height: 72px;
  object-fit: contain;
}

.menu-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a2332;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-quote {
  border: 1px solid rgba(213, 16, 29, 0.26);
  background: linear-gradient(95deg, #d5101d, #f03b46);
  color: #ffffff;
  border-radius: 0.72rem;
  padding: 0.65rem 0.88rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(213, 16, 29, 0.26);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-quote:hover,
.nav-quote:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(213, 16, 29, 0.33);
}

.nav-insta {
  border: 1px solid #d8deea;
  border-radius: 0.72rem;
  padding: 0.6rem 0.82rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #172033;
  background: #ffffff;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.nav-insta:hover,
.nav-insta:focus-visible {
  transform: translateY(-2px);
  border-color: #bfc8d9;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #eef2f8;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.7rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 0.33rem;
}

.menu-toggle span {
  width: 1.3rem;
  height: 2px;
  background: #10141d;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(114deg, rgba(10, 12, 20, 0.92), rgba(10, 12, 20, 0.43)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center 18%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -36%;
  height: 340px;
  background: linear-gradient(180deg, rgba(213, 16, 29, 0), rgba(213, 16, 29, 0.22));
  transform: rotate(-4deg);
}

.hero-grid {
  min-height: min(860px, 88vh);
  padding: clamp(4rem, 6.8vw, 6rem) 0 clamp(3.4rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 0.65rem;
  color: #ff9ca3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-badge {
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  color: #f0f5ff;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #5be39f, #1acb79);
  box-shadow: 0 0 0 4px rgba(36, 206, 125, 0.18);
}

.hero h1,
.section-head h1,
.section-head h2,
.about h1,
.about h2,
.cta h2 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  max-width: 15.4ch;
}

.hero-copy > p:not(.hero-badge) {
  max-width: 52ch;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tags {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.65rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.82rem 1.2rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(95deg, var(--primary), #f33845);
  color: #fff;
  box-shadow: 0 14px 30px rgba(213, 16, 29, 0.36);
}

.btn-primary:hover {
  background: linear-gradient(95deg, var(--primary-dark), #df1928);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark-outline {
  border-color: #cdd7e6;
  color: #1b273d;
  background: #ffffff;
}

.btn-dark-outline:hover {
  background: #f3f6fb;
}

.hero-panel {
  background: rgba(8, 12, 19, 0.71);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(7px);
}

.hero-panel h2 {
  margin: 0 0 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-panel li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ff9ca3;
}

.hero-metrics {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-metrics article::after {
  content: "";
  position: absolute;
  inset: auto -20% -40%;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
  transform: rotate(-4deg);
}

.hero-metrics strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.trust-strip {
  margin-top: -1.5rem;
  padding: 0 0 clamp(2.2rem, 5vw, 3.2rem);
  position: relative;
  z-index: 2;
}

.trust-strip-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.trust-strip article {
  border: 1px solid #dce3ee;
  background: linear-gradient(145deg, #ffffff, #f7faff);
  background-image: var(--noise), linear-gradient(145deg, #ffffff, #f7faff);
  background-size: 8px 8px, auto;
  border-radius: 0.95rem;
  padding: 1rem 1.05rem;
  box-shadow: 0 11px 28px rgba(18, 27, 45, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trust-strip article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(18, 27, 45, 0.13);
}

.trust-strip strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  color: #171f30;
}

.trust-strip span {
  display: block;
  margin-top: 0.38rem;
  color: #606a7a;
  font-size: 0.92rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.section-head h2,
.section-head h1,
.about h1,
.about h2,
.cta h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), #eef2f7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.services-media {
  padding-top: 0.8rem;
  background:
    radial-gradient(circle at 8% 20%, rgba(23, 35, 57, 0.06), transparent 35%),
    linear-gradient(180deg, #f6f9ff, #f0f5fd);
}

.services-media .section-head {
  margin-bottom: 1.25rem;
}

.carousel-shell {
  position: relative;
}

.service-carousel {
  border-color: rgba(15, 23, 38, 0.2);
  background: #0d121b;
}

.service-carousel .carousel-slide img {
  height: clamp(300px, 50vw, 500px);
}

.service-carousel .slide-caption {
  max-width: min(92%, 620px);
  background: linear-gradient(120deg, rgba(9, 14, 23, 0.9), rgba(14, 22, 36, 0.62));
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #c5cedd;
  box-shadow: 0 20px 36px rgba(15, 23, 37, 0.14);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(100deg, #191f2c, #d5101d);
}

.service-icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(125deg, #151b28, #30384b);
}

.service-card h3 {
  margin: 0.9rem 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.52rem;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.about-copy p {
  color: var(--text-muted);
}

.about-copy ul {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.about-copy li {
  padding: 0.82rem 0.9rem;
  border-left: 4px solid var(--primary);
  background: #ffffff;
  border-radius: 0.6rem;
  box-shadow: var(--shadow-card);
}

.about-brand {
  min-height: clamp(230px, 34vw, 360px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 18%, rgba(213, 16, 29, 0.18), transparent 50%),
    linear-gradient(145deg, #f8fafc, #ebf0f6);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.about-brand img {
  width: min(620px, 92%);
  max-height: 170px;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.projects {
  background:
    linear-gradient(180deg, #f6f9fd 0%, #ffffff 38%, #f5f7fb 100%);
}

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 21, 29, 0.15);
  overflow: hidden;
  background: #0e1219;
  box-shadow: var(--shadow-soft);
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: clamp(300px, 55vw, 560px);
  object-fit: cover;
  filter: saturate(1.06);
}

.slide-caption {
  position: absolute;
  inset: auto 1rem 1rem;
  color: #fff;
  max-width: min(90%, 560px);
  background: linear-gradient(120deg, rgba(11, 15, 24, 0.9), rgba(11, 15, 24, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}

.slide-caption h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
}

.slide-caption p {
  margin: 0.42rem 0 0;
  color: rgba(245, 250, 255, 0.9);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(5, 8, 15, 0.56);
  backdrop-filter: blur(3px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: rgba(213, 16, 29, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
  left: 0.9rem;
}

.carousel-control.next {
  right: 0.9rem;
}

.carousel-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
}

.carousel-dots button {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #b6becd;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dots button.active {
  transform: scale(1.28);
  background: var(--primary);
}

.cases {
  background:
    radial-gradient(circle at 90% 10%, rgba(213, 16, 29, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfcff, #f1f6fd);
}

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

.case-card {
  background: #fff;
  border: 1px solid #d9e1ed;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(16, 24, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-card:hover {
  transform: translateY(-7px);
  border-color: #c4cfdf;
  box-shadow: 0 24px 40px rgba(16, 24, 38, 0.15);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-content {
  padding: 1rem 1rem 1.1rem;
}

.case-tag {
  margin: 0 0 0.45rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ebbec3;
  background: #fff4f5;
  color: #b0131d;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: 1.6rem;
}

.case-card p {
  color: var(--text-muted);
}

.case-card ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.42rem;
}

.case-card li {
  position: relative;
  padding-left: 0.9rem;
  color: #2a3346;
  font-size: 0.93rem;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--primary);
}

.process {
  background: linear-gradient(180deg, #fff, #eef2f7);
}

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

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 28px rgba(14, 20, 33, 0.13);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #161d2b;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin: 0.7rem 0 0.45rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 1.45rem;
  line-height: 1.05;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
}

.testimonials {
  background:
    radial-gradient(circle at 5% 0%, rgba(18, 27, 45, 0.06), transparent 33%),
    linear-gradient(180deg, #f4f8fe, #f0f5fc);
}

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

.testimonial-card {
  border: 1px solid #d7e0ee;
  border-radius: 1rem;
  background: linear-gradient(145deg, #ffffff, #f6f9ff);
  padding: 1.25rem 1.15rem;
  box-shadow: 0 15px 30px rgba(20, 30, 45, 0.08);
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #c8d3e5;
  box-shadow: 0 22px 34px rgba(20, 30, 45, 0.13);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.6rem;
  line-height: 1;
  color: rgba(213, 16, 29, 0.16);
}

.testimonial-card p {
  margin: 0;
  color: #2d3850;
  position: relative;
  z-index: 1;
}

.testimonial-card strong {
  margin-top: 1rem;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.14rem;
  color: #101827;
}

.testimonial-card span {
  color: #637086;
  font-size: 0.9rem;
}

.cta {
  padding-top: 1.8rem;
}

.cta-box {
  background:
    radial-gradient(circle at 90% 10%, rgba(241, 60, 73, 0.22), transparent 34%),
    linear-gradient(130deg, #101722, #1c2433);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.cta-box p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 255px;
}

.location {
  padding-top: 2rem;
  border-top: 1px solid #dbe3ef;
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 28, 50, 0.06), transparent 33%),
    linear-gradient(180deg, #f7faff, #eef4fc);
}

.location .section-head {
  max-width: 760px;
}

.location .section-head p:last-child {
  margin-top: 0.55rem;
  color: #3e4a62;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}

.location-card {
  background: #ffffff;
  border: 1px solid #d7dfea;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
}

.location-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}

.location-card p {
  margin: 0;
  color: #34405a;
}

.location-card ul {
  margin: 1rem 0;
  display: grid;
  gap: 0.45rem;
}

.location-card li {
  color: #273248;
}

.location-card strong {
  color: #111a2b;
}

.map-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #d6deea;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
}

.map-wrap::before {
  content: "Google Maps";
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #d5101d, #f04550);
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  pointer-events: none;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  margin-top: 1.3rem;
  background: linear-gradient(145deg, #0d121b, #111827);
  color: #d4d9e4;
  padding-top: 2.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-brand {
  max-width: 340px;
  display: grid;
  gap: 0.8rem;
}

.footer-brand img {
  width: min(320px, 100%);
  max-height: 108px;
  height: auto;
  object-fit: contain;
  background: linear-gradient(150deg, #ffffff, #f4f7fd);
  border: 1px solid rgba(219, 227, 241, 0.92);
  border-radius: 0.95rem;
  padding: 0.62rem 0.82rem;
  box-shadow: 0 14px 25px rgba(4, 8, 16, 0.26);
}

.footer-brand p {
  color: #e6ebf5;
  font-weight: 700;
}

.site-footer h3 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.copy {
  margin: 1.8rem auto 0;
  width: var(--container);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0 1.2rem;
  font-size: 0.85rem;
  color: #aeb6c7;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  background: linear-gradient(120deg, #18cf75, #109e57);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem 0.7rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 20px 35px rgba(11, 125, 66, 0.38);
  font-weight: 800;
  letter-spacing: 0.01em;
  animation: pulse 1.9s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
}

.whatsapp-float span {
  font-size: 0.84rem;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(11, 125, 66, 0.34);
  }
  50% {
    box-shadow: 0 18px 34px rgba(11, 125, 66, 0.56), 0 0 0 10px rgba(24, 207, 117, 0.18);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.56s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1024px) {
  .services-grid,
  .process-grid,
  .cases-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .about-brand {
    min-height: 250px;
  }

  .about-brand img {
    max-height: 130px;
  }
}

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

  .menu-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(310px, 90vw);
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border: 1px solid #d6deea;
    border-radius: 0.9rem;
    box-shadow: 0 22px 34px rgba(16, 24, 38, 0.16);
    transform: scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform-origin: top right;
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-left: 0;
    display: block;
  }

  .menu-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.3rem;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0.7rem;
    border-radius: 0.55rem;
  }

  .nav-links a:hover {
    background: #f3f6fb;
  }

  .menu-nav .nav-quote {
    margin: 0 0.3rem 0.35rem;
    display: block;
    text-align: center;
  }

  .menu-nav .nav-insta {
    margin: 0 0.3rem 0.45rem;
    display: block;
    text-align: center;
  }

  .top-strip-content {
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    min-height: 3.2rem;
    text-align: center;
  }

  .top-strip-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .header-content {
    min-height: 4.35rem;
    padding-inline: 0.6rem;
  }

  .brand img {
    width: clamp(140px, 47vw, 190px);
    max-height: 54px;
  }

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

  .cta-actions {
    width: 100%;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .carousel-control {
    width: 2.35rem;
    height: 2.35rem;
  }

  .carousel-control.prev {
    left: 0.55rem;
  }

  .carousel-control.next {
    right: 0.55rem;
  }

  .slide-caption {
    inset: auto 0.55rem 0.55rem;
    max-width: calc(100% - 1.1rem);
  }
}

@media (max-width: 420px) {
  .menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand img {
    width: clamp(130px, 46vw, 170px);
    max-height: 50px;
  }
}

@media (max-width: 640px) {
  .top-strip {
    font-size: 0.79rem;
  }

  .top-strip-content {
    padding: 0.45rem 0;
  }

  .section {
    padding: clamp(2.8rem, 9vw, 3.6rem) 0;
  }

  .section-head {
    margin-bottom: 1.45rem;
  }

  .hero-grid {
    min-height: auto;
    padding: 2.9rem 0 3rem;
    gap: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
    max-width: 100%;
  }

  .hero-copy > p:not(.hero-badge) {
    margin-top: 0.9rem;
  }

  .hero-tags span {
    font-size: 0.74rem;
    padding: 0.36rem 0.62rem;
  }

  .hero-actions {
    margin-top: 1.15rem;
    gap: 0.55rem;
  }

  .services-grid,
  .process-grid,
  .cases-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-carousel .carousel-slide img {
    height: clamp(240px, 58vw, 400px);
  }

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

  .cta-actions .btn {
    width: 100%;
  }

  .trust-strip {
    margin-top: -1rem;
  }

  .trust-strip-content {
    grid-template-columns: 1fr;
  }

  .case-card img {
    height: 190px;
  }

  .about-brand {
    min-height: 210px;
    padding: 1rem;
  }

  .about-brand img {
    width: min(460px, 94%);
    max-height: 98px;
  }

  .footer-brand img {
    width: min(250px, 100%);
    max-height: 86px;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    padding: 0.78rem;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .copy {
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.visible {
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }
}
