:root {
  --ink: #07111f;
  --navy: #051525;
  --navy-2: #081d33;
  --orange: #ff7a10;
  --orange-2: #ff8d2a;
  --green: #10c84a;
  --text: #111827;
  --muted: #657184;
  --line: #e8edf3;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(5, 21, 37, 0.14);
}

.language-switcher {
  position: relative;
  z-index: 30;
}

.language-current {
  min-width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 122, 16, .42);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 170px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #061423;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #d9e4f2;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.language-menu a span {
  color: #8ea1b8;
  font-size: 12px;
  font-weight: 700;
}

.language-menu a:hover,
.language-menu a.active {
  background: rgba(255, 122, 16, .12);
  color: var(--orange);
}

@media (max-width: 980px) {
  .language-switcher {
    order: 4;
  }

  .language-menu {
    right: auto;
    left: 0;
  }
}

body.is-rtl {
  direction: rtl;
  text-align: right;
}

body.is-rtl .language-menu {
  right: auto;
  left: 0;
}

body.is-rtl .brand,
body.is-rtl .header-contact,
body.is-rtl .product-meta,
body.is-rtl .footer-bottom,
body.is-rtl .breadcrumb {
  direction: rtl;
}

body.is-rtl input,
body.is-rtl textarea,
body.is-rtl select {
  text-align: right;
}

body.is-rtl .hero-actions,
body.is-rtl .machine-card-actions,
body.is-rtl .form-actions {
  direction: rtl;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(3, 10, 18, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #0d2a47;
  background:
    radial-gradient(circle at center, #f9fbff 0 50%, transparent 51%),
    conic-gradient(from 0deg, #84b9e7, #e8f4ff, #4f8fc8, #d9ecfb, #84b9e7);
  border: 3px solid #315d84;
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small,
.header-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1 1 auto;
}

.main-nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav .nav-box {
  padding: 8px 11px;
  border: 1px solid rgba(255, 122, 16, 0.45);
  border-radius: 4px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex: 0 0 auto;
}

.header-contact strong {
  display: block;
  font-size: 13px;
  white-space: nowrap;
}

.header-quote {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.phone-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 2px solid rgba(255, 122, 16, 0.8);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.95), rgba(3, 7, 13, 0.66) 45%, rgba(3, 7, 13, 0.92)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.9), rgba(3, 7, 13, 0.08) 42%, rgba(3, 7, 13, 0.25)),
    url("assets/hero-bg.png") center top / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  align-items: center;
  gap: 40px;
  min-height: 570px;
}

.hero-content {
  padding-top: 24px;
}

.hero-line {
  width: 65px;
  height: 3px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero p {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(78px, 1fr));
  gap: 18px;
  max-width: 500px;
  margin: 32px 0;
}

.feature {
  text-align: center;
  font-weight: 800;
}

.feature i,
.advantage-grid i,
.mini-features i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-style: normal;
}

.feature i::before,
.advantage-grid i::before,
.mini-features i::before {
  content: "•";
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
}

i[data-icon="speed"]::before {
  content: "↻";
}

i[data-icon="shield"]::before {
  content: "✓";
}

i[data-icon="clean"]::before {
  content: "✦";
}

i[data-icon="life"]::before {
  content: "∞";
}

i[data-icon="quality"]::before {
  content: "◇";
}

i[data-icon="service"]::before {
  content: "✚";
}

i[data-icon="truck"]::before {
  content: "▱";
}

i[data-icon="support"]::before {
  content: "☎";
}

i[data-icon="happy"]::before {
  content: "♡";
}

i[data-icon="clock"]::before {
  content: "◷";
}

i[data-icon="tools"]::before {
  content: "×";
}

i[data-icon="price"]::before {
  content: "₺";
}

i[data-icon="pin"]::before {
  content: "⌖";
}

i[data-icon="phone"]::before {
  content: "☎";
}

i[data-icon="mail"]::before {
  content: "✉";
}

i[data-icon="document"]::before {
  content: "▤";
}

i[data-icon="target"]::before {
  content: "◎";
}

i[data-icon="share"]::before {
  content: "⌯";
}

i[data-icon="user"]::before {
  content: "♙";
}

i[data-icon="cookie"]::before {
  content: "◌";
}

i[data-icon="lock"]::before {
  content: "▣";
}

i[data-icon="refresh"]::before {
  content: "↻";
}

i[data-icon="database"]::before {
  content: "▱";
}

i[data-icon="web"]::before {
  content: "◎";
}

.feature strong,
.feature span {
  display: block;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 122, 16, 0.28);
}

