@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg-dark: #0f172a;
  --bg-dark-secondary: #134e4a;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: #fde68a;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --footer-bar: #1e293b;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.10);
  --shadow-lg: 0 8px 32px rgba(15,23,42,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --font-heading: "Urbanist", sans-serif;
  --font-body: "Roboto", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: var(--light-bg);
}
img { vertical-align: middle; max-width: 100%; }
a { color: inherit; transition: 0.3s ease-in-out; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
h1 { font-size: 3.75rem; font-weight: 800; margin-bottom: 0.5em; }
h2 { font-size: 2.75rem; font-weight: 800; margin-bottom: 0.5em; }
h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5em; }
h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5em; }
p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1em; color: var(--text-body); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-fluid { width: 100%; }
.section-padding { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  text-decoration: none;
  line-height: 1;
}
.navbar .logo img.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 18px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--accent);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
}
.lang-switcher .lang-btn {
  padding: 5px 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
}
.lang-switcher .lang-btn:hover { color: #fff; }
.lang-switcher .lang-btn.active {
  background: var(--accent);
  color: #fff;
}
.navbar .btn-primary {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(19,78,74,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-content .hero-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.scroll-indicator:hover { border-color: var(--accent); }
.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 16px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--card-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: left;
}
.about-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.1);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}
.about-card-text h4 {
  color: var(--text-dark);
  margin-bottom: 6px;
}
.about-card-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.about-info-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.about-info-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.about-info-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-info-row:last-child { border-bottom: none; }
.about-info-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.about-info-value {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: right;
}

/* ===== PRODUCTS ===== */
.products-section {
  background: var(--bg-dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.product-card-body p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}
.product-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-card-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  flex: 1;
}
.btn-3d {
  background: rgba(249,115,22,0.15);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,0.3);
}
.btn-3d:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--card-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.1);
  border-radius: 50%;
  font-size: 1.5rem;
}
.why-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--bg-dark);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.3);
}
.process-step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== 3D EDITOR ===== */
.editor-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.editor-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.editor-viewport {
  position: relative;
  min-height: 480px;
  background: #0a0f1a;
}
.editor-viewport canvas { display: block; width: 100%; height: 100%; }
.editor-panel {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 600px;
}
.editor-panel h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.editor-panel label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.editor-panel input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.editor-panel select {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.editor-panel select option { background: var(--bg-dark); }
.editor-templates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.editor-template {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 2px;
}
.editor-template:hover { border-color: rgba(249,115,22,0.5); }
.editor-template.active { border-color: var(--accent); }
.editor-template img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.editor-template span {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  padding: 4px;
  font-family: var(--font-heading);
}
.editor-summary {
  padding: 16px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
}
.editor-summary p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0 0 12px; }
.editor-summary .btn { width: 100%; }
.editor-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  min-height: 480px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  color: #fff;
  margin-bottom: 16px;
}
.contact-info > p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.15);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--accent);
}
.contact-info-text h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-info-text a, .contact-info-text span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.contact-info-text a:hover { color: var(--accent); }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-form .checkbox-group input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--accent);
}
.contact-form .checkbox-group label {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.contact-form .btn { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bar);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-col p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a, .footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--accent); }

/* ===== CONTACT PERSON ===== */
.contact-person {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px;
}
.contact-person-photo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(249,115,22,0.3);
}
.contact-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FOOTER ISO ===== */
.footer-iso {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.footer-iso img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255,255,255,0.08);
}
.footer-iso span {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 24px;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.visible { bottom: 0; }
.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .editor-container { grid-template-columns: 1fr; }
  .editor-panel { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); max-height: none; }
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .navbar .container { flex-direction: row; gap: 0; justify-content: center; }
  .navbar { padding: 32px 0; }
  .navbar.scrolled { padding: 12px 0; }
  .navbar .nav-links,
  .navbar .nav-right { display: none; }
  .navbar.scrolled .container { justify-content: space-between; }
  .navbar.scrolled .nav-links,
  .navbar.scrolled .nav-right { display: flex; }
  .navbar.scrolled .container { flex-direction: column; gap: 12px; }
  .navbar.scrolled .nav-links { width: 100%; justify-content: center; flex-wrap: wrap; }
  .navbar.scrolled .nav-right { width: 100%; justify-content: center; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content p { font-size: 1.05rem; }
  .hero-content { padding-top: 80px; }
  .editor-viewport { min-height: 320px; }
}
@media (max-width: 576px) {
  .contact-form { padding: 24px; }
  .about-card { flex-direction: column; }
  .about-info-row { flex-direction: column; gap: 4px; }
  .about-info-value { text-align: left; }
}
