:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #f8f8f8;
  --color-bg-tertiary: #f0f0f0;
  --color-text: #1a1a1a;
  --color-text-secondary: #555555;
  --color-text-muted: #777777;
  --color-border: #e0e0e0;
  --color-accent: #c41e3a;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img img { height: 65px; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  background: var(--color-bg-secondary);
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.logo-img {
  height: 120px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196,30,58,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.section {
  padding: 5rem 1.5rem;
}

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

.section-accent {
  background: var(--color-accent);
  color: white;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.concept {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .concept {
    grid-template-columns: 1fr 1fr;
  }
}

.concept-text p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.concept-text p:first-child {
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 500;
}

.concept-features {
  display: grid;
  gap: 1.5rem;
}

.feature {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.25s;
}

.feature:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.delivery-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.25s;
}

.delivery-card:hover {
  border-color: var(--color-accent);
}

.delivery-card h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.delivery-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.phone-link {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 4rem 1.5rem 2rem;
}

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

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: var(--color-accent);
  font-weight: 500;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--color-accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.content-section {
  padding: 7rem 1.5rem 4rem;
}

.content-block {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.content-block p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: all 0.25s;
}

.menu-item:hover {
  border-color: var(--color-accent);
}

.menu-item-price {
  color: var(--color-accent);
  font-weight: 600;
}

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

.contact-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
}

.contact-card:hover {
  border-color: var(--color-accent);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.info-box {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}

.info-box-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fleet-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.fleet-item,
.offer-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.fleet-item:hover,
.offer-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.fleet-image,
.offer-image {
  aspect-ratio: 16/10;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.fleet-image img,
.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fleet-item:hover .fleet-image img,
.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.fleet-content,
.offer-content {
  padding: 1.5rem;
}

.offer-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10001;
}

.lightbox-image {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}

.lightbox-text {
  padding: 2rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .fleet-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
}