:root {
  --surface: #f4f1ea;
  --surface-soft: #ebe5da;
  --card: #fbfaf7;
  --text: #1b1d23;
  --muted: #68645c;
  --border: rgba(44, 39, 31, .14);
  --brand-red: #b11226;
  --brand-gold: #f3b23c;
  --ink: #141821;
  --shadow: 0 22px 60px rgba(54, 43, 28, .12);
}

:root[data-theme="dark"] {
  --surface: #11151d;
  --surface-soft: #171c26;
  --card: #1b2130;
  --text: #f8fafc;
  --muted: #b8c0cf;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--brand-secondary) 12%, transparent), transparent 28%),
    linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface-soft) 72%, var(--surface)));
  color: var(--text);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.muted { color: var(--muted); }

h1, h2, h3, h4, h5, h6, .eyebrow, .btn, .site-nav {
  font-family: "Outfit", system-ui, sans-serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: transform .3s ease;
  animation: headerDrop .55s cubic-bezier(.2, .8, .2, 1) both;
}


.site-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 156px;
  font-weight: 900;
}
.site-logo .logo-img {
  display: block;
  width: 154px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .18));
  transition: opacity .24s ease, transform .22s ease, filter .22s ease;
}
.site-logo .logo-img-default {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  pointer-events: none;
}
body.page-home .site-header.is-scrolled .logo-img-hero,
body.page-home .site-header.is-scrolled .logo-img-default,
body.page-home.mobile-menu-open .logo-img-default { opacity: 1; }
.site-logo:hover .logo-img { transform: translateY(-1px) scale(1.025); filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .22)); }

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px 12px 8px 18px;
  width: max-content;
  max-width: calc(100% - 40px);
  background: color-mix(in srgb, var(--card) 60%, rgba(10, 14, 22, 0.8));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled .header-inner {
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.15);
}
.site-logo {
  display: block;
  text-decoration: none;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media(max-width:480px){.page-home .hero-proof{flex-direction:column;align-items:stretch}.page-home .hero-proof span{justify-content:center}}

/* --- Article Hero --- */
.article-hero{position:relative;min-height:62vh;display:grid;align-items:end;padding:160px 40px 80px;overflow:hidden;background:#0f172a;color:#fff}
.article-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.3;filter:saturate(1.2)}
.article-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,23,42,1) 0%,rgba(15,23,42,0.4) 50%,transparent 100%)}
.article-hero .container{position:relative;z-index:1;width:min(980px,calc(100% - 40px));margin:0 auto}
.article-hero h1{max-width:880px;margin:16px 0;font-size:clamp(40px,7vw,82px);line-height:1;letter-spacing:-1px;font-weight:900}
.article-hero p{max-width:760px;color:rgba(255,255,255,.85);font-size:20px;line-height:1.75}
@media(max-width:720px){.article-hero{padding:120px 24px 54px}}  
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-weight: 900;
  border-radius: 50%; /* Make icon circular to match pill */
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff; /* Always white inside dark pill */
  letter-spacing: -0.5px;
}
.site-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75); /* Light gray for dark pill */
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: color .2s;
}
.site-nav a:hover { color: #fff; }
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.quick-call.pulse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-call.pulse-btn svg {
  width: 16px;
  height: 16px;
}
.quick-call.pulse-btn:hover {
  background: var(--brand-secondary);
  color: #000;
  border-color: var(--brand-secondary);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--brand-secondary) 30%, transparent);
  transform: translateY(-2px);
}
.icon-action,
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.theme-text {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.icon-action:hover,
.theme-toggle:hover,
.lang-link:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Default (Light Mode): Show action for switching to Dark Mode */
.theme-toggle .sun-icon,
.theme-toggle .sun-text { display: none; }

.theme-toggle .moon-icon,
.theme-toggle .moon-text { display: block; }

/* Dark Mode: Show action for switching to Light Mode */
:root[data-theme="dark"] .theme-toggle .moon-icon,
:root[data-theme="dark"] .theme-toggle .moon-text { display: none; }

:root[data-theme="dark"] .theme-toggle .sun-icon,
:root[data-theme="dark"] .theme-toggle .sun-text { display: block; }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--brand-primary), color-mix(in srgb, var(--brand-secondary) 40%, var(--brand-primary)));
  color: #fff;
  font-weight: 800;
  border: 1px solid color-mix(in srgb, var(--brand-secondary) 40%, transparent);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .25);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  text-decoration: none;
}
.btn.ghost {
  background: rgba(255, 255, 255, .08);
  color: inherit;
  border-color: currentColor;
  box-shadow: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(177, 18, 38, .32); }
