:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --surface-soft: #edf7f8;
  --ink: #0c3343;
  --ink-soft: #214f60;
  --muted: #5f747b;
  --line: #d8e6e9;
  --brand: #077896;
  --brand-dark: #055f77;
  --brand-light: #16a8ba;
  --accent: #c76d3f;
  --cream: #fff7ed;
  --shadow: 0 24px 70px rgba(12, 51, 67, 0.14);
  --shadow-soft: 0 16px 42px rgba(12, 51, 67, 0.08);
  --radius: 28px;
  --container: min(1160px, calc(100% - 42px));
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 112px;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 20%, rgba(22, 168, 186, 0.14), transparent 28rem),
    radial-gradient(circle at 96% 8%, rgba(199, 109, 63, 0.1), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(7, 120, 150, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 120, 150, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

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

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

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

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

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

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(12, 51, 67, 0.12);
  backdrop-filter: blur(18px);
}

.logo-link,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-link img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-logo img {
  width: 74px;
  height: 74px;
}

.logo-wordmark {
  display: grid;
  width: 78px;
  line-height: 0.82;
}

.logo-wordmark strong {
  display: block;
  width: 100%;
  color: var(--ink);
  font-size: 1.72rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.logo-wordmark span {
  display: block;
  width: 100%;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

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

.phone-link {
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 120, 150, 0.28);
}

.btn-secondary {
  border-color: rgba(7, 120, 150, 0.18);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(12, 51, 67, 0.07);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(7, 120, 150, 0.18);
  border-radius: 50%;
  background: var(--surface-soft);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 58px;
}

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

.hero-copy::after {
  position: absolute;
  right: -80px;
  bottom: -58px;
  z-index: -1;
  width: min(700px, 112%);
  height: 230px;
  content: "";
  opacity: 0.24;
  pointer-events: none;
  filter: saturate(1.1);
  background: url("assets/circuit-horizontal.svg") right center / 100% auto no-repeat;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.22;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.65vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
  margin-top: 22px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 120, 150, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(12, 51, 67, 0.04);
}

.trust-strip i {
  color: var(--brand-dark);
  font-size: 0.82rem;
}


.hero-feature {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-feature::before {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 150px;
  height: 150px;
  content: "";
  pointer-events: none;
  opacity: 0.36;
  background: radial-gradient(circle, rgba(16, 167, 184, 0.72) 0 3px, transparent 4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 34%, transparent 72%);
}

.hero-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 47, 63, 0.84));
}

.hero-feature img,
.hero-feature video {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.04);
}

.hero-support-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 48px);
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 42, 56, 0.72);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-support-badge i {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(153, 241, 248, 0.16);
  color: #9ff3fa;
  font-size: 0.82rem;
}

.hero-support-badge strong {
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-review {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.review-stars {
  display: block;
  margin-bottom: 10px;
  color: #ffd082;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.hero-review blockquote {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 850;
  line-height: 1.25;
}

.hero-review > span {
  display: block;
  margin-bottom: 10px;
  color: #99f1f8;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-review strong {
  display: block;
  color: #d8ecef;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}

.hero-review small {
  display: block;
  margin-top: 10px;
  color: #d8ecef;
  font-size: 0.92rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading-action {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  max-width: none;
}

.section-heading-action > div {
  max-width: 760px;
}

.section-heading-action .btn {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.section-heading p:not(.eyebrow),
.service-card p,
.recommendation-box p,
.about-card p,
.site-footer p,
.contact-card a:not(:first-child),
.contact-card span {
  color: var(--muted);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid::before {
  position: absolute;
  top: -100px;
  right: -96px;
  z-index: -1;
  width: 330px;
  height: 520px;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  filter: saturate(1.08);
  background: url("assets/circuit-vertical.svg") center / contain no-repeat;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(12, 51, 67, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: linear-gradient(180deg, #ffffff, #eef8f9);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  background: linear-gradient(180deg, #ffffff, var(--cream));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 120, 150, 0.28);
  box-shadow: var(--shadow-soft);
}

.service-more {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 950;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(7, 120, 150, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(12, 51, 67, 0.04);
}

.equipment,
.common-solutions {
  padding-top: 0;
}

.split-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(7, 120, 150, 0.14);
  border-radius: var(--radius);
  background: #f7fbfb;
  box-shadow: var(--shadow-soft);
}

.split-box::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background: url("assets/tim-tehnicka-podrska.webp") right center / cover no-repeat;
}

.split-box::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 16%, rgba(22, 168, 186, 0.18), transparent 18rem),
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 44%, rgba(255, 255, 255, 0.7) 66%, rgba(255, 255, 255, 0.32) 100%);
}

.split-box > * {
  position: relative;
  z-index: 2;
}

.split-box p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-tags-compact {
  justify-content: flex-start;
  margin-top: 0;
}

.equipment-brand-groups {
  display: grid;
  gap: 14px;
}

.brand-group {
  padding: 16px;
  border: 1px solid rgba(7, 120, 150, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(12, 51, 67, 0.06);
}

.brand-group strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 950;
}

.brand-group .service-tags {
  gap: 8px;
}

.brand-group .service-tags span {
  min-height: 32px;
  padding: 7px 11px;
  font-size: 0.82rem;
}

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

.solution-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(12, 51, 67, 0.04);
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--surface-soft), #ffffff);
  color: var(--brand-dark);
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(7, 120, 150, 0.08);
}

.dark-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 168, 186, 0.2), transparent 26rem),
    #0b3444;
  color: #ffffff;
}

