:root {
  --primary: #17324d;
  --primary-2: #21486c;
  --mint: #d8eeea;
  --mint-strong: #a7d8cf;
  --gray-25: #fbfcfd;
  --gray-50: #f8fafc;
  --card: #f4f7f8;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --warm: #fff8ed;
  --gold: #d8a431;
  --shadow-sm: 0 14px 34px rgba(23, 50, 77, 0.08);
  --shadow-md: 0 24px 70px rgba(23, 50, 77, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1280px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--mint);
  color: var(--primary);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section-pad {
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.625rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(23, 50, 77, 0.18);
}

.btn-primary:hover {
  background: var(--primary-2);
  box-shadow: 0 22px 50px rgba(23, 50, 77, 0.22);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-soft:hover {
  background: var(--mint);
  border-color: transparent;
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  box-shadow: 0 10px 36px rgba(23, 50, 77, 0.08);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  padding: 12px 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 56px;
}

/* Brand */

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

/* Logo */

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

/* Text */

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

.brand-copy strong {
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}@media (max-width:768px){

.brand-logo{

width:48px;
height:48px;

}

.brand-copy strong{

font-size:.95rem;

}

.brand-copy span{

font-size:.75rem;

}

}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(23, 50, 77, 0.05);
  backdrop-filter: blur(16px);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 200ms ease, color 200ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--mint);
  color: var(--primary);
  outline: none;
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(167, 216, 207, 0.42);
  outline-offset: 3px;
}

.menu-toggle span {
  grid-area: 1 / 1;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 88px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 238, 234, 0.76), transparent 31%),
    linear-gradient(180deg, #f9fbfc 0%, #ffffff 58%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 280px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-top: 54px;
}

.hero-metrics div {
  padding: 20px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(23, 50, 77, 0.06);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(216, 238, 234, 0.64)),
    var(--card);
  box-shadow: var(--shadow-md);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.36;
}

.image-card-large {
  min-height: 600px;
}

.section-image {
  min-height: 560px;
}

.placeholder-art {
  position: absolute;
  inset: 11%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    linear-gradient(145deg, rgba(23, 50, 77, 0.1), rgba(167, 216, 207, 0.48));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.placeholder-art.soft {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.9) 0 10%, transparent 11%),
    linear-gradient(145deg, rgba(255, 248, 237, 0.84), rgba(216, 238, 234, 0.72));
}

.art-orbit,
.art-pill {
  position: absolute;
  display: block;
}

.art-orbit {
  inset: 17% 22% 27%;
  border: 1px solid rgba(23, 50, 77, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.art-pill {
  width: 44%;
  height: 16%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(23, 50, 77, 0.08);
}

.art-pill-one {
  left: 15%;
  bottom: 22%;
  transform: rotate(-11deg);
}

.art-pill-two {
  right: 10%;
  bottom: 36%;
  width: 36%;
  transform: rotate(18deg);
}

.placeholder-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  max-width: calc(100% - 44px);
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 12px 34px rgba(23, 50, 77, 0.08);
  backdrop-filter: blur(14px);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.rating-card {
  top: 44px;
  left: -34px;
  padding: 14px 16px;
}

.review-card {
  right: -24px;
  bottom: 118px;
  display: grid;
  gap: 2px;
  min-width: 168px;
  padding: 18px;
}

.tech-card {
  left: 38px;
  bottom: 48px;
  padding: 14px 16px;
}

.float-card strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.review-card strong {
  font-size: 1.7rem;
}

.float-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.float-card svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-chip {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--warm);
  color: var(--gold);
}

.icon-chip svg,
.stars svg {
  fill: currentColor;
  stroke: currentColor;
}

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

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  font-size: 1.02rem;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mini-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  background: var(--gray-25);
  box-shadow: 0 16px 46px rgba(23, 50, 77, 0.06);
}

.mini-card svg,
.service-icon svg,
.tech-card-item svg,
.contact-list svg,
.socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-card svg {
  margin-bottom: 20px;
  color: var(--primary);
}