.btn:active { transform: translateY(0) scale(.98); }.flag-icon { width: 24px; height: 24px; border-radius: 999px; display: inline-block; box-shadow: 0 0 0 1px var(--border); overflow: hidden; background-size: cover; background-position: center; }
.flag-us { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7410 3900'%3E%3Cpath fill='%23b22234' d='M0 0h7410v3900H0z'/%3E%3Cpath stroke='%23fff' stroke-width='300' d='M0 450h7410M0 1050h7410M0 1650h7410M0 2250h7410M0 2850h7410M0 3450h7410'/%3E%3Cpath fill='%233c3b6e' d='M0 0h2964v2100H0z'/%3E%3C/svg%3E"); }
.flag-tr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cpath fill='%23e30a17' d='M0 0h1200v800H0z'/%3E%3Ccircle cx='425' cy='400' r='170' fill='%23fff'/%3E%3Ccircle cx='470' cy='400' r='135' fill='%23e30a17'/%3E%3Cpath fill='%23fff' d='m650 400 154-50-95 130V320l95 130z'/%3E%3C/svg%3E"); }

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  color: currentColor;
  padding: 11px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.mobile-menu-toggle:hover { transform: translateY(-2px); }
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 14, 22, .42);
  backdrop-filter: blur(5px);
}

.eyebrow {
  display: inline-flex;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: softFadeUp .65s cubic-bezier(.2, .8, .2, 1) both;
}

.site-footer {
  background: color-mix(in srgb, var(--brand-primary) 12%, rgba(10, 14, 22, 0.95));
  color: #fff;
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -20px 60px color-mix(in srgb, var(--brand-primary) 15%, transparent);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--brand-primary) 25%, transparent), transparent 60%),
              radial-gradient(circle at bottom left, rgba(0,0,0,0.6), transparent 70%);
}
.site-footer > * { position: relative; z-index: 1; }
.footer-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .site-logo { margin-bottom: 24px; display: inline-block; }
.footer-brand .logo-text { color: #fff; }
.footer-slogan { font-size: 18px; line-height: 1.8; color: rgba(255, 255, 255, 0.7); max-width: 320px; }
.site-footer h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; color: #fff; }
.site-footer p,
.site-footer a { color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 1.8; }
.site-footer a { text-decoration: none; transition: all 0.2s ease; }
.site-footer a:hover { color: var(--brand-secondary); transform: translateX(4px); display: inline-block; }
.social-list { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { width: min(1200px, 100%); margin: 60px auto 0; color: rgba(255, 255, 255, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; text-align: center; font-size: 15px; }

.social-icons,
.public-socials { display: flex; flex-wrap: wrap; gap: 12px; flex-direction: row; }
.social-icons a,
.public-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}
.social-icons a:hover,
.public-socials a:hover { transform: translateY(-4px) scale(1.1); background: var(--brand-secondary); }
.social-icons img,
.public-socials img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.social-icons span,
.public-socials span,
.floating-socials span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.floating-whatsapp-container {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
}
.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-icon-wrapper svg {
  width: 32px;
  height: 32px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: var(--card);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}
.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0) scale(1);
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 210;
  width: min(860px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.cookie-banner strong { display: block; margin-bottom: 5px; font-size: 16px; }
.cookie-banner p { margin: 0; color: var(--muted); line-height: 1.55; }
.cookie-banner a { display: inline-flex; margin-top: 7px; color: var(--brand-primary); font-weight: 900; }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn {
  border: 0;
  border-radius: 9px;
  padding: 11px 14px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.cookie-btn.secondary {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--border);
}

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--border); background: var(--card); border-radius: 10px; padding: 18px; }
.faq-list summary { font-weight: 900; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-secondary) 18%, transparent);
  color: var(--brand-primary);
  transition: transform .22s ease, background .22s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: color-mix(in srgb, var(--brand-secondary) 30%, transparent); }