.btn-primary:hover {
  background: var(--orange-2);
}

.btn-whatsapp {
  background: var(--green);
  box-shadow: 0 12px 28px rgba(16, 200, 74, 0.18);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 52px 0 80px;
}

.hero-visual img {
  width: min(480px, 100%);
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, 0.55));
}

.quote-chip {
  position: absolute;
  top: 0;
  right: 22px;
  min-width: 124px;
  padding: 18px 18px;
  text-align: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: 900;
}

.delivery-badge {
  position: absolute;
  right: -8px;
  bottom: 118px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 7px;
  background: rgba(6, 15, 24, 0.52);
  font-size: 15px;
}

.delivery-badge span {
  color: var(--orange);
  font-size: 26px;
}

.stat-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -42px;
  padding: 27px 30px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #08213a);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.stat-panel div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-panel div:last-child {
  border-right: 0;
}

.stat-panel strong,
.stat-panel span {
  display: block;
}

.stat-panel strong {
  font-size: 18px;
  margin-bottom: 8px;
}

.stat-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.products {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading span,
.quote-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.section-heading h2,
.quote-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.18;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  min-height: 360px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 12px 36px rgba(9, 24, 42, 0.06);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 0 0 12px;
  color: #0b1728;
  font-size: 16px;
  line-height: 1.45;
}

.product-card p {
  margin: 0 0 18px;
  min-height: 48px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
}

.advantages {
  padding-top: 30px;
  background: #fff;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.advantage-grid article {
  min-height: 155px;
  padding: 24px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(9, 24, 42, 0.08);
}

.advantage-grid i {
  color: var(--orange);
  border: 0;
  margin-bottom: 14px;
}

.advantage-grid h3 {
  margin: 0 0 9px;
  font-size: 15px;
}

.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.video-section {
  padding: 76px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 16, 0.08), transparent 34%),
    linear-gradient(120deg, #061323, #07233d);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  align-items: center;
  gap: 70px;
}

.video-section .section-heading h2 {
  color: var(--white);
}

.video-section .section-heading p {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.video-preview {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 7px;
  overflow: hidden;
  background: #0b1728;
  cursor: pointer;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.video-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.quote {
  background: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.quote-copy p {
  margin: 24px 0 42px;
  color: #3a4656;
  font-size: 16px;
  line-height: 1.8;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-features div {
  text-align: center;
  color: #263244;
  font-size: 12px;
  font-weight: 600;
}

.mini-features i {
  width: 42px;
  height: 42px;
  color: var(--orange);
  border: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #3a4656;
  font-size: 12px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 0 14px;
  color: #111827;
  background: #fff;
  border: 1px solid #dbe2eb;
  border-radius: 2px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 16, 0.12);
}

.quote-form textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form .check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
}

.quote-form .check input {
  width: 15px;
  min-height: 15px;
}

.site-footer {
  position: relative;
  padding: 42px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  background: #061525;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0 0 16px;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
}

.site-footer a:not(.brand):not(.floating-whatsapp) {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.site-footer .footer-bottom a {
  display: inline;
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 34px;
  bottom: 28px;
  z-index: 15;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(16, 200, 74, 0.35);
  font-size: 24px;
}

.theme-html-block {
  background: #fff;
  color: var(--text);
}

.theme-html-block-header {
  position: relative;
  z-index: 30;
}

.theme-html-block-footer {
  padding: 28px 0;
}

.page-hero {
  position: relative;
  min-height: 250px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.95), rgba(3, 7, 13, 0.7) 48%, rgba(3, 7, 13, 0.15)),
    url("assets/products-hero.png") center / cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb strong {
  color: var(--orange);
}

.catalog-section {
  padding: 64px 0 0;
  background: #fff;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 34px;
  align-items: start;
}

.catalog-sidebar {
  display: grid;
  gap: 24px;
}

.category-card,
.solution-card,
.catalog-product {
  background: var(--white);
  border: 1px solid #edf1f5;
  border-radius: 7px;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
}

.category-card {
  overflow: hidden;
}

.category-card h2 {
  margin: 0;
  padding: 20px 24px;
  color: var(--white);
  background: linear-gradient(115deg, #07182a, #06111f);
  font-size: 17px;
}

.category-card a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 24px;
  border-bottom: 1px solid #eef2f6;
  font-size: 13px;
  font-weight: 700;
}

.category-card a:last-child {
  border-bottom: 0;
}

.category-card a.active,
.category-card a:hover {
  color: var(--orange);
}

.solution-card {
  padding: 36px 28px;
  text-align: center;
}

.solution-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--orange);
  font-style: normal;
}

