:root {
  --navy: #072a55;
  --navy-2: #0b3a74;
  --blue: #0756a6;
  --soft-blue: #e9f1fb;
  --cream: #f7f1e8;
  --cream-2: #fbf7f0;
  --warm: #d6b98f;
  --gold: #c89135;
  --ink: #142135;
  --muted: #657083;
  --line: rgba(7, 42, 85, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 42, 85, 0.14);
  --shadow-soft: 0 14px 38px rgba(7, 42, 85, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Alexandria", "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(7, 86, 166, 0.10), transparent 32rem),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 42%, #fbf7f0 100%);
  line-height: 1.8;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; }

.container {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
}

.section { padding: 84px 0; }
.section-glow { position: relative; overflow: hidden; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -8%;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(200, 145, 53, 0.16), transparent 62%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 42, 85, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  line-height: 1.1;
  min-width: 390px;
}

.brand-text { display: inline-flex; flex-direction: column; }
.partner-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 44px;
  padding: 5px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 42, 85, 0.08);
  box-shadow: 0 10px 24px rgba(7, 42, 85, 0.06);
}
.partner-logo { width: 100%; height: 100%; object-fit: contain; }

.brand-mark {
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.85rem, 2.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  color: var(--navy);
}
.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 4px;
}

.main-nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
}
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--blue);
  transition: 0.25s ease;
}
html[dir="ltr"] .main-nav a::after { transform-origin: left; }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-cta,
.btn,
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}
.header-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 30px rgba(7, 86, 166, 0.22);
}
.btn.secondary,
.lang-switch {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 42, 85, 0.18);
}
.lang-switch { min-width: 54px; padding-inline: 14px; }
.header-cta:hover,
.btn.primary:hover,
.lang-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(7, 86, 166, 0.18);
}
.btn.secondary:hover { transform: translateY(-2px); background: var(--white); border-color: var(--blue); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  border-radius: 999px;
  transition: 0.25s ease;
}

.hero { padding: 86px 0 54px; }
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 42px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: rgba(7, 86, 166, 0.08);
  border: 1px solid rgba(7, 86, 166, 0.13);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Cairo", sans-serif;
  font-size: clamp(2.25rem, 3.45vw, 3.9rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  max-width: 570px;
}
.hero p {
  margin: 24px 0 0;
  color: #384861;
  font-size: 0.98rem;
  font-weight: 500;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghost-word {
  position: absolute;
  inset: 2rem -7rem auto auto;
  color: rgba(7, 42, 85, 0.055);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 0;
  white-space: nowrap;
}
.product-stage {
  position: relative;
  width: min(100%, 660px);
  min-height: 500px;
  border-radius: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-stage::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 2%;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(214, 185, 143, 0.44), rgba(214, 185, 143, 0.08) 56%, transparent 70%);
  filter: blur(2px);
}
.product-stage::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 10%;
  bottom: 10%;
  height: 120px;
  border-radius: 50%;
  background: #e9dcc9;
  z-index: 0;
  box-shadow: inset 0 12px 28px rgba(255,255,255,0.6), 0 34px 70px rgba(7,42,85,0.13);
}
.hero-product {
  position: absolute;
  object-fit: cover;
  z-index: 2;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-product-main { width: min(72%, 420px); aspect-ratio: 1 / 1.18; right: 10%; bottom: 14%; }
.hero-product-side { width: min(41%, 270px); aspect-ratio: 0.85 / 1; left: 4%; bottom: 20%; filter: saturate(1.02) contrast(1.02); }
html[dir="ltr"] .hero-product-main { right: auto; left: 10%; }
html[dir="ltr"] .hero-product-side { left: auto; right: 4%; }

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}
.trust-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 0; }
.exclusive-card,
.trust-item {
  min-height: 132px;
  padding: 26px 28px;
  border-inline-start: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-item:last-child { border-inline-start: 0; }
.exclusive-card span,
.trust-item p { color: var(--muted); font-size: 0.82rem; margin: 0; }
.exclusive-card strong { color: var(--navy); font-size: 1.05rem; }
.exclusive-card b { color: var(--blue); font-family: Georgia, serif; font-size: 2rem; line-height: 1.1; }
.icon,
.branch-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon svg,
.branch-icon svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item .icon { color: var(--blue); margin-bottom: 10px; width: 30px; height: 30px; }
.trust-item .icon svg { width: 28px; height: 28px; }
.trust-item strong { color: var(--navy); font-size: 0.95rem; }

.section-heading { margin-bottom: 34px; }
.section-heading span {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.92rem;
  margin-bottom: 10px;
  position: relative;
}
.section-heading span::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin-inline-start: 12px;
  align-self: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cairo", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.row-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

.category-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 18px; }
.category-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--navy);
  isolation: isolate;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.6s ease; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,42,85,0.08), rgba(7,42,85,0.78)); z-index: 1; }
