﻿:root {
  --bg: #0b3440;
  --bg-soft: #104656;
  --text: #eff4f5;
  --muted: #afc4cb;
  --accent: #ff4362;
  --card: #0e3d4b;
  --line: #2f6977;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #1e6072 0%, rgba(30, 96, 114, 0) 40%),
    radial-gradient(circle at 100% 20%, #124a5b 0%, rgba(18, 74, 91, 0) 35%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 24px 0 88px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Unbounded", sans-serif;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.cta {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  border-color: #8dc8d8;
}

.hero-content {
  padding-top: 76px;
  max-width: 760px;
  position: relative;
  z-index: 2;
  animation: revealUp 0.9s ease both;
}

.eyebrow {
  color: #9fc0cb;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  line-height: 1.6;
}

.hero-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags-label {
  margin: 24px 0 10px;
  color: #c4d5da;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-tags span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.text-case-extra {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.text-case-extra-title {
  margin: 0;
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-case-extra a {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.85rem;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  z-index: 1;
}

.blob-a {
  width: 250px;
  height: 250px;
  right: 8%;
  top: 110px;
  background: rgba(77, 161, 187, 0.35);
}

.blob-b {
  width: 180px;
  height: 180px;
  right: 18%;
  top: 300px;
  background: rgba(255, 67, 98, 0.22);
}

.section {
  margin: 68px auto;
}

.section-compact {
  margin: 22px auto 40px;
}

.case-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 10px;
}

.case-map a {
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.case-map a:hover {
  transform: translateY(-2px);
  border-color: #8dc8d8;
}

.case-map span {
  color: #9fc0cb;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.step {
  color: #9fc0cb;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.section-head h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
}

.gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}

.card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  animation: revealUp 0.8s ease both;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
}

.service {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 20px;
}

.service h3 {
  font-size: 1.22rem;
}

.service p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.text-case-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  align-items: start;
}

.text-case-list {
  display: grid;
  gap: 10px;
}

.text-case-btn {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.text-case-btn:hover {
  transform: translateY(-2px);
  border-color: #8dc8d8;
}

.text-case-btn.is-active {
  border-color: #8dc8d8;
  background: linear-gradient(145deg, rgba(141, 200, 216, 0.2), rgba(255, 255, 255, 0.03));
}

.embed-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.embed-viewer iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 620px !important;
  border-radius: 12px !important;
}

.embed-note {
  margin: 10px 2px 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.embed-note a {
  color: #9fd6e4;
}

.reels-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.reel-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px;
}

.reel-card video {
  width: 100%;
  max-height: 620px;
  border-radius: 12px;
  display: block;
  background: #062831;
}

.reel-card h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.result-wrap {
  background: linear-gradient(145deg, #0f3f4d, #113645);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 42px);
}

.result-wrap h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.result-wrap p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.result-image {
  margin: 18px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.result-image img {
  width: 100%;
  display: block;
}

.footer {
  margin-top: 90px;
  padding: 44px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
}

.footer p {
  margin-top: 8px;
  color: var(--muted);
}

.cta-lg {
  font-weight: 700;
  background: linear-gradient(120deg, #ff4362, #ff6b63);
  border: none;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .case-map {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .text-case-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .embed-viewer iframe {
    min-height: 520px !important;
  }

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

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