.solution-card h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.solution-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.solution-card .btn {
  width: 100%;
  min-height: 48px;
}

.catalog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 36px;
}

.catalog-head h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
}

.catalog-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-head select {
  min-width: 210px;
  min-height: 44px;
  padding: 0 16px;
  color: #7a8594;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 3px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.catalog-product {
  min-height: 372px;
  padding: 20px;
}

.catalog-product img {
  width: 100%;
  height: 165px;
  object-fit: contain;
  margin-bottom: 14px;
}

.catalog-product .tag {
  display: block;
  min-height: 16px;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.catalog-product h3 {
  margin: 0 0 11px;
  color: #0b1728;
  font-size: 16px;
  line-height: 1.45;
}

.catalog-product p {
  margin: 0 0 15px;
  min-height: 46px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 17px;
  color: #1d2939;
  font-size: 11px;
}

.product-meta span,
.product-meta strong {
  display: block;
}

.product-meta strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.catalog-product > a {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}

.muted-product img {
  opacity: 0.18;
  filter: grayscale(1);
}

.muted-product > a {
  color: #0b1728;
  border-color: #edf1f5;
}

.product-service-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
  padding: 28px 24px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.product-service-bar div {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.product-service-bar div:last-child {
  border-right: 0;
}

.product-service-bar i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--white);
  font-style: normal;
}

.product-service-bar strong,
.product-service-bar span {
  display: block;
}

.product-service-bar strong {
  margin-bottom: 9px;
  font-size: 15px;
}

.product-service-bar span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.product-cta {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  min-height: 248px;
  margin-top: 28px;
  margin-bottom: 64px;
  color: var(--white);
  background: linear-gradient(115deg, #071525, #08111c);
  border-radius: 7px;
  overflow: hidden;
}

.product-cta-copy {
  padding: 42px;
}

.product-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.product-cta p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.product-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.72) 46%, rgba(3, 7, 13, 0.25)),
    url("assets/about-hero.png") center / cover no-repeat;
}

.about-section {
  padding: 70px 0 0;
  background: #fff;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1fr;
  gap: 74px;
  align-items: center;
}

.about-copy > span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.about-copy h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.22;
  font-weight: 900;
}

.about-copy p {
  margin: 0 0 22px;
  color: #3f4b5c;
  font-size: 15px;
  line-height: 1.9;
}

.about-copy .btn {
  margin-top: 12px;
}

.about-factory {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(9, 24, 42, 0.12);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  padding: 28px 30px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.about-stats div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats i,
.principle-grid i,
.about-help i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  color: var(--orange);
  font-style: normal;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
}

.about-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.principles {
  padding: 70px 0 54px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.principle-grid article {
  min-height: 190px;
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(9, 24, 42, 0.07);
}

.principle-grid i {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
}

.principle-grid h3 {
  margin: 0 0 12px;
  color: #0b1728;
  font-size: 18px;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.process-band {
  padding: 54px 0 42px;
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.process-band .section-heading {
  margin-bottom: 24px;
}

.process-band .section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-grid figure {
  margin: 0;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(9, 24, 42, 0.09);
}

.process-grid figcaption {
  padding-top: 13px;
  text-align: center;
  color: #0b1728;
  font-size: 13px;
  font-weight: 900;
}

.about-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  margin-bottom: 54px;
  padding: 26px 42px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 7px;
}

.about-help div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.about-help i {
  margin: 0;
  color: var(--white);
}

.about-help strong,
.about-help small {
  display: block;
}

.about-help strong {
  font-size: 26px;
  line-height: 1.2;
}

.about-help small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.about-help .btn {
  min-width: 180px;
}

.contact-hero {
  position: relative;
  min-height: 344px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.64) 46%, rgba(3, 7, 13, 0.35)),
    url("assets/contact-hero.png") center / cover no-repeat;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 268px;
  flex-direction: column;
  justify-content: center;
}

.contact-hero .breadcrumb {
  margin-bottom: 12px;
}

.contact-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 4.7vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.contact-hero p {
  max-width: 470px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.contact-section {
  padding: 38px 0 24px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 15px;
}

.contact-cards article,
.contact-form,
.map-card {
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 7px;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
}

.contact-cards article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 102px;
  padding: 22px 20px;
}

.contact-cards i {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
}

.contact-cards i::before {
  font-size: 34px;
}

.contact-cards h2 {
  margin: 0 0 9px;
  color: #0b1728;
  font-size: 16px;
}

