/* ============================================================
   HEVTA Website — Shared Component Styles
   ============================================================ */

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Thai', 'Barlow', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8E8E8; transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo-tagline {
  color: #000; font-size: 14px; font-weight: 300; letter-spacing: 1.5px;
  text-transform: uppercase; padding-left: 14px;
  border-left: 1px solid #E8E8E8; margin-left: 14px;
  line-height: 1.4; white-space: nowrap;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links li { position: relative; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,0.12); min-width: 240px;
  padding: 10px 0; opacity: 0; visibility: hidden; transition: opacity 0.15s, transform 0.15s;
  z-index: 300;
}
.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: block; padding: 10px 22px; font-size: 13px; font-weight: 300; letter-spacing: 0.5px;
  text-transform: none; color: #3A3A3A; white-space: nowrap; transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: #E2231A; background: #F5F5F5; }
.nav-dropdown a.dd-parent { font-weight: 500; color: #000; }
.nav-dropdown a.dd-sub { padding: 8px 22px 8px 40px; font-size: 12.5px; color: #6B6B6B; position: relative; }
.nav-dropdown a.dd-sub::before { content: ''; position: absolute; left: 24px; top: 50%; width: 6px; height: 1px; background: #D8D8D8; }
.nav-dropdown-sep { height: 1px; background: #F0F0F0; margin: 8px 0; }
.nav-links a {
  font-size: 14px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  color: #3A3A3A; text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #E2231A; text-decoration: none; }
.nav-cta {
  background: #E2231A !important; color: #fff !important;
  padding: 10px 22px; letter-spacing: 1.5px !important;
}
.nav-cta:hover { background: #c41d15 !important; }
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 24px; height: 2px; background: #000;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-mobile-btn.open span:first-child  { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:last-child   { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 199; padding: 40px 24px;
  flex-direction: column; gap: 0; overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 20px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  color: #3A3A3A; text-decoration: none; border-bottom: 1px solid #E8E8E8;
  padding: 20px 0; transition: color 0.2s;
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: #E2231A; }
.nav-mobile-menu .nav-cta { background: #E2231A !important; color: #fff !important; padding: 20px 0 !important; text-align: center; margin-top: 16px; border-bottom: none; }

/* ── MARQUEE ── */
.marquee-wrap { background: #E2231A; padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 28s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 14px;
  letter-spacing: 4px; text-transform: uppercase; color: #fff; padding: 0 28px; opacity: 0.9;
}
.marquee-sep { color: rgba(255,255,255,0.3); font-size: 14px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: #E2231A; color: #fff;
  font-family: 'Noto Sans Thai', 'Barlow', sans-serif;
  font-size: 14px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  padding: 15px 32px; border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #c41d15; transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-ghost-white {
  display: inline-block; color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 300;
  letter-spacing: 2px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { color: #fff; border-color: #fff; text-decoration: none; }
.btn-ghost-dark {
  display: inline-block; color: #000; font-size: 14px; font-weight: 300; letter-spacing: 2px;
  text-decoration: none; border-bottom: 1px solid #E2231A; padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost-dark:hover { color: #E2231A; text-decoration: none; }
.btn-outline-white {
  display: inline-block; color: #fff; border: 1px solid rgba(255,255,255,0.35);
  font-size: 14px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 28px; text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }

/* ── SECTION ── */
.section { padding: 100px 60px; }
.section-eyebrow {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: #E2231A; margin-bottom: 14px;
}
.section-title {
  font-family: 'Barlow', 'Noto Sans Thai', sans-serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px); line-height: 1.05;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px;
}
.section-link {
  font-size: 14px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  color: #000; text-decoration: none; border-bottom: 1px solid #E2231A;
  padding-bottom: 2px; white-space: nowrap; transition: color 0.2s;
}
.section-link:hover { color: #E2231A; text-decoration: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #000; padding: 100px 60px 80px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: attr(data-bg-text);
  position: absolute; right: -10px; bottom: -30px;
  font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 200px;
  letter-spacing: -8px; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.page-hero-eyebrow {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: #E2231A; margin-bottom: 20px;
}
.page-hero-title {
  font-family: 'Barlow', 'Noto Sans Thai', sans-serif; font-weight: 300;
  font-size: clamp(36px, 5vw, 68px); color: #fff; letter-spacing: 2px;
  text-transform: uppercase; line-height: 1.0; max-width: 820px;
}
.page-hero-title span { color: #E2231A; }
.page-hero-desc {
  color: rgba(255,255,255,0.4); font-size: 16px; font-weight: 300;
  line-height: 2; max-width: 520px; margin-top: 24px;
}
.breadcrumbs {
  display: flex; gap: 8px; align-items: center; margin-top: 40px;
  font-size: 14px; font-weight: 300; letter-spacing: 1px;
}
.breadcrumbs a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: rgba(255,255,255,0.7); }
.breadcrumbs .sep { color: rgba(255,255,255,0.15); }
.breadcrumbs .current { color: rgba(255,255,255,0.7); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px; background: #E8E8E8;
}
.product-card {
  background: #fff; padding: 24px 32px; position: relative;
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: background 0.25s;
}
.product-card:hover { background: #F5F5F5; }
.product-card:focus, .product-card:focus-visible { outline: none; }
.product-icon { width: 44px; height: 44px; margin-bottom: 28px; }
.product-name { font-size: 16px; font-weight: 600; color: #000; margin-bottom: 8px; white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; min-height: calc(1.3em * 2); }
.product-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: #6B6B6B; margin-bottom: 18px; }
.product-tag {
  display: inline-block; background: #E2231A; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; padding: 3px 9px;
  border-radius: 4px;
  margin-top: auto; align-self: flex-start;
}
.product-arrow {
  position: absolute; top: 40px; right: 40px;
  font-size: 20px; color: #E8E8E8; transition: transform 0.2s, color 0.2s;
}
.product-card:hover .product-arrow { color: #E2231A; transform: translate(4px, -4px); }

/* ── DARK SECTION ── */
.dark-section { background: #0d0d0d; padding: 100px 60px; }
.dark-section .section-title { color: #fff; }
.dark-section .section-eyebrow { color: #E2231A; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; }
.why-item { border-top: 2px solid rgba(255,255,255,0.08); padding-top: 24px; }
.why-item:first-child { border-color: #E2231A; }
.why-num {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 40px;
  color: #fff; letter-spacing: 1px; margin-bottom: 10px; line-height: 1;
}
.why-num sup { font-size: 22px; color: #E2231A; }
.why-label { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.why-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.9; }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px; background: #E8E8E8; margin-top: 60px;
}
.process-step { background: #fff; padding: 36px 28px; position: relative; }
.process-num {
  font-family: 'Barlow', sans-serif; font-weight: 300; font-size: 52px;
  color: rgba(0,0,0,0.05); line-height: 1; margin-bottom: 20px;
}
.process-name { font-size: 14px; font-weight: 600; color: #000; margin-bottom: 8px; }
.process-desc { font-size: 14px; font-weight: 300; color: #6B6B6B; line-height: 1.8; }
.process-connector {
  position: absolute; top: 36px; right: -12px; z-index: 1;
  color: #E2231A; font-size: 18px; font-family: 'Barlow', sans-serif; font-weight: 300;
}
.process-step:last-child .process-connector { display: none; }

/* ── PORTFOLIO STRIP ── */
.portfolio-strip { background: #F5F5F5; overflow: hidden; }
.portfolio-strip-header { padding: 60px 60px 40px; }
.portfolio-strip-inner { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; padding: 0 60px 60px; }
.portfolio-strip-inner::-webkit-scrollbar { display: none; }
.portfolio-card {
  flex: 0 0 360px; height: 260px; position: relative;
  overflow: hidden; background: #E8E8E8;
}
.portfolio-card-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.portfolio-card-ph-label {
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.12); font-family: 'Barlow', sans-serif;
}
.portfolio-card-info { display: none; }
.portfolio-card-cat { display: none; }
.portfolio-card-name { display: none; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #E8E8E8; margin-top: 60px;
}
.testimonial-card { background: #fff; padding: 40px; }
.testimonial-stars { color: #E2231A; font-size: 14px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-quote { font-size: 15px; font-weight: 300; line-height: 2; color: #3A3A3A; margin-bottom: 28px; }
.testimonial-author { font-size: 14px; font-weight: 500; letter-spacing: 1px; color: #000; }
.testimonial-role { font-size: 14px; font-weight: 300; color: #6B6B6B; margin-top: 4px; letter-spacing: 1px; }

/* ── ARTICLES ── */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #E8E8E8; margin-top: 60px;
}
.article-card {
  background: #fff; padding: 40px; text-decoration: none; display: block; transition: background 0.25s;
}
.article-card:hover { background: #F5F5F5; }
.article-cat {
  display: inline-block; background: #E2231A; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; padding: 3px 9px; margin-bottom: 18px;
}
.article-title { font-size: 17px; font-weight: 500; line-height: 1.55; color: #000; margin-bottom: 12px; }
.article-excerpt { font-size: 14px; font-weight: 300; line-height: 1.9; color: #6B6B6B; margin-bottom: 24px; }
.article-meta { font-size: 14px; font-weight: 300; letter-spacing: 1px; color: #C0C0C0; }

/* ── FAQ ── */
.faq-list { margin-top: 48px; border-top: 1px solid #E8E8E8; }
.faq-item { border-bottom: 1px solid #E8E8E8; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 400;
  color: #000; user-select: none; gap: 24px; list-style: none;
  transition: color 0.2s;
}
.faq-question:hover { color: #E2231A; }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid #E8E8E8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, border-color 0.2s, background 0.2s;
  font-size: 14px; color: #6B6B6B; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: #E2231A; background: #E2231A; color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { font-size: 15px; font-weight: 300; line-height: 1.9; color: #6B6B6B; padding-bottom: 24px; }

/* ── CTA SECTION ── */
.cta-section { background: #000; padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: 'HEVTA'; position: absolute;
  font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 260px;
  letter-spacing: -12px; color: rgba(255,255,255,0.02);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; line-height: 1;
}
.cta-eyebrow {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: #E2231A; margin-bottom: 20px;
}
.cta-title {
  font-family: 'Barlow', 'Noto Sans Thai', sans-serif; font-weight: 300;
  font-size: clamp(32px, 4vw, 58px); color: #fff; letter-spacing: 2px;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
}
.cta-title span { color: #E2231A; }
.cta-desc { color: rgba(255,255,255,0.4); font-size: 16px; font-weight: 300; line-height: 1.9; max-width: 480px; margin: 0 auto 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ── MINI FOOTER ── */
.site-footer-mini { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 60px; }
.footer-mini-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-mini-logo { height: 28px; opacity: 0.9; }
.footer-mini-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-mini-nav a { font-size: 14px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-mini-nav a:hover { color: #fff; }
.footer-mini-copy { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 1px; white-space: nowrap; }
.footer-mini-copy .red { color: #E2231A; }
@media (max-width: 768px) {
  .site-footer-mini { padding: 24px; }
  .footer-mini-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ── FOOTER ── */
.site-footer { background: #0d0d0d; padding: 72px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { height: 36px; margin-bottom: 20px; }
.footer-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 2.0; }
.footer-col-title {
  font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: #E2231A; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 12px;
  letter-spacing: 0.5px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-copy .red { color: #E2231A; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── LANG TOGGLE ── */
.lang-toggle {
  background: none; border: 1px solid rgba(0,0,0,0.18);
  color: #3A3A3A; font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 2px;
  padding: 7px 12px; cursor: pointer; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s; white-space: nowrap;
}
.lang-toggle:hover { border-color: #E2231A; color: #E2231A; }
.lang-toggle.lang-en { background: #E2231A; color: #fff; border-color: #E2231A; }
@media (max-width: 768px) { .lang-toggle { display: none; } }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 680px; }
.cookie-text a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: #E2231A; color: #fff; font-size: 14px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; padding: 10px 20px; border: none; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: #c41d15; }
.cookie-manage { background: transparent; color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 300; letter-spacing: 1px; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; transition: all 0.2s; }
.cookie-manage:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

/* ── CONTACT FORM ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 14px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: #3A3A3A; }
.form-input, .form-select, .form-textarea {
  background: #F5F5F5; border: 1px solid #E8E8E8; padding: 14px 16px;
  font-family: 'Noto Sans Thai', 'Barlow', sans-serif; font-size: 15px; font-weight: 300;
  color: #000; outline: none; border-radius: 0; transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #E2231A; background: #fff; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .dark-section { padding: 80px 40px; }
  .page-hero { padding: 120px 40px 70px; }
  .site-nav { padding: 0 40px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-section { padding: 80px 40px; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .section { padding: 64px 24px; }
  .dark-section { padding: 64px 24px; }
  .page-hero { padding: 100px 24px 56px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 64px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .portfolio-strip-header { padding: 48px 24px 32px; }
  .portfolio-strip-inner { padding: 0 24px 48px; }
}
