:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7fb;
  --color-bg-dark: #0b0e1a;
  --color-bg-dark-alt: #12162a;
  --color-primary: #4f46e5;
  --color-primary-dark: #3730a3;
  --color-primary-soft: #eef0fd;
  --color-accent: #0ea5a5;
  --color-text: #0f1222;
  --color-text-muted: #5b6072;
  --color-text-inverse: #e7e8f3;
  --color-text-inverse-muted: #9295ab;
  --color-border: #e5e6ef;
  --color-border-dark: #232842;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --max-width: 1120px;
  --shadow-sm: 0 1px 2px rgba(15, 18, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 18, 34, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 18, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 18, 34, 0.1);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--on-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--on-dark:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}

.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

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

.nav-links__cta {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff !important;
  font-weight: 600;
}

.nav-links__cta:hover {
  background: var(--color-primary-dark);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: var(--color-bg);
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.16), rgba(79, 70, 229, 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 165, 0.12), rgba(14, 165, 165, 0) 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.hero__inner .eyebrow {
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 88px 0;
}

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

.section__head {
  max-width: 620px;
  margin-bottom: 44px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 12px;
}

.section__head p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.about-grid p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.fact-list dt {
  color: var(--color-text-muted);
  font-weight: 500;
}

.fact-list dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.product-card__icon svg {
  width: 26px;
  height: 26px;
}

.product-card__icon--beauty {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.product-card__icon--auction {
  background: linear-gradient(135deg, #0ea5a5, #06b6d4);
}

.product-card__icon--family {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.product-card__icon--coffee {
  background: linear-gradient(135deg, #b45309, #d97706);
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card__badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.product-card p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  margin-bottom: 18px;
}

.product-card__links {
  display: flex;
  gap: 18px;
  font-size: 0.86rem;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
}

.product-card__links a {
  font-weight: 600;
  color: var(--color-text-muted);
}

.product-card__links a:hover {
  color: var(--color-primary);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #0f7a4a;
  background: #e6f7ee;
  border: 1px solid #c7ecd8;
}

.badge--alt {
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  border-color: #d9dcfb;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Company info */
.info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.94rem;
}

.info-table th {
  width: 38%;
  color: var(--color-text-muted);
  font-weight: 500;
  background: var(--color-bg-alt);
}

.info-table td {
  font-weight: 600;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.company-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.company-note a {
  font-weight: 600;
}

/* Contact */
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-card__text {
  max-width: 480px;
}

.contact-card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-card h2 {
  margin-bottom: 10px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

/* Page header (secondary pages) */
.page-header {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: 64px 0 44px;
}

.page-header h1 {
  margin-bottom: 8px;
  color: #fff;
}

.page-header__meta {
  opacity: 0.7;
  margin: 0;
  font-size: 0.92rem;
}

/* Legal content */
.legal {
  max-width: 760px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.legal p,
.legal li {
  color: var(--color-text-muted);
}

.legal ul,
.legal ol {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal a {
  font-weight: 600;
}

.steps li strong {
  color: var(--color-text);
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse-muted);
  padding: 64px 0 28px;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-dark);
}

.footer__brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer__brand p {
  max-width: 320px;
  line-height: 1.6;
}

.footer__heading {
  color: var(--color-text-inverse);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__links a {
  color: var(--color-text-inverse-muted);
  transition: color 0.15s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .navbar__inner {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 88px 0 64px;
  }

  .info-table th {
    width: 50%;
  }

  .contact-card {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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