.contact-cards p {
  margin: 0;
  color: #283447;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  padding: 28px 30px;
}

.form-title h2,
.map-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.form-title > span,
.map-card > span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 12px 0 20px;
  background: var(--orange);
}

.form-title p,
.map-card p {
  margin: 0 0 22px;
  color: #3f4b5c;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form textarea {
  min-height: 86px;
}

.contact-form .btn {
  width: min(280px, 100%);
  justify-self: end;
}

.map-section {
  position: relative;
  min-height: 224px;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: url("assets/contact-map.png") center / cover no-repeat;
}

.map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
}

.map-inner {
  position: relative;
  z-index: 1;
  min-height: 224px;
}

.map-card {
  width: min(340px, 100%);
  padding: 28px;
  position: absolute;
  top: 18px;
  left: 0;
}

.map-card .btn {
  min-height: 48px;
}

.map-pin {
  position: absolute;
  left: 61%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #152033;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.map-pin strong {
  color: var(--orange);
  font-size: 34px;
}

.policy-hero {
  position: relative;
  min-height: 307px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.policy-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.68) 48%, rgba(3, 7, 13, 0.32)),
    url("assets/privacy-hero.png") center / cover no-repeat;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 231px;
  flex-direction: column;
  justify-content: center;
}

.policy-hero h1 {
  margin: 18px 0;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.policy-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

.policy-section {
  padding: 34px 0 0;
  background: #fff;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 46px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 22px;
}

.policy-nav,
.policy-note {
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 6px;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
  overflow: hidden;
}

.policy-nav h2 {
  margin: 0;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(115deg, #07182a, #06111f);
  font-size: 15px;
}

.policy-nav a {
  display: block;
  padding: 14px 18px;
  color: #233044;
  border-bottom: 1px solid #edf1f5;
  font-size: 12px;
  font-weight: 700;
}

.policy-nav a:last-child {
  border-bottom: 0;
}

.policy-nav strong {
  color: var(--orange);
  margin-right: 8px;
}

.policy-note {
  padding: 38px 18px;
  text-align: center;
}

.policy-note i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--orange);
  font-style: normal;
}

.policy-note p {
  margin: 0;
  color: #3f4b5c;
  font-size: 13px;
  line-height: 1.8;
}

.policy-content article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 16px 0 25px;
  border-bottom: 1px solid #dfe5ec;
}

.policy-content article:last-child {
  border-bottom: 0;
}

.policy-content i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 16, 0.45);
  border-radius: 8px;
  font-style: normal;
}

.policy-content i::before,
.policy-note i::before {
  font-size: 27px;
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.policy-content p {
  margin: 0 0 10px;
  color: #2f3b4e;
  font-size: 14px;
  line-height: 1.8;
}

.policy-small-btn {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
}

.policy-email {
  color: var(--orange);
  font-weight: 800;
}

.kvkk-hero {
  position: relative;
  min-height: 313px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.kvkk-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.72) 48%, rgba(3, 7, 13, 0.18)),
    url("assets/kvkk-hero.png") center / cover no-repeat;
}

.kvkk-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 237px;
  flex-direction: column;
  justify-content: center;
}

.kvkk-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.kvkk-hero p {
  max-width: 500px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.kvkk-section {
  padding: 26px 0 38px;
  background: #fff;
}

.kvkk-content {
  max-width: 860px;
}

.kvkk-content > article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid #dfe5ec;
}

.kvkk-content > article > i {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 16, 0.42);
  border-radius: 8px;
  font-style: normal;
}

.kvkk-content > article > i::before {
  font-size: 28px;
}

.kvkk-content h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.kvkk-content p {
  margin: 0;
  color: #263244;
  font-size: 14px;
  line-height: 1.8;
}

.kvkk-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  overflow: hidden;
}

.kvkk-contact-grid div {
  min-height: 100px;
  padding: 18px;
  border-right: 1px solid #e2e8f0;
}

.kvkk-contact-grid div:last-child {
  border-right: 0;
}

.kvkk-contact-grid i {
  float: left;
  margin: 2px 12px 60px 0;
  color: var(--orange);
  font-style: normal;
}

.kvkk-contact-grid i::before {
  font-size: 22px;
}

.kvkk-contact-grid strong,
.kvkk-contact-grid span {
  display: block;
}

.kvkk-contact-grid strong {
  margin-bottom: 9px;
  color: #0b1728;
  font-size: 14px;
}

.kvkk-contact-grid span {
  color: #263244;
  font-size: 11px;
  line-height: 1.65;
}