.dark-band .eyebrow {
  color: #99f1f8;
}

.dark-band .section-heading p {
  color: #c8dce0;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #082a38;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.work-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card img,
.work-card video {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.work-card-large img,
.work-card-large video {
  height: 100%;
}

.work-video-interfon {
  object-position: center center;
}

.work-video-rampe {
  object-position: center center;
}

.landing-hero {
  padding-top: 86px;
}

.landing-hero-grid,
.landing-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.landing-copy {
  max-width: 760px;
}

.landing-media,
.landing-panel,
.landing-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.landing-media {
  overflow: hidden;
}

.landing-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.landing-section {
  padding-top: 72px;
}

.landing-muted {
  background:
    radial-gradient(circle at 8% 12%, rgba(22, 168, 186, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff, #edf7f8);
}

.landing-panel {
  padding: 34px;
}

.landing-panel p:not(.eyebrow) {
  color: var(--muted);
}

.landing-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.landing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 850;
}

.landing-list i {
  color: var(--brand-dark);
}

.landing-photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 16px;
  align-items: stretch;
}

.landing-photo-stack img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.landing-photo-stack img:nth-child(2) {
  margin-top: 46px;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.landing-step {
  padding: 24px;
}

.landing-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-weight: 950;
}

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

.landing-content-grid-reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 47, 63, 0.86));
}

.work-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 900;
}

.work-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #9ff3fa;
  backdrop-filter: blur(10px);
}