.category-card:hover img { transform: scale(1.06); }
.card-overlay { position: absolute; inset: auto 0 0 0; padding: 26px; z-index: 2; color: var(--white); }
.card-overlay span { color: rgba(255,255,255,0.75); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }
.card-overlay h3 { margin: 8px 0 12px; font-size: 1.55rem; line-height: 1.25; letter-spacing: -0.03em; }
.card-overlay a { font-weight: 800; font-size: 0.88rem; color: #fff; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  color: var(--navy);
  font-weight: 800;
  padding: 10px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: inherit;
}
.filter-btn:hover,
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}
.product-card.is-hidden { display: none; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1 / 1; background: linear-gradient(180deg, var(--cream), #fff); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-info { padding: 18px 16px 20px; }
.product-info h3 { margin: 8px 0 6px; color: var(--navy); font-size: 1.05rem; line-height: 1.2; direction: ltr; text-align: right; }
html[dir="ltr"] .product-info h3 { text-align: left; }
.product-info p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.65; }
.tag { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 10px; font-size: 0.68rem; font-weight: 900; }
.tag.eco { background: rgba(59, 148, 83, 0.12); color: #27773d; }
.tag.exterior { background: rgba(200, 145, 53, 0.15); color: #96651f; }
.tag.interior { background: rgba(7, 86, 166, 0.12); color: var(--blue); }
.tag.industrial { background: rgba(190, 34, 34, 0.12); color: #b82323; }

.feature-banner { padding-top: 22px; }
.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(247,241,232,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.feature-image { border-radius: 24px; overflow: hidden; min-height: 430px; box-shadow: var(--shadow-soft); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { padding: 20px 22px; }
.feature-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cairo", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.feature-copy p { color: #4b596c; margin: 22px 0 0; max-width: 660px; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.mini-stats div { border: 1px solid var(--line); background: rgba(255,255,255,0.62); border-radius: 18px; padding: 16px; }
.mini-stats strong { display: block; color: var(--navy); font-size: 1.05rem; }
.mini-stats span { color: var(--muted); font-size: 0.8rem; }

.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.why-grid article {
  min-height: 188px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}
.why-grid article:hover { transform: translateY(-5px); background: var(--white); }
.why-grid .icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--soft-blue);
  color: var(--blue);
  margin-bottom: 16px;
}
.why-grid h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.02rem; }
.why-grid p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.65; }

.branches { padding-top: 34px; }
.branches-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 28px; align-items: stretch; }
.showroom-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(7,42,85,0.10), rgba(7,42,85,0.7)),
    url("../images/ceplast-circon.jpg") center/cover;
  box-shadow: var(--shadow);
}
.showroom-card::before { content: ""; position: absolute; inset: 34px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.30); }
.showroom-text { position: absolute; right: 34px; bottom: 34px; color: var(--white); }
html[dir="ltr"] .showroom-text { right: auto; left: 34px; }
.showroom-text span { display: block; font-size: 2.2rem; font-weight: 900; letter-spacing: -0.04em; }
.showroom-text strong { display: block; color: rgba(255,255,255,0.78); }
.branch-content { padding: 38px; background: rgba(255,255,255,0.76); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.compact-heading { margin-bottom: 24px; }
.branch-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.branch-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border-radius: var(--radius-md);
  padding: 26px;
  min-height: 210px;
}
.branch-icon { width: 42px; height: 42px; border-radius: 14px; color: var(--blue); background: var(--soft-blue); margin-bottom: 16px; }
.branch-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; }
.branch-card p { margin: 0 0 16px; color: var(--muted); font-size: 0.9rem; }
.branch-card a { color: var(--blue); font-weight: 900; direction: ltr; display: inline-flex; }
.contact-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.online-contact-card {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,241,232,0.76));
}
.online-contact-card span { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 800; margin-bottom: 4px; }
.email-link { color: var(--navy); font-weight: 900; direction: ltr; display: inline-flex; margin-bottom: 14px; }
.social-links,
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(7, 86, 166, 0.08);
  border: 1px solid rgba(7, 86, 166, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
}
.social-links a:hover { background: var(--navy); color: var(--white); }