.kvkk-warning {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
  margin: 28px 0 0;
  padding: 22px 28px;
  background: linear-gradient(90deg, rgba(255, 122, 16, 0.11), rgba(255, 122, 16, 0.04));
  border-radius: 7px;
}

.kvkk-warning i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
}

.kvkk-warning i::before {
  font-size: 30px;
}

.kvkk-warning strong {
  color: #0b1728;
}

.gallery-hero {
  position: relative;
  min-height: 294px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.gallery-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.65) 48%, rgba(3, 7, 13, 0.28)),
    url("assets/gallery-hero.png") center / cover no-repeat;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 218px;
  flex-direction: column;
  justify-content: center;
}

.gallery-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 4.7vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.gallery-hero p {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.gallery-section {
  padding: 34px 0 52px;
  background: #fff;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 32px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-filters button,
.download-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--white);
  border: 1px solid #d8dee7;
  border-radius: 6px;
  color: #0b1728;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.download-btn {
  color: var(--white);
  background: #07111f;
  border-color: #07111f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 8px;
}

.gallery-grid figure {
  grid-column: span 3;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #edf1f5;
}

.gallery-grid figure.wide {
  grid-column: span 4;
}

.gallery-grid figure.tall {
  grid-row: span 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 32px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 7px;
}

.gallery-cta div,
.gallery-cta span {
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-cta i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
}

.gallery-cta strong {
  font-size: 18px;
}

.btn-outline {
  min-width: 190px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.blog-hero {
  position: relative;
  min-height: 314px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.96), rgba(3, 7, 13, 0.68) 48%, rgba(3, 7, 13, 0.24)),
    url("assets/blog-hero.png") center / cover no-repeat;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: center;
}

.blog-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
}

.blog-hero p {
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.blog-section {
  padding: 40px 0 62px;
  background: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.blog-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card,
.sidebar-box,
.subscribe-box {
  background: var(--white);
  border: 1px solid #edf1f5;
  border-radius: 7px;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.blog-card > div {
  padding: 18px;
}

.blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.blog-card h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.blog-card p {
  margin: 0 0 22px;
  min-height: 70px;
  color: #3f4b5c;
  font-size: 13px;
  line-height: 1.75;
}

.blog-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.blog-card footer a::before {
  content: "→";
  margin-right: 8px;
}

.pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.pagination a,
.pagination span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0b1728;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
}

.pagination a.active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.blog-sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 22px;
}

.sidebar-box h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 18px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
}

.search-form input {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #dfe5ec;
  border-radius: 4px;
}

.search-form button {
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}

.category-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #263244;
  font-size: 13px;
  font-weight: 700;
}

.category-list a::before {
  content: "◌";
  color: var(--orange);
  margin-right: 9px;
}

.category-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: #f0f3f7;
  border-radius: 50%;
  font-size: 11px;
}

.recent-posts {
  display: grid;
  gap: 13px;
}

.recent-posts a {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
}

.recent-posts img {
  width: 62px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-posts span {
  color: #0b1728;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.recent-posts small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-weight: 600;
}

.subscribe-box {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
}

.subscribe-box i {
  color: var(--white);
  font-style: normal;
}

.subscribe-box i::before {
  font-size: 30px;
}

.subscribe-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.subscribe-box .btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 44px;
}

.quote-page-hero {
  position: relative;
  min-height: 325px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.quote-page-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.97), rgba(3, 7, 13, 0.72) 46%, rgba(3, 7, 13, 0.2)),
    url("assets/quote-hero.png") center / cover no-repeat;
}

.quote-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 249px;
  flex-direction: column;
  justify-content: center;
}

.quote-page-hero h1 {
  margin: 18px 0;
  font-size: clamp(46px, 5.8vw, 66px);
  line-height: 1;
  font-weight: 900;
}

.quote-page-hero h1 span {
  color: var(--orange);
}

.quote-page-hero p {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.quote-page-section {
  padding: 30px 0 0;
  background: #fff;
}

.quote-page-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 26px;
  align-items: start;
}

.quote-side {
  display: grid;
  gap: 20px;
}

.why-quote,
.quick-contact,
.quote-request-form {
  border: 1px solid #edf1f5;
  border-radius: 7px;
  box-shadow: 0 16px 42px rgba(9, 24, 42, 0.08);
}

.why-quote {
  padding: 26px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
}

.why-quote h2,
.quick-contact h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.why-quote h2 span {
  color: var(--orange);
}

.accent-line {
  width: 42px;
  height: 3px;
  margin: 14px 0 22px;
  background: var(--orange);
}

