/* ── ECO SWISS CONCEPT — style.css v=1 ── */
:root {
  --red: #c6001e;
  --red-deep: #a50018;
  --dark: #111111;
  --ink: #1e1e1e;
  --light: #f7f7f7;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e2e8f0;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; font-size: 16px; color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar { background: var(--dark); color: rgba(255,255,255,.75); font-size: 13px; padding: 6px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: rgba(255,255,255,.75); }
.topbar-item a:hover { color: var(--red); }
.topbar-sep { margin-left: auto; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); height: var(--nav-h); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 100%; gap: 32px; }
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-menu li a { font-size: 14px; font-weight: 500; color: var(--ink); padding: 6px 12px; border-radius: 6px; transition: color .15s, background .15s; }
.nav-menu li a:hover, .nav-menu li a.active { color: var(--red); background: rgba(198,0,30,.06); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; border-radius: 6px !important; padding: 8px 18px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--red-deep) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; padding: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { font-size: 28px; cursor: pointer; color: var(--muted); }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--ink); padding: 12px 16px; border-radius: 8px; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.nav-cta { background: var(--red); color: var(--white); margin-top: 16px; text-align: center; border-bottom: none; }

/* ── HERO ── */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45; }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.hero-eyebrow { display: inline-block; background: var(--red); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; max-width: 680px; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--red); color: var(--white); font-weight: 700; padding: 14px 28px; border-radius: 8px; font-size: 15px; transition: background .15s; }
.btn-primary:hover { background: var(--red-deep); color: var(--white); }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,.6); color: var(--white); font-weight: 600; padding: 12px 26px; border-radius: 8px; font-size: 15px; transition: border-color .15s, background .15s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-dark { display: inline-block; border: 2px solid var(--red); color: var(--red); font-weight: 600; padding: 12px 26px; border-radius: 8px; font-size: 15px; transition: background .15s, color .15s; }
.btn-outline-dark:hover { background: var(--red); color: var(--white); }

/* ── PAGE HERO ── */
.page-hero { background: var(--ink); color: var(--white); padding: 56px 24px 48px; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 17px; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--red); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section.bg-light { background: var(--light); }
.section.bg-cta { background: var(--red-deep); color: var(--white); }
.section.bg-cta .section-title { color: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-inner.centered { text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-eyebrow.centered { text-align: center; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 12px; }
.section-title.centered { text-align: center; }
.section-sub { color: var(--muted); font-size: 16px; line-height: 1.8; max-width: 640px; }
.section-sub.centered { margin: 0 auto; text-align: center; }

/* ── SERVICES GRID (homepage) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.service-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-card-link { font-size: 14px; font-weight: 600; color: var(--red); }
.service-card-link:hover { color: var(--red-deep); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.why-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(198,0,30,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.why-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── STATS ── */
.stats-band { background: var(--dark); padding: 56px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-size: 3.2rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ── ABOUT BLOCK ── */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-block.reversed { direction: rtl; }
.about-block.reversed > * { direction: ltr; }
.about-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.checklist-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--dark); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── PRODUCT MODELS ── */
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.model-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.model-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.model-card-img img { width: 100%; height: 100%; object-fit: cover; }
.model-card-body { padding: 24px; }
.model-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); background: rgba(198,0,30,.08); padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
.model-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.model-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.testi-text { font-size: 15px; color: var(--ink); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-author { font-size: 14px; font-weight: 700; color: var(--dark); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-block { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-block-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(198,0,30,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-block-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.contact-block-value { font-size: 15px; color: var(--dark); line-height: 1.6; }
.contact-block-value a { color: var(--dark); }
.contact-block-value a:hover { color: var(--red); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: inherit; color: var(--dark); background: var(--white); transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(198,0,30,.08); }
.form-group textarea { resize: vertical; }
.btn-submit { background: var(--red); color: var(--white); border: none; border-radius: 8px; padding: 14px 32px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .15s; align-self: flex-start; }
.btn-submit:hover { background: var(--red-deep); }
.form-success { text-align: center; padding: 64px 24px; }
.form-success svg { margin: 0 auto 20px; display: block; }
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { color: var(--muted); }
.form-error { background: #fff3f3; border: 1px solid #fca5a5; border-radius: 8px; padding: 14px 18px; color: #b91c1c; font-size: 14px; margin-bottom: 16px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col li a:hover { color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }

/* ── SWISS BADGE ── */
.swiss-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(198,0,30,.08); border: 1px solid rgba(198,0,30,.2); border-radius: 20px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
/* ── FORM NOTICES ── */
.form-notice { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 8px; margin-bottom: 32px; font-weight: 500; }
.form-notice-ok { background: #ecfdf5; border: 1px solid #86efac; color: #166534; }
.form-notice-err { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .about-block { grid-template-columns: 1fr; gap: 32px; }
  .about-block.reversed { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-btns { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── DROPDOWN NAV ── */
.has-dropdown { position: relative; }
.nav-menu .dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  min-width: 210px; box-shadow: 0 8px 32px rgba(0,0,0,.12); z-index: 200; padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.nav-menu .dropdown li { position: relative; }
.nav-menu .dropdown > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; color: var(--dark); font-size: 14px; font-weight: 500; white-space: nowrap;
}
.nav-menu .dropdown > li > a:hover { background: var(--light); color: var(--red); }
.nav-arrow { font-size: 10px; opacity: .5; margin-left: 6px; }
.has-submenu .submenu {
  display: none; position: absolute; left: 100%; top: -8px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  min-width: 160px; box-shadow: 0 8px 32px rgba(0,0,0,.12); padding: 8px 0;
}
.has-submenu:hover .submenu { display: block; }
.submenu a { display: block; padding: 9px 18px; color: var(--dark); font-size: 14px; font-weight: 500; }
.submenu a:hover { background: var(--light); color: var(--red); }

/* ── CATALOGUE CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.cat-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }
.cat-card-icon { width: 48px; height: 48px; background: rgba(198,0,30,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-card-title { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.cat-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--red); }
.cat-card-link:hover { color: var(--red-deep); }

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .has-dropdown:hover .dropdown { display: none; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
}