.faq-list p { color: var(--muted); line-height: 1.7; }
.module-card,
.blog-card,
.gallery-item,
.service-card,
.contact-info,
.contact-form,
.price-cta,
.generic-page .page-body,
.about-values article,
.about-badges span {
  color: var(--text);
}
.module-page h1 { font-size: clamp(38px, 6vw, 68px); margin: 10px 0; letter-spacing: 0; }
.module-page > p { max-width: 760px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.module-page,
.about-page,
.article-page,
.contact-page,
.generic-page { animation: pageIn .58s cubic-bezier(.2, .8, .2, 1) both; }

.service-card,
.module-card,
.blog-card,
.gallery-item,
.blog-preview-grid article,
.about-values article,
.contact-info,
.contact-form,
.price-cta,
.generic-page .page-body {
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.service-card::before,
.module-card::before,
.blog-card::before,
.gallery-item::before,
.blog-preview-grid article::before,
.about-values article::before,
.contact-form::before,
.price-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(243, 178, 60, .18), transparent 36%);
  transition: opacity .22s ease;
}
.service-card:hover,
.module-card:hover,
.blog-card:hover,
.gallery-item:hover,
.blog-preview-grid article:hover,
.about-values article:hover,
.contact-form:hover,
.price-cta:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-6px);
  border-color: color-mix(in srgb, var(--brand-secondary) 46%, var(--border));
  box-shadow: 0 24px 58px rgba(15, 23, 42, .16);
}
.service-card:hover::before,
.module-card:hover::before,
.blog-card:hover::before,
.gallery-item:hover::before,
.blog-preview-grid article:hover::before,
.about-values article:hover::before,
.contact-form:hover::before,
.price-cta:hover::before { opacity: 1; }
.blog-card img,
.gallery-item img,
.blog-preview-grid img,
.photo-mosaic img,
.about-hero img {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}
.blog-card:hover img,
.gallery-item:hover img,
.blog-preview-grid article:hover img,
.photo-mosaic img:hover,
.about-hero img:hover {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.contact-form input,
.contact-form textarea {
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(15, 23, 42, .08); }

.reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .72s cubic-bezier(.2, .8, .2, 1), transform .72s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
@keyframes softFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

@media (max-width: 1080px) {
  .desktop-only { display: none !important; }
  .header-inner { justify-content: space-between; width: calc(100% - 32px); max-width: 100%; }
  .mobile-menu-toggle { display: block; order: 1; }
  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    z-index: 90;
    width: min(360px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    color: var(--text);
    backdrop-filter: blur(18px);
    transform: translateY(-8px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  body.mobile-menu-open .site-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a { padding: 13px 12px; border-radius: 10px; color: var(--text); }
  .site-nav a:hover { background: color-mix(in srgb, var(--brand-secondary) 16%, transparent); color: var(--text); }
  .site-nav a::after { display: none; }
  .header-actions { margin-left: auto; justify-self: end; }
  .mobile-menu-toggle { z-index: 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 64px 0; }
  .header-inner { padding: 8px 12px; gap: 10px; width: calc(100% - 24px); }
  .site-logo { min-width: 126px; }
  .site-logo .logo-img { width: 126px; height: 38px; }
  .quick-call.pulse-btn { display: none; }
  .icon-action, .lang-link, .mobile-menu-toggle { width: 40px; height: 40px; }
  .header-actions { gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-socials { right: 10px; gap: 8px; }
  .floating-socials a { width: 44px; height: 44px; border-radius: 12px; }
  .floating-socials img { width: 25px; height: 25px; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}