.why-quote article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-quote article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.why-quote i,
.quick-contact i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 16, 0.85);
  border-radius: 6px;
  font-style: normal;
}

.why-quote h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.why-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.quick-contact {
  padding: 26px;
  background: var(--white);
}

.quick-contact p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin: 0 0 17px;
}

.quick-contact p:last-child {
  margin-bottom: 0;
}

.quick-contact i {
  width: 36px;
  height: 36px;
  border: 0;
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact strong {
  color: #0b1728;
  font-size: 14px;
}

.quick-contact span {
  margin-top: 4px;
  color: #4b586a;
  font-size: 12px;
}

.quote-request-form {
  padding: 28px;
  background: var(--white);
}

.quote-request-form .form-title h2 {
  font-size: 22px;
}

.file-drop {
  position: relative;
  min-height: 98px;
  align-content: start;
}

.file-drop input {
  position: absolute;
  inset: 27px 0 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop strong,
.file-drop em {
  display: block;
  text-align: center;
}

.file-drop strong {
  padding-top: 20px;
  color: #0b1728;
  font-size: 33px;
}

.file-drop em {
  padding: 0 14px 18px;
  color: #657184;
  border: 1px dashed #cbd5e1;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.file-drop > span {
  display: block;
}

.secure-note {
  margin: 16px 0 28px;
  text-align: center;
  color: #697586;
  font-size: 13px;
}

.quote-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding: 26px 38px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 9px;
}

.quote-whatsapp > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.whatsapp-bubble {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 27px;
  box-shadow: 0 10px 26px rgba(16, 200, 74, 0.3);
}

.quote-whatsapp h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.quote-whatsapp p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.btn-outline-green {
  min-width: 300px;
  color: #24e468;
  background: transparent;
  border: 1px solid #24e468;
  box-shadow: none;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 14;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background: rgba(6, 21, 37, 0.85);
}

.faq-hero {
  position: relative;
  min-height: 385px;
  padding-top: 76px;
  color: var(--white);
  background: #03070d;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.97), rgba(3, 7, 13, 0.72) 48%, rgba(3, 7, 13, 0.16)),
    url("assets/faq-hero.png") center / cover no-repeat;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 309px;
  flex-direction: column;
  justify-content: center;
}

.faq-hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 5.6vw, 62px);
  line-height: 1.08;
  font-weight: 900;
}

.faq-hero h1 span {
  color: var(--orange);
}

.faq-hero p {
  max-width: 440px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.faq-section {
  padding: 36px 0 30px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: start;
}

.faq-contact-card {
  padding: 28px 25px;
  color: var(--white);
  background: linear-gradient(115deg, #06182b, #071525);
  border-radius: 7px;
  box-shadow: 0 16px 42px rgba(9, 24, 42, 0.12);
}

.faq-contact-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
}

.faq-contact-card > i::before {
  font-size: 42px;
}

.faq-contact-card h2 {
  margin: 8px 0 18px;
  font-size: 18px;
}

.faq-contact-card > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

.faq-contact-list {
  display: grid;
  margin-bottom: 24px;
}

.faq-contact-list p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin: 0;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.faq-contact-list i {
  color: var(--orange);
  font-style: normal;
}

.faq-contact-list i::before {
  font-size: 26px;
}

.faq-contact-list strong,
.faq-contact-list span {
  display: block;
}

.faq-contact-list strong {
  font-size: 14px;
}

.faq-contact-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.faq-contact-card .btn {
  width: 100%;
  min-height: 48px;
  border-color: var(--orange);
  color: var(--orange);
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  box-shadow: 0 12px 32px rgba(9, 24, 42, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 13px 24px 13px 14px;
  background: transparent;
  border: 0;
  color: #0b1728;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 16, 0.35);
  border-radius: 6px;
  font-weight: 900;
}

.faq-question strong {
  font-size: 16px;
}

.faq-question em {
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 74px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: #263244;
  font-size: 14px;
  line-height: 1.8;
}

.faq-bottom-cta {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 30px;
  background: linear-gradient(90deg, rgba(255, 122, 16, 0.13), rgba(255, 122, 16, 0.04));
  border: 1px solid rgba(255, 122, 16, 0.2);
  border-radius: 8px;
}

.faq-bottom-cta i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-style: normal;
}

.faq-bottom-cta i::before {
  font-size: 50px;
}

.faq-bottom-cta h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 19px;
}

.faq-bottom-cta p {
  margin: 0;
  color: #3f4b5c;
  font-size: 14px;
}

