:root {
  --bg-body: #ffffff;
  --bg-elevated: #ffffff;
  --bg-alt: #f3f4f6;

  --text-primary: #0f172a;
  --text-muted: #4b5563;
  --text-soft: #6b7280;

  --brand-primary: #2563eb;
  --brand-secondary: #4f46e5;
  --brand-accent: #16a34a;

  --radius-md: 0.9rem;
  --radius-lg: 1.4rem;
  --radius-full: 999px;

  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 8px 24px rgba(15, 23, 42, 0.06);

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 760px;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.6rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #111827;
}

h1 {
  font-size: clamp(2.7rem, 3.4vw + 1.7rem, 3.8rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(2.05rem, 2.6vw + 1.1rem, 2.6rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.lead {
  font-size: 1.14rem;
  color: #374151;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

[id] {
  scroll-margin-top: 6rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.simple-header {
  position: static;
  background: #f9fafb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 650;
  font-size: 1.2rem;
  color: #111827;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 0 0, #38bdf8, #6366f1 40%, #22c55e 80%);
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

.logo-mark-sm {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.1rem;
}

.logo-text-accent {
  color: #4f46e5;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.96rem;
  flex: 1;
}

.main-nav-simple {
  justify-content: flex-end;
}

.main-nav > a,
.main-nav .nav-item > a {
  color: var(--text-soft);
  padding-bottom: 0.18rem;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  font-weight: 500;
}

.main-nav > a:hover,
.main-nav .nav-item > a:hover {
  color: #111827;
  border-color: rgba(156, 163, 175, 0.7);
}

.nav-item {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 230px;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 30;
}

.nav-submenu a {
  display: block;
  padding: 0.32rem 0.45rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-radius: 0.5rem;
}

.nav-submenu a:hover {
  background: #f9fafb;
  color: #111827;
  text-decoration: none;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta-link {
  font-size: 0.9rem;
  font-weight: 550;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta-link:hover {
  border-color: rgba(37, 99, 235, 0.9);
  background: #eff6ff;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 550;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn-lg {
  padding: 0.8rem 1.7rem;
  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #f9fafb;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: rgba(209, 213, 219, 0.9);
}

.btn-ghost:hover {
  color: #111827;
  border-color: rgba(148, 163, 184, 0.9);
  background: #f9fafb;
}

/* HERO */

.hero {
  padding: 4rem 0 3.2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.9rem 0 0.6rem;
}

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

.hero-note a {
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.hero-tags span {
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  background: #e5edff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: #1f2937;
}

.gradient-text {
  background: linear-gradient(120deg, #0891b2, #4f46e5, #16a34a);
  -webkit-background-clip: text;
  color: transparent;
}

/* HERO PANEL */

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-photo-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 0.4rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.35rem;
  padding: 1.25rem 1.35rem 1.1rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(229, 231, 235, 0.95);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.hero-card-title {
  font-size: 0.98rem;
  color: #111827;
}

.badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: #eff6ff;
  color: #1d4ed8;
}

.hero-points {
  list-style: none;
  margin: 0 0 0.4rem;
  padding: 0;
}

.hero-points li + li {
  margin-top: 0.55rem;
}

.hero-points h4 {
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.hero-points p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-soft);
}

/* SECTIONS */

.section {
  padding: 3.3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: left;
  max-width: 640px;
  margin-bottom: 2.1rem;
}

/* GRIDS & CARDS */

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

.card {
  background: #ffffff;
  border-radius: 1.15rem;
  padding: 1.2rem 1.25rem 1.15rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 1.0rem;
}

.card-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* PRODUCT CARD IMAGES */

.card-image-wrapper {
  margin: -0.1rem -0.1rem 0.7rem;
  border-radius: 0.95rem;
  overflow: hidden;
  background: #e5e7eb;
}

.card-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow-subtle);
}

.stat-value {
  display: block;
  font-size: 1.08rem;
  font-weight: 650;
  color: #1d4ed8;
}

.stat-label {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #111827;
}

.contact-details p {
  font-size: 0.98rem;
}

.contact-form-card {
  background: #ffffff;
  padding: 1.6rem 1.6rem 1.45rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-bottom: 1rem;
}

/* FORMS */

.contact-form,
.embed-card {
  font-size: 0.94rem;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #111827;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: #111827;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* INFO & EMBED CARDS */

.info-box {
  margin: 1.7rem 0 1.5rem;
  padding: 1.2rem 1.35rem;
  border-radius: 1rem;
  background: #eff6ff;
  border: 1px dashed rgba(191, 219, 254, 0.9);
}

.info-box h3 {
  margin-bottom: 0.45rem;
}

.info-box ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

.embed-card {
  background: #ffffff;
  border-radius: 1.15rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: var(--shadow-soft);
}

.form-embed {
  width: 100%;
  min-height: 640px;
  border-radius: 0.95rem;
  background: #f9fafb;
}

/* DISCLAIMERS */

.disclaimer {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 540px;
}

/* FOOTER */

.site-footer {
  margin-top: 2.6rem;
  background: #f9fafb;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
}

.simple-footer {
  margin-top: 2.3rem;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #f9fafb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 2rem 0 1.6rem;
}

.footer-brand {
  max-width: 270px;
}

.footer-title {
  display: inline-block;
  margin-left: 0.45rem;
  font-weight: 650;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 1.9rem;
  font-size: 0.9rem;
}

.footer-links h5 {
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111827;
}

.footer-links a {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text-soft);
}

.footer-links a:hover {
  color: #111827;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: #f3f4f6;
}

.footer-bottom-inner {
  padding: 0.8rem 0 0.95rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-meta {
  opacity: 0.95;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav-simple {
    justify-content: center;
  }

  .nav-submenu {
    display: none;
  }

  .header-cta-link {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.3rem;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }
}