.mini-card p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

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

.service-card {
  display: flex;
  min-height: 306px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 50, 77, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  border-color: rgba(167, 216, 207, 0.78);
  box-shadow: 0 26px 70px rgba(23, 50, 77, 0.1);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  background: var(--mint);
  color: var(--primary);
}

.service-card p {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 200ms ease;
}

.service-card a:hover svg {
  transform: translateX(4px);
}

.technology {
  overflow: hidden;
}

.tech-row {
  display: grid;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.tech-card-item {
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--gray-25), var(--white));
  box-shadow: 0 18px 50px rgba(23, 50, 77, 0.05);
  scroll-snap-align: start;
}

.tech-card-item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
  color: var(--primary);
}

.tech-card-item p {
  margin-top: 12px;
  font-size: 0.92rem;
}

.stat-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 44px;
  padding: 46px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 238, 234, 0.8), transparent 38%),
    var(--gray-25);
  box-shadow: var(--shadow-sm);
}

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

.stats-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(23, 50, 77, 0.05);
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.testimonials {
  background: var(--gray-50);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 520ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 368px;
  padding: 42px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--gold);
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card p {
  margin-top: 34px;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.45;
}

.testimonial-card strong {
  display: block;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.slider-dots {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 50, 77, 0.18);
  transition: width 220ms ease, background 220ms ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--primary);
}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;
}

.gallery-card{

overflow:hidden;

padding:5px;

border:1px solid #e2e8f0;

border-radius:28px;

background:#fff;

box-shadow:0 16px 44px rgba(23,50,77,.05);

transition:.3s ease;
}

.gallery-card:hover{

transform:translateY(-6px);

box-shadow:0 28px 60px rgba(23,50,77,.08);
}

.gallery-image{

width:100%;

height:300px;

overflow:hidden;

border-radius:22px;
}

.gallery-image img{

width:100%;

height:100%;

display:block;

object-fit:cover;

transition:.4s ease;
}

.gallery-card:hover img{

transform:scale(1.05);
}

.gallery-card h3{

padding:22px 10px 10px;

font-size:1.2rem;

font-weight:700;

color:#17324d;
}

.feature-split {
  padding: 44px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: var(--gray-25);
  box-shadow: var(--shadow-sm);
}

.feature-split.reverse {
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 248, 237, 0.9), transparent 34%),
    var(--gray-25);
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.benefit-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(23, 50, 77, 0.05);
}
.section-image{

position:relative;

overflow:hidden;

height:550px;

border-radius:32px;

}

.feature-image{

width:100%;

height:100%;

object-fit:cover;

display:block;

transition:.4s ease;

}

.section-image:hover .feature-image{

transform:scale(1.03);

}

.image-badge{

position:absolute;

bottom:24px;

right:24px;

padding:16px 20px;

background:rgba(255,255,255,.92);

backdrop-filter:blur(10px);

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.image-badge strong{

display:block;

font-size:1rem;

color:#17324d;

}

.image-badge span{

font-size:.85rem;

color:#64748b;

}

@media(max-width:768px){

.section-image{

height:380px;

}

}

@media(max-width:480px){

.section-image{

height:320px;

}

}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 72px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
}