.machine-card .machine-card-image {
  display: block;
  margin: -20px -20px 14px;
  background: #f7f9fc;
}

.machine-card .machine-card-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 14px;
}

.machine-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.machine-card-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}

.machine-card-actions .machine-quote-link {
  color: var(--white);
  background: var(--orange);
}

.empty-products {
  grid-column: 1 / -1;
  padding: 34px;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 7px;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
}

.empty-products h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.empty-products p {
  margin: 0;
  color: var(--muted);
}

.catalog-support-section {
  padding-top: 0;
}

.machine-detail-hero {
  position: relative;
  padding: 136px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.97), rgba(3, 7, 13, 0.78)),
    url("assets/products-hero.png") center / cover no-repeat;
}

.machine-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 48px;
  align-items: center;
}

.machine-model {
  display: inline-block;
  margin: 22px 0 12px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 1px;
}

.machine-detail-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
}

.machine-detail-hero p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.machine-hero-image {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.machine-hero-image img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.35));
}

.machine-detail-section {
  padding: 56px 0 60px;
  background: #fff;
}

.machine-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1fr;
  gap: 44px;
  align-items: start;
}

.machine-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.machine-gallery figure {
  margin: 0;
  padding: 14px;
  background: #f7f9fc;
  border: 1px solid #edf1f5;
  border-radius: 7px;
}

.machine-gallery img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.machine-detail-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.machine-detail-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.machine-detail-copy p {
  margin: 0;
  color: #3f4b5c;
  line-height: 1.85;
}

.machine-specs {
  margin-top: 58px;
}

.machine-specs table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(9, 24, 42, 0.06);
}