.about {
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.about-card,
.why-list,
.cta-box {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.about-card {
  padding: 34px;
}

.why-list {
  padding: 34px;
}

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

.why-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfdfd;
}

.why-list li i {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.why-list span {
  color: var(--muted);
}

.process {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(22, 168, 186, 0.14), transparent 26rem),
    radial-gradient(circle at 96% 74%, rgba(7, 120, 150, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(237, 247, 248, 0.74));
}

.process-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 46px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(7, 120, 150, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.process-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(rgba(7, 120, 150, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 120, 150, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, transparent 100%);
}

.process-copy,
.process-timeline {
  position: relative;
  z-index: 1;
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.04rem;
}

.process-timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(7, 120, 150, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(12, 51, 67, 0.055);
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(7, 120, 150, 0.22);
}

.timeline-step h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

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

.faq {
  padding: 82px 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(22, 168, 186, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 70%, rgba(199, 109, 63, 0.12), transparent 20rem),
    #0b3444;
  color: #ffffff;
}

.faq .eyebrow {
  color: #99f1f8;
}

.faq .section-heading p {
  color: #c8dce0;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #99f1f8;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  background: rgba(153, 241, 248, 0.16);
  transform: rotate(180deg);
}

.faq-item p {
  max-width: 880px;
  margin: 0;
  padding: 0 24px 22px;
  color: #d8ecef;
}

.recommendations {
  padding-top: 72px;
}

.recommendation-box {
  padding: 38px;
  border: 1px solid rgba(7, 120, 150, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 20%, rgba(199, 109, 63, 0.12), transparent 20rem),
    linear-gradient(135deg, #ffffff, #f6fbfb);
  box-shadow: var(--shadow-soft);
}

.recommendation-box p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.recommendation-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 120, 150, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(12, 51, 67, 0.08);
}

.testimonial-carousel {
  position: relative;
  min-height: 230px;
  margin-top: 28px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(7, 120, 150, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-card span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-card p {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.28;
}

.cta {
  padding-top: 0;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: start;
  padding: 40px;
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 168, 186, 0.2), transparent 22rem),
    linear-gradient(135deg, #0b3444, #062737);
  color: #ffffff;
}

.cta-box .eyebrow {
  color: #99f1f8;
}

.cta-box p {
  color: #c8dce0;
}

.contact-card {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card a:first-child {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 950;
}

.contact-card a:first-child i {
  font-size: 1rem;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-card a i {
  width: 20px;
  color: #99f1f8;
  text-align: center;
}

.contact-card a:not(:first-child),
.contact-card span {
  color: #d8ecef;
}

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

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #d8ecef;
  font-size: 0.92rem;
  font-weight: 850;
}

.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  outline: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #99f1f8;
  box-shadow: 0 0 0 4px rgba(153, 241, 248, 0.14);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(153, 241, 248, 0.14);
  color: #d8ffff;
}

.form-status.is-error {
  background: rgba(255, 208, 130, 0.14);
  color: #ffe6b8;
}

.map-wrap {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.about-map {
  margin-top: 24px;
  border-radius: 24px;
}

.about-map iframe {
  height: 270px;
}


.site-footer {
  padding: 48px 0 26px;
  background: #0b3444;
  color: #ffffff;
}

.footer-logo .logo-wordmark strong,
.footer-logo .logo-wordmark span {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
  align-items: start;
}

.site-footer p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #c8dce0;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer nav a,
.site-footer address,
.site-footer address a,
.footer-bottom {
  color: #c8dce0;
}

.site-footer nav a:hover,
.site-footer address a:hover {
  color: #ffffff;
}

.footer-social a {
  width: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.social-links a {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  font-size: 1.05rem;
}

.social-links a i,
.footer-social a i {
  width: auto;
  color: #ffffff;
  line-height: 1;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 850;
}

.mobile-sticky-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    border-radius: 30px;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .site-nav {
    padding-top: 10px;
  }

  .site-header.is-open .phone-link {
    padding: 10px 14px;
  }

  .hero-grid,
  .about-grid,
  .split-box,
  .landing-hero-grid,
  .landing-content-grid,
  .landing-content-grid-reverse,
  .process-panel,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-feature,
  .hero-feature img,
  .hero-feature video {
    min-height: 440px;
    height: 440px;
  }

  .service-grid,
  .landing-steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-media img {
    height: 440px;
  }

  .process-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  body {
    padding-bottom: 78px;
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1220px);
    margin-top: 10px;
  }

  .logo-link img {
    width: 48px;
    height: 48px;
  }

  .logo-wordmark {
    width: 66px;
  }

  .logo-wordmark strong {
    font-size: 1.5rem;
  }

  .logo-wordmark span {
    font-size: 0.5rem;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 3.05rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy::after,
  .service-grid::before {
    display: none;
  }

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

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

  .section-heading-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-action .btn {
    width: 100%;
  }

  .service-grid,
  .solution-grid,
  .landing-steps,
  .work-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-top: 58px;
  }

  .landing-hero-grid,
  .landing-content-grid {
    gap: 28px;
  }

  .landing-panel,
  .landing-step {
    padding: 24px;
  }

  .landing-media img,
  .landing-photo-stack img {
    height: 320px;
  }

  .landing-photo-stack {
    grid-template-columns: 1fr;
  }

  .landing-photo-stack img:nth-child(2) {
    margin-top: 0;
  }

  .hero-feature,
  .hero-feature img,
  .hero-feature video {
    min-height: 360px;
    height: 360px;
  }

  .hero-feature,
  .work-card,
  .about-card,
  .why-list,
  .cta-box {
    border-radius: 26px;
  }

  .hero-review {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-support-badge {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 10px 12px;
  }

  .hero-support-badge i {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .work-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

  .work-card img,
  .work-card video,
  .work-card-large img,
  .work-card-large video {
    height: 310px;
  }

  .about-card {
    padding: 26px;
  }

  .why-list,
  .recommendation-box,
  .process-panel,
  .cta-box {
    padding: 26px;
  }

  .process-panel {
    gap: 28px;
    border-radius: 26px;
  }

  .timeline-step {
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 16px;
  }

  .timeline-number {
    width: 36px;
    height: 36px;
  }

  .recommendation-head {
    flex-direction: column;
  }

  .testimonial-carousel {
    min-height: 310px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card a:first-child {
    font-size: 1.32rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(7, 120, 150, 0.34);
  }
}