.accordion-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.accordion-item button span::before,
.accordion-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  overflow: hidden;
  max-width: 720px;
  padding: 0 54px 28px 0;
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.appointment-card,
.contact-side {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.appointment-card {
  display: grid;
  gap: 18px;
  padding: 40px;
}

.appointment-card h2 {
  margin-bottom: 8px;
}

.appointment-card label {
  display: grid;
  gap: 8px;
}

.appointment-card label span {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.appointment-card input,
.appointment-card select,
.appointment-card textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--gray-50);
  color: var(--text);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.appointment-card input,
.appointment-card select {
  height: 54px;
  padding: 0 16px;
}

.appointment-card textarea {
  resize: vertical;
  min-height: 120px;
  padding: 15px 16px;
}

.appointment-card input:focus,
.appointment-card select:focus,
.appointment-card textarea:focus,
.newsletter input:focus {
  border-color: var(--mint-strong);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(167, 216, 207, 0.22);
}

.appointment-card .btn {
  width: 100%;
  margin-top: 8px;
}

.contact-side {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(23, 50, 77, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 50, 77, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--mint), transparent 30%),
    var(--gray-50);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.map-placeholder span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: var(--gray-25);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.contact-list a:hover {
  background: var(--mint);
  color: var(--primary);
  transform: translateY(-2px);
}

.contact-list svg {
  flex: 0 0 auto;
  color: var(--primary);
}

.site-footer {
  padding: 82px 0 32px;
  background: #0f2438;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 48px;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy span,
.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer p {
  max-width: 360px;
  margin-top: 18px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.98rem;
}

.site-footer a:not(.brand) {
  display: table;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  transition: color 200ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  display: grid !important;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  margin-top: 18px;
}

.newsletter input {
  height: 50px;
  padding: 0 15px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: var(--mint);
  color: var(--primary);
}

.newsletter button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.footer-bottom a {
  margin: 0 !important;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  animation: softPulse 3.8s ease-in-out infinite;
  transition: transform 200ms ease, background 200ms ease;
}

.floating-actions a:nth-child(2) {
  animation-delay: 0.18s;
}

.floating-actions a:nth-child(3) {
  animation-delay: 0.36s;
}

.floating-actions a:nth-child(4) {
  animation-delay: 0.54s;
}

.floating-actions a:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.floating-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-actions a:first-child svg,
.floating-actions a:nth-child(3) svg {
  fill: currentColor;
  stroke: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(23, 50, 77, 0.08);
  }
  50% {
    box-shadow: 0 16px 42px rgba(23, 50, 77, 0.16);
  }
}

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

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

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 24px;
    left: 24px;
    width: calc(100% - 48px);
    display: grid;
    gap: 6px;
    max-height: calc(100svh - 106px);
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    justify-content: center;
    min-height: 48px;
  }

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

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

  .feature-split {
    padding: 30px;
  }
}

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

  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero-metrics,
  .service-grid,
  
  .footer-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 36px;
  }

  .hero-visual,
  .image-card-large,
  .section-image {
    min-height: 430px;
  }

  .float-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
  }

  .hero-visual {
    display: grid;
    align-content: start;
  }

  .image-card-large {
    margin-bottom: 6px;
  }

  .rating-card,
  .review-card,
  .tech-card {
    width: min(100%, 320px);
  }

  .review-card {
    min-width: 0;
  }

  .mini-card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-panel,
  .feature-split,
  .appointment-card {
    padding: 24px;
    border-radius: 26px;
  }

  .testimonial-card {
    min-height: 360px;
    padding: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
  }

  .floating-actions a {
    min-height: 46px;
    padding: 0;
    border: 0;
    box-shadow: none;
    animation: none;
  }

  .floating-actions span {
    display: none;
  }

  .site-footer {
    padding-bottom: 106px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

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

  .section-pad {
    padding: 76px 0;
  }

  h1 {
    font-size: 2.125rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

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

  .btn {
    min-height: 54px;
  }

  .hero-visual,
  .image-card-large,
  .section-image {
    min-height: 360px;
  }

  .placeholder-art {
    inset: 14%;
    border-radius: 24px;
  }

  .placeholder-label {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.74rem;
  }

  .service-card,
  .tech-card-item,
  .mini-card {
    min-height: auto;
    padding: 22px;
  }

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

  .accordion-item button {
    padding: 23px 0;
    font-size: 1rem;
  }

  .accordion-panel p {
    padding-right: 0;
  }

  .map-placeholder {
    min-height: 280px;
  }
}
@media(max-width:1024px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-image{

height:240px;

}

}

@media(max-width:480px){

.gallery-image{

height:220px;

}

}