:root {
  color-scheme: light;
  --bg: #f7f9ff;
  --bg-soft: #eef2ff;
  --surface: #ffffff;
  --surface-soft: #f3f6ff;
  --accent: #1ecad4;
  --accent-2: #ff4db6;
  --text: #111627;
  --text-soft: #4a5b78;
  --line: #e3e9fb;
  --shadow: 0 26px 60px rgba(31, 52, 96, 0.12);
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--nav-height);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 8vw 80px;
  background: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 420px;
  background: radial-gradient(circle, rgba(30, 202, 212, 0.15), transparent 70%);
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 8vw;
  min-height: var(--nav-height);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(31, 52, 96, 0.08);
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e1020;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(30, 202, 212, 0.25);
  letter-spacing: 1px;
}

.brand-text span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: var(--text-soft);
}

.nav-links a:hover {
  color: var(--accent-2);
}

.cta {
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e1020;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(255, 77, 182, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(30, 202, 212, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw + 1rem, 4.4rem);
  margin: 14px 0 18px;
  line-height: 1.05;
}

.accent-word {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0e1020;
  box-shadow: 0 16px 32px rgba(30, 202, 212, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 77, 182, 0.25);
}

.btn.ghost {
  border: 2px solid var(--line);
  color: var(--text);
  background: #ffffff;
}

.hero-details {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  color: var(--text-soft);
}

.hero-details strong {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 20px;
}

.photo-frame {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.photo-frame img {
  border-radius: 22px;
}

.badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(31, 52, 96, 0.18);
}

.mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(30, 202, 212, 0.12), rgba(255, 77, 182, 0.12));
  border: 1px solid var(--line);
}

.mini-card span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
}

.mini-card p {
  margin-top: 6px;
  font-weight: 600;
}

.section {
  padding: 90px 8vw;
  background: var(--bg);
  scroll-margin-top: var(--nav-height);
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 28px;
}

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

.service-card {
  padding: 20px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  margin: 16px 0 8px;
}

.accent {
  background: var(--bg-soft);
}

.timeline {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.step {
  padding: 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.step span {
  font-size: 2rem;
  color: var(--accent-2);
  font-weight: 700;
}

.benefits {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery {
  background: var(--bg-soft);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 202, 212, 0.25);
}

.benefit {
  padding: 22px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, rgba(30, 202, 212, 0.18), rgba(255, 77, 182, 0.18));
  border-radius: 30px;
  margin: 0 8vw;
  padding: 50px 6vw;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.banner-content p {
  color: var(--text-soft);
}

.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--accent-2);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  padding: 10px 14px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer {
  padding: 30px 8vw 50px;
  text-align: center;
  color: var(--text-soft);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --nav-height: 120px;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .banner {
    margin: 0 6vw;
  }
}

@media (max-width: 640px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

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