.machine-specs th,
.machine-specs td {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.machine-specs th {
  width: 32%;
  color: var(--ink);
  background: #f7f9fc;
}

.machine-specs tr:last-child th,
.machine-specs tr:last-child td {
  border-bottom: 0;
}

.machine-advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.machine-advantages article {
  min-height: 130px;
  padding: 24px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 7px;
  box-shadow: 0 14px 32px rgba(9, 24, 42, 0.06);
}

.machine-advantages i {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-style: normal;
}

.machine-advantages h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.machine-video,
.machine-faq,
.machine-detail-cta {
  margin-top: 52px;
}

.machine-video-frame {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #07111f;
  border-radius: 8px;
  overflow: hidden;
}

.machine-video-frame iframe {
  width: 100%;
  min-height: 420px;
}

.machine-detail-cta {
  align-items: center;
  padding: 34px;
}

.machine-detail-cta > .btn {
  margin: 0 34px;
}

@media (max-width: 1040px) {
  .header-contact {
    display: none;
  }

  .header-quote {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .video-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
    padding: 0 0 86px;
  }

  .delivery-badge {
    right: 20px;
  }

  .product-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-panel {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 0;
  }

  .stat-panel div:nth-child(3) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout,
  .product-cta,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .principle-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-service-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .product-service-bar div:nth-child(2n) {
    border-right: 0;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .about-stats div:nth-child(2n) {
    border-right: 0;
  }

  .about-help {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
  }

  .kvkk-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kvkk-contact-grid div:nth-child(2n) {
    border-right: 0;
  }

  .gallery-toolbar,
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-grid figure,
  .gallery-grid figure.wide {
    grid-column: span 3;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-page-layout {
    grid-template-columns: 1fr;
  }

  .quote-whatsapp {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-bottom-cta {
    grid-template-columns: 64px 1fr;
  }

  .faq-bottom-cta .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .machine-detail-hero-grid,
  .machine-detail-grid {
    grid-template-columns: 1fr;
  }

  .machine-advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(3, 10, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-bg {
    inset: 66px 0 0;
  }

  .hero-grid {
    min-height: 0;
    padding: 70px 0 0;
    gap: 18px;
  }

  .hero p {
    font-size: 15px;
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quote-chip {
    right: 0;
  }

  .delivery-badge {
    position: static;
    width: fit-content;
    margin: -40px auto 0;
  }

  .stat-panel {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 20px;
  }

  .stat-panel div,
  .stat-panel div:nth-child(3) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .stat-panel div:last-child {
    border-bottom: 0;
  }

  .section,
  .video-section {
    padding: 56px 0;
  }

  .product-grid,
  .advantage-grid,
  .quote-form,
  .mini-features,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .video-grid {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    min-height: 225px;
    padding-top: 66px;
  }

  .page-hero-bg {
    inset: 66px 0 0;
  }

  .contact-hero {
    min-height: 320px;
    padding-top: 66px;
  }

  .contact-hero-bg {
    inset: 66px 0 0;
  }

  .policy-hero {
    min-height: 330px;
    padding-top: 66px;
  }

  .policy-hero-bg {
    inset: 66px 0 0;
  }

  .policy-hero-inner {
    min-height: 264px;
  }

  .kvkk-hero {
    min-height: 335px;
    padding-top: 66px;
  }

  .kvkk-hero-bg {
    inset: 66px 0 0;
  }

  .gallery-hero {
    min-height: 315px;
    padding-top: 66px;
  }

  .gallery-hero-bg {
    inset: 66px 0 0;
  }

  .gallery-hero-inner {
    min-height: 249px;
  }

  .kvkk-hero-inner {
    min-height: 269px;
  }

  .contact-hero-inner {
    min-height: 254px;
  }

  .page-hero-inner {
    min-height: 159px;
  }

  .catalog-section {
    padding-top: 40px;
  }

  .catalog-head {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .catalog-head select {
    width: 100%;
  }

  .catalog-grid,
  .product-service-bar {
    grid-template-columns: 1fr;
  }

  .product-service-bar div,
  .product-service-bar div:nth-child(2n) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .product-service-bar div:last-child {
    border-bottom: 0;
  }

  .product-cta-copy {
    padding: 30px 24px;
  }

  .about-section {
    padding-top: 46px;
  }

  .about-intro {
    gap: 34px;
  }

  .about-stats,
  .principle-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-stats div,
  .about-stats div:nth-child(2n) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }

  .principles {
    padding: 54px 0 38px;
  }

  .about-help {
    padding: 26px 22px;
  }

  .about-help div {
    align-items: flex-start;
  }

  .about-help strong {
    font-size: 22px;
  }

  .about-help .btn {
    width: 100%;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form .btn {
    width: 100%;
  }

  .map-section,
  .map-inner {
    min-height: 420px;
  }

  .map-card {
    position: relative;
    top: 18px;
  }

  .map-pin {
    left: 54%;
    top: 68%;
  }

  .policy-content article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kvkk-content > article,
  .kvkk-warning {
    grid-template-columns: 1fr;
  }

  .kvkk-contact-grid {
    grid-template-columns: 1fr;
  }

  .kvkk-contact-grid div,
  .kvkk-contact-grid div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .kvkk-contact-grid div:last-child {
    border-bottom: 0;
  }

  .gallery-filters,
  .gallery-filters button,
  .download-btn,
  .gallery-cta span,
  .gallery-cta .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid figure,
  .gallery-grid figure.wide,
  .gallery-grid figure.tall {
    grid-column: 1;
    grid-row: span 1;
  }

  .gallery-cta {
    padding: 24px 20px;
  }

  .gallery-cta div,
  .gallery-cta span {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-hero {
    min-height: 330px;
    padding-top: 66px;
  }

  .blog-hero-bg {
    inset: 66px 0 0;
  }

  .blog-hero-inner {
    min-height: 264px;
  }

  .blog-main {
    grid-template-columns: 1fr;
  }

  .quote-page-hero {
    min-height: 350px;
    padding-top: 66px;
  }

  .quote-page-hero-bg {
    inset: 66px 0 0;
  }

  .quote-page-hero-inner {
    min-height: 284px;
  }

  .quote-request-form {
    padding: 22px 18px;
  }

  .why-quote article,
  .quick-contact p,
  .quote-whatsapp > div {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-whatsapp,
  .quote-whatsapp .btn {
    width: 100%;
  }

  .btn-outline-green {
    min-width: 0;
  }

  .faq-hero {
    min-height: 350px;
    padding-top: 66px;
  }

  .faq-hero-bg {
    inset: 66px 0 0;
  }

  .faq-hero-inner {
    min-height: 284px;
  }

  .faq-question {
    grid-template-columns: 38px 1fr 20px;
    gap: 12px;
    padding-right: 16px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-bottom-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .machine-detail-hero {
    padding: 104px 0 44px;
  }

  .machine-gallery,
  .machine-advantages {
    grid-template-columns: 1fr;
  }

  .machine-specs th,
  .machine-specs td {
    display: block;
    width: 100%;
  }

  .machine-specs th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .machine-specs td {
    padding-top: 6px;
  }

  .machine-video-frame iframe {
    min-height: 260px;
  }

  .machine-detail-cta {
    grid-template-columns: 1fr;
  }

  .machine-detail-cta > .btn {
    width: calc(100% - 40px);
    margin: 0 20px 24px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
}