.footer { margin-top: 28px; background: linear-gradient(135deg, #061f40, #083a74); color: rgba(255,255,255,0.82); padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.footer-brand strong { display: block; color: var(--white); font-family: "Cairo", sans-serif; font-size: 2.2rem; line-height: 1; letter-spacing: -0.05em; }
.footer-brand p { margin: 14px 0 8px; max-width: 350px; }
.footer-brand span { color: #f2c66d; font-weight: 800; }
.footer h4 { color: var(--white); margin: 0 0 16px; }
.footer a { display: block; color: rgba(255,255,255,0.72); margin: 8px 0; transition: 0.2s ease; }
.footer a:hover { color: var(--white); transform: translateX(-4px); }
html[dir="ltr"] .footer a:hover { transform: translateX(4px); }
.footer-socials { margin-top: 14px; }
.footer-socials a {
  display: inline-flex;
  margin: 0;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-size: 0.72rem;
  font-weight: 800;
}
.footer-socials a:hover { transform: none; background: rgba(255,255,255,0.14); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 36px; padding-top: 18px; color: rgba(255,255,255,0.62); font-size: 0.84rem; }

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(31,168,85,0.3);
}
html[dir="ltr"] .floating-whatsapp { left: auto; right: 22px; }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 64, 0.54);
  backdrop-filter: blur(10px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.26);
}
.modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.modal-kicker { color: var(--blue); font-weight: 900; font-size: 0.88rem; }
.modal-panel h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: "Cairo", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.modal-panel p { color: var(--muted); margin: 0 0 20px; }
.modal-contact-list { display: grid; gap: 10px; }
.modal-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  transition: 0.22s ease;
}
.modal-contact-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: #fff; }
.contact-icon { width: 44px; height: 44px; border-radius: 15px; color: var(--blue); background: var(--soft-blue); }
.modal-contact-item strong { display: block; color: var(--navy); font-size: 0.95rem; }
.modal-contact-item small { display: block; color: var(--muted); direction: ltr; text-align: start; }
.modal-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.modal-socials a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(7, 86, 166, 0.08);
  border: 1px solid rgba(7, 86, 166, 0.12);
  font-weight: 900;
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .header-inner { gap: 16px; }
  .main-nav { gap: 14px; }
  .brand { min-width: 300px; gap: 12px; }
  .partner-logo-box { width: 118px; height: 34px; padding: 4px 7px; border-radius: 10px; }
  .hero-grid,
  .feature-grid,
  .branches-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 520px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .exclusive-card { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid,
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; margin-inline-start: auto; }
  .main-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; border-radius: 14px; }
  .main-nav a:hover,
  .main-nav a.active { background: var(--soft-blue); }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }
  .lang-switch { min-width: 48px; min-height: 44px; padding-inline: 10px; }
  .hero { padding: 54px 0 26px; }
  .hero h1 { font-size: clamp(2.1rem, 8.5vw, 3.2rem); line-height: 1.17; }
  .hero-visual { min-height: 430px; }
  .product-stage { min-height: 420px; }
  .hero-product-main { width: 72%; right: 5%; }
  .hero-product-side { width: 42%; left: 1%; }
  html[dir="ltr"] .hero-product-main { right: auto; left: 5%; }
  html[dir="ltr"] .hero-product-side { left: auto; right: 1%; }
  .section { padding: 62px 0; }
  .row-heading { align-items: flex-start; flex-direction: column; }
  .category-grid,
  .product-grid,
  .why-grid,
  .branch-cards,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-card.large-card { grid-column: 1 / -1; }
  .feature-grid { padding: 16px; }
  .feature-image { min-height: 320px; }
  .mini-stats { grid-template-columns: 1fr; }
  .footer-grid { gap: 22px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand { min-width: auto; gap: 10px; }
  .brand-mark { font-size: 2rem; }
  .brand-subtitle { font-size: 0.63rem; }
  .partner-logo-box { width: 92px; height: 30px; padding: 4px 6px; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-grid,
  .category-grid,
  .product-grid,
  .why-grid,
  .branch-cards,
  .footer-grid { grid-template-columns: 1fr; }
  .exclusive-card,
  .trust-item { min-height: unset; padding: 22px; border-inline-start: 0; border-bottom: 1px solid var(--line); }
  .category-card { min-height: 300px; }
  .product-grid { gap: 14px; }
  .product-card { display: grid; grid-template-columns: 0.9fr 1.1fr; }
  .product-image { aspect-ratio: auto; min-height: 180px; }
  .branch-content { padding: 22px; }
  .showroom-card { min-height: 320px; }
  .floating-whatsapp { left: 14px; bottom: 14px; height: 48px; padding-inline: 16px; }
  html[dir="ltr"] .floating-whatsapp { left: auto; right: 14px; }
  .modal-panel { padding: 28px 18px 20px; border-radius: 22px; }
}
