:root {
  --primary: #1F2937;
  --primary-dark: #111827;
  --accent: #C9A227;
  --accent-dark: #A9871E;
  --background: #F8F9FA;
  --text: #111827;
  --muted: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 50px rgba(17, 24, 39, 0.14);
  --shadow-lg: 0 30px 80px rgba(17, 24, 39, 0.2);
  --radius: 8px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.section-padding {
  padding: 120px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  color: var(--primary-dark);
  line-height: 1.12;
  font-weight: 800;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(31, 41, 55, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.16);
}

.navbar {
  width: min(100% - 48px, 1440px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #F2D66D, var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.brand-name {
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu .nav-cta {
  padding: 12px 20px;
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.26);
}

.nav-menu .nav-cta::after {
  display: none;
}

.nav-menu .nav-cta:hover {
  background: #E0BC43;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: var(--transition);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(17,24,39,.88),
        rgba(17,24,39,.55),
        rgba(17,24,39,.75)
    );
    z-index: 1;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(201,162,39,.22), transparent 26%),
        linear-gradient(180deg, transparent 58%, rgba(17,24,39,.9));
    z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
  padding: 120px 0;
}

.hero-content .section-kicker {
  color: #F2D66D;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 28px;
}

.hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  color: var(--primary-dark);
  background: linear-gradient(135deg, #F2D66D, var(--accent));
  box-shadow: 0 16px 36px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFE07B, #D5AE31);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(201, 162, 39, 0.38);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 86px;
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(31, 41, 55, 0.92), rgba(17, 24, 39, 0.82)),
    repeating-linear-gradient(45deg, rgba(201, 162, 39, 0.16) 0 2px, transparent 2px 18px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  bottom: 34px;
  border: 1px solid rgba(201, 162, 39, 0.38);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p + p {
  margin-top: 18px;
}

.about-highlights {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.about-highlights div {
  padding: 24px 26px;
  background: var(--background);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-highlights div:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.about-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.about-highlights span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.why-section {
  background:
    linear-gradient(180deg, #F8F9FA 0%, #EEF1F4 100%);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 1.08rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.38);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--primary-dark);
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.34);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 16px;
}

.products-section {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.42);
}

.category-image {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(31, 41, 55, 0.94), rgba(17, 24, 39, 0.82)),
    repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.18) 0 1px, transparent 1px 32px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.category-content {
  padding: 32px;
}

.category-content h3 {
  margin-bottom: 14px;
}

.category-content p {
  margin-bottom: 24px;
}

.category-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 900;
  transition: var(--transition);
}

.category-content a::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.category-content a:hover {
  color: var(--accent-dark);
}

.category-content a:hover::after {
  width: 52px;
}

.stats-section {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 120px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.stat-item {
  position: relative;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.stat-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-section {
  position: relative;
  background:
    linear-gradient(120deg, rgba(248, 249, 250, 0.95), rgba(238, 241, 244, 0.95)),
    linear-gradient(135deg, rgba(201, 162, 39, 0.18), transparent 44%);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.cta-content .section-kicker {
  justify-content: center;
}

.cta-content .section-kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent);
}

.cta-content h2 {
  margin-bottom: 22px;
}

.cta-content p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
}

.site-footer {
  background: var(--primary-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 0.9fr;
  gap: 56px;
  padding: 76px 0;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links li + li {
  margin-top: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p + p {
  margin-top: 10px;
}

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-34px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(34px);
  animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .section-padding {
    padding: 96px 0;
  }

  .about-grid {
    gap: 56px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active,
  .navbar.active .nav-menu {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 12px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-section {
    min-height: calc(100vh - 76px);
  }

  .hero-content {
    padding: 96px 0;
  }

  .about-grid,
  .category-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .category-image {
    min-height: 240px;
  }

  .cta-section::before {
    inset: 24px;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar,
  .hero-content {
    width: min(100% - 32px, 1440px);
    .hero-section{
    min-height: auto;
}

.hero-content{
    padding: 70px 0 60px;
}

.hero-content h1{
    font-size: 2.8rem;
    line-height: 1.1;
    max-width: 100%;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-actions{
    margin-top: 30px;
}

.hero-media{
    background-position: center;
    background-size: cover;
}
  }

  .section-padding {
    padding: 76px 0;
  }

  .brand-logo{
    width: 80px;
    height: auto;
    display: block;
}

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .about-image {
    min-height: 320px;
  }

  .about-highlights div,
  .feature-card,
  .category-content {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0;
  }
}
.brand-logo {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
    display: block;
}