:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #2b3a55;
  --bg: #f7efe6;
  --paper: #fffaf4;
  --accent: #ff6b4a;
  --accent-dark: #d84c2f;
  --accent-cool: #2cc9b5;
  --deep: #0d1b2a;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fff9f1 0%, #f7efe6 45%, #e5f4f2 100%);
  color: var(--ink);
  min-height: 100vh;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  height: 50px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 50px;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1;
}

.logo-image {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
  line-height: 1;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 2.8vw + 1rem, 3.6rem);
  margin: 12px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

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

.hero-tags span {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.btn.light {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: var(--radius-md);
  max-width: 220px;
  box-shadow: var(--shadow);
}

.card-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
  margin: 0;
}

.proof {
  background: #f2e8dd;
}

.proof-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.proof-cards {
  display: grid;
  gap: 18px;
}

.proof-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.process {
  background: #fffaf4;
}

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

.process-step {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}


.case-studies {
  background: linear-gradient(120deg, #fff3e6, #f1fbf9);
}

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

.case-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.case-tag {
  display: inline-flex;
  align-self: start;
  background: rgba(44, 201, 181, 0.18);
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.faq {
  background: #fff;
}

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

.faq-item {
  background: #fffaf4;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonials {
  background: #fff;
}

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

.testimonial-card {
  background: #fffaf4;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}

.testimonial-name {
  font-weight: 700;
  margin: 0;
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.discovery {
  background: #f2e8dd;
}

.discovery-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.discovery-form {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}


.discovery-form select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.service-benefits {
  background: #fff;
}

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

.benefit-card {
  background: #fffaf4;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.focus {
  background: #fffaf4;
}

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

.focus-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature,
.service-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.feature h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-block;
  background: rgba(255, 107, 74, 0.12);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  flex: 0 0 auto;
}

.feature-reduce .feature-icon {
  background-color: rgba(255, 107, 74, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M7 8l-4 4 4 4'/%3E%3Cpath d='M17 16l4-4-4-4'/%3E%3C/svg%3E");
}

.feature-scale .feature-icon {
  background-color: rgba(44, 201, 181, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232cc9b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 7-7'/%3E%3Cpath d='M14 8h7v7'/%3E%3C/svg%3E");
}

.feature-find .feature-icon {
  background-color: rgba(56, 189, 248, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
}

.feature-secure .feature-icon {
  background-color: rgba(111, 125, 255, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f7dff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 4v5c0 5-3.8 7.6-7 9-3.2-1.4-7-4-7-9V7l7-4z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.service-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.explorer {
  background: #0f1f30;
  color: #fff;
}

.explorer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.chip.active {
  background: var(--accent);
  border-color: transparent;
}

.explorer-card {
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.explorer-card img {
  width: 100%;
  border-radius: var(--radius-md);
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery {
  background: var(--paper);
}

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

.gallery-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split {
  background: linear-gradient(135deg, #0f1f30, #162c46);
  color: #fff;
}

.split-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.highlight {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.highlight ul {
  padding-left: 18px;
}

.page-hero {
  padding: 70px 0 20px;
}

.image-hero {
  position: relative;
  padding: 0;
  min-height: 320px;
}

.image-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 0 5vw;
  color: #fff;
  background: linear-gradient(120deg, rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.15));
}

.page-hero h1 {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.about-card,
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 1rem;
}

.contact-image {
  margin-top: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.footer-title {
  font-weight: 700;
  margin: 0 0 6px;
}

.footer-heading {
  font-weight: 600;
  margin: 0 0 6px;
}

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

.site-footer a {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
}

.footer-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 5vw;
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 12px;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-media {
    min-height: 260px;
  }

  .image-hero img {
    height: 260px;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }
}

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

.hero-copy,
.hero-media,
.section,
.page-hero {
  animation: fadeUp 0.8s ease both;
}
