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

:root {
  --bg: #05060a;
  --bg-alt: #0b0d14;
  --accent: #e7b04b;
  --accent-soft: rgba(231, 176, 75, 0.12);
  --text: #f5f5f6;
  --muted: #a3a7b7;
  --card: #11131c;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-xl: 1.4rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1e2533 0, #05060a 52%, #020308 100%);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(231, 176, 75, 0.08), rgba(5, 6, 10, 0.95));
  border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 0.8rem;
  background: radial-gradient(circle at 20% 0, #fff, #e7b04b 42%, #64512c 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 32px rgba(231, 176, 75, 0.65);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e7b04b, #ffe3a2);
  transition: width 0.22s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.link-website {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.header-phone {
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 190, 135, 0.12);
  border: 1px solid rgba(10, 190, 135, 0.4);
}

.header-phone i {
  margin-right: 0.3rem;
}

.cart-button {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(4, 5, 10, 0.7);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #111;
}

/* Hero */

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

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

.hero-text h1 {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.7rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #e7b04b, #ffda8b);
  color: #111;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.65);
}

.btn-secondary {
  background: rgba(11, 13, 20, 0.9);
  color: var(--text);
  border: 1px solid var(--border-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-subtle);
}

.btn-full {
  width: 100%;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-benefits i {
  color: var(--accent);
}

.hero-image {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(231, 176, 75, 0.22), transparent 60%);
  mix-blend-mode: soft-light;
}

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

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 38rem;
  font-size: 0.94rem;
}

/* About */

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

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

.about-text p + p {
  margin-top: 0.6rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-stats div {
  border-radius: 1.1rem;
  padding: 0.7rem 1rem;
  background: rgba(5, 6, 10, 0.9);
  border: 1px solid var(--border-subtle);
  min-width: 9.5rem;
}

.about-stats span:first-child {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-stats small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.about-image {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Products / services cards */

.products-header {
  text-align: left;
  margin-bottom: 1.8rem;
}

.products-header p {
  color: var(--muted);
  max-width: 35rem;
  font-size: 0.94rem;
}

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

.product-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
}

.product-card__badge {
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.product-card__rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.product-card__rating-stars {
  letter-spacing: 0.1em;
  color: #f5c96a;
}

.product-card__title {
  font-size: 1rem;
  margin: 0.15rem 0 0.3rem;
}

.product-card__description {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.3rem;
}

.product-card__actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Applications / process */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.app-card {
  background: rgba(11, 13, 20, 0.9);
  border-radius: 1.2rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.app-card i {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.app-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.app-card p {
  margin: 0;
  color: var(--muted);
}

/* Trust / engagements */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.trust-item {
  background: rgba(11, 13, 20, 0.9);
  border-radius: 1.2rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.trust-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

/* Footer */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.5rem;
  background: radial-gradient(circle at top, #131724, #05060a);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer h3,
.footer h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: #7d8090;
}

/* Cart drawer */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: #05060a;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.9);
  transform: translateX(100%);
  transition: transform 0.28s ease-out;
  z-index: 60;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-subtle);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer__header h2 {
  font-size: 1rem;
  margin: 0;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-drawer__items {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 1rem 1rem;
}

.cart-item {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
}

.cart-item-title {
  font-weight: 500;
}

.cart-item-remove {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.cart-drawer__footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border-subtle);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

/* Anim / utility */

.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .hero-inner,
  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 3.2rem;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    gap: 2rem;
  }
  .header-actions .link-website {
    display: none;
  }
}
