:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --line: #dbe3ef;
  --surface: #f8fafc;
  --brand-1: #0b3c5d;
  --brand-2: #0ea5a4;
  --brand-3: #f59e0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 8% 10%, rgba(14, 165, 164, 0.14), transparent 28%),
    radial-gradient(circle at 90% 6%, rgba(245, 158, 11, 0.12), transparent 26%),
    #eef3f9;
}

.brand-grad {
  background: linear-gradient(130deg, var(--brand-1), #123a66 48%, #0d9488);
}

.glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(219, 227, 239, 1);
}


.soft-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}


.premium-border {
  position: relative;
}

.premium-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(14, 165, 164, 0.5), rgba(245, 158, 11, 0.5));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  pointer-events: none;
}

.img-placeholder {
  background: linear-gradient(145deg, #dce9fb, #bed7f4 45%, #f0e0be);
  color: #13406c;
  border: 1px dashed #89a7cb;
}

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

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

.float {
  animation: floatY 5s ease-in-out infinite;
}

.float-delay {
  animation: floatY 6s ease-in-out 0.8s infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 80%;
  height: 280%;
  transform: rotate(22deg);
  background: rgba(255, 255, 255, 0.25);
  animation: sweep 6s linear infinite;
}

@keyframes sweep {
  0% {
    left: -140%;
  }
  100% {
    left: 180%;
  }
}

.toastish {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 60;
}

.toastish.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link {
  padding: 0.55rem 0;
  border-bottom: 1px solid #eef2f7;
}

.hero-frame {
  animation: liftIn 0.9s ease;
}

.hero-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
  animation: slowPulse 7s ease-in-out infinite;
}

.section-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #d8e0ed;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.service-cta {
  position: relative;
  overflow: hidden;
}

.service-cta::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 45%;
  height: 290%;
  transform: rotate(22deg);
  background: rgba(255, 255, 255, 0.16);
  animation: sweep 6s linear infinite;
}

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

@keyframes slowPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (max-width: 767px) {
  .hero-photo,
  .section-photo {
    height: 220px;
  }
}
