/* ================================================
   DARRER D.O.O. - Custom Styles for Avada Child
   ================================================ */

/* --- CSS VARIABLES --- */
:root {
  --darrer-red:    #c0392b;
  --darrer-red-dk: #a93226;
  --darrer-red-lt: #fce9e8;
  --darrer-ink:    #1a1a1a;
  --darrer-mid:    #5a5a5a;
  --darrer-light:  #999;
  --darrer-line:   #e5e5e5;
  --darrer-bg:     #ffffff;
  --darrer-bg2:    #f8f8f8;
  --darrer-sans: 'Fira Sans', 'Segoe UI', Verdana, sans-serif;
}

/* --- GLOBAL RESETS for Darrer pages --- */
body.page-template-front-page-darrer,
body.darrer-front-page {
  font-family: var(--darrer-sans);
  color: var(--darrer-ink);
  overflow-x: hidden;
}

body.darrer-front-page *,
body.darrer-front-page *::before,
body.darrer-front-page *::after {
  box-sizing: border-box;
}

/* Hide default Avada header/footer on Darrer pages */
body.darrer-front-page .fusion-header-wrapper,
body.darrer-front-page .fusion-header,
body.darrer-front-page .fusion-secondary-header,
body.darrer-front-page .fusion-mobile-menu-design,
body.darrer-front-page .fusion-footer,
body.darrer-front-page .fusion-footer-widget-area,
body.darrer-front-page .fusion-footer-copyright-area,
body.darrer-front-page #sliders-container,
body.darrer-front-page .avada-page-titlebar-wrapper,
body.darrer-front-page .fusion-page-title-bar,
body.darrer-front-page .fusion-sliding-bar-wrapper,
body.darrer-front-page .fusion-tb-header,
body.darrer-front-page .fusion-tb-footer {
  display: none !important;
}

body.darrer-front-page #main,
body.darrer-front-page #content,
body.darrer-front-page .fusion-row,
body.darrer-front-page #boxed-wrapper,
body.darrer-front-page #wrapper,
body.darrer-front-page .fusion-sides-frame {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.darrer-front-page .post-content,
body.darrer-front-page .fusion-fullwidth {
  padding: 0 !important;
  margin: 0 !important;
}

body.darrer-front-page #boxed-wrapper {
  background: none !important;
  box-shadow: none !important;
}

/* ================================================
   NAV
   ================================================ */
.darrer-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100010;
  height: 74px; padding: 0 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-bottom: 1px solid var(--darrer-line);
  transition: box-shadow .3s;
}
.darrer-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }
.darrer-nav-logo img { height: 44px; display: block; }
.darrer-nav-links { display: flex; gap: 44px; list-style: none; margin: 0; padding: 0; }
.darrer-nav-links a {
  font-size: 15px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--darrer-mid);
  text-decoration: none; transition: color .2s;
}
.darrer-nav-links a:hover { color: var(--darrer-red); }
.darrer-nav-cta {
  font-size: 15px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; background: var(--darrer-red);
  padding: 13px 32px; border-radius: 2px; text-decoration: none; transition: background .2s;
}
.darrer-nav-cta:hover { background: var(--darrer-red-dk); color: #fff; }

/* HAMBURGER */
.darrer-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 100010; }
.darrer-burger span { display: block; width: 26px; height: 2px; background: var(--darrer-ink); margin: 6px 0; border-radius: 2px; transition: transform .3s, opacity .3s; }
.darrer-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.darrer-burger.open span:nth-child(2) { opacity: 0; }
.darrer-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* MOBILE MENU */
.darrer-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 100005;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; transition: opacity .3s;
}
.darrer-mobile-menu.open { display: flex; opacity: 1; }
.darrer-mobile-menu a {
  font-size: 22px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--darrer-ink); text-decoration: none; transition: color .2s;
}
.darrer-mobile-menu a:hover { color: var(--darrer-red); }
.darrer-mobile-menu .darrer-nav-cta { margin-top: 12px; font-size: 16px; }

/* ================================================
   HERO
   ================================================ */
.darrer-hero { padding-top: 74px; min-height: 100vh; display: grid; grid-template-columns: 2.5fr 2fr; }
.darrer-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; }
.darrer-hero-tag {
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--darrer-red); display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
}
.darrer-hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--darrer-red); }
.darrer-hero h1 {
  font-size: clamp(48px, 5.5vw, 88px); font-weight: 700; line-height: 1.0;
  letter-spacing: -.02em; margin-bottom: 30px; text-transform: uppercase;
}
.darrer-hero h1 em { font-style: normal; color: var(--darrer-red); }
.darrer-hero-desc {
  font-size: 20px; line-height: 1.85; color: var(--darrer-mid);
  font-weight: 300; max-width: 520px; margin-bottom: 52px;
}
.darrer-hero-btns { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Buttons */
.darrer-btn-primary {
  font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--darrer-red); padding: 17px 42px; border-radius: 2px;
  text-decoration: none; transition: background .2s, transform .2s; display: inline-block;
}
.darrer-btn-primary:hover { background: var(--darrer-red-dk); transform: translateY(-2px); color: #fff; }
.darrer-btn-ghost {
  font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--darrer-ink); display: flex; align-items: center; gap: 10px; text-decoration: none; transition: all .2s;
}
.darrer-btn-ghost::after { content: '\2192'; font-size: 20px; }
.darrer-btn-ghost:hover { color: var(--darrer-red); gap: 18px; }

/* Hero right panel */
.darrer-hero-right { position: relative; overflow: hidden; }
.darrer-hero-logos-panel { background: #fff; display: flex; flex-direction: column; border-left: 1px solid var(--darrer-line); }
.darrer-hero-logos-inner { display: flex; flex-direction: column; padding: 40px 36px 24px; flex: 1; position: relative; }
.darrer-hero-logos-label {
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--darrer-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.darrer-hero-logos-label::before { content: ''; width: 24px; height: 2px; background: var(--darrer-line); }
.darrer-hero-logos-grid { display: block; position: relative; flex: 1; min-height: 200px; }
.darrer-hero-logo-item {
  position: absolute; display: flex; align-items: center; justify-content: center;
  padding: 14px 18px; background: rgba(255,255,255,.95); border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08); transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .3s;
  text-decoration: none; z-index: 1;
}
.darrer-hero-logo-item:hover {
  background: #fff; transform: scale(1.1) !important;
  box-shadow: 0 8px 36px rgba(192,57,43,.15); z-index: 5;
}
.darrer-hero-logo-item img { width: 100%; height: auto; object-fit: contain; display: block; filter: grayscale(0); transition: transform .3s; }
.darrer-hero-logo-item:hover img { transform: scale(1.05); }

/* Scattered logo positions */
.darrer-hero-logo-item:nth-child(1) { top: 2%; left: 0%; width: 380px; transform: rotate(-4deg); }
.darrer-hero-logo-item:nth-child(2) { top: 4%; right: 2%; left: auto; width: 330px; transform: rotate(3deg); }
.darrer-hero-logo-item:nth-child(3) { top: 28%; left: 1%; width: 385px; transform: rotate(-2deg); }
.darrer-hero-logo-item:nth-child(4) { top: 33%; right: 5%; left: auto; width: 290px; transform: rotate(5deg); }
.darrer-hero-logo-item:nth-child(5) { top: 46%; left: 2%; width: 310px; transform: rotate(-3deg); }

/* Hero badge */
.darrer-hero-badge {
  position: relative; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 3px solid var(--darrer-red); padding: 28px 36px;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
  margin-bottom: 30px;
}
.darrer-badge-num { font-size: 38px; font-weight: 700; color: var(--darrer-red); line-height: 1; margin-bottom: 4px; }
.darrer-badge-lbl { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--darrer-light); }

/* ================================================
   DIVIDER
   ================================================ */
.darrer-divider { height: 1px; background: var(--darrer-line); margin: 0 72px; }

/* ================================================
   SECTION LABEL
   ================================================ */
.darrer-section-label {
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--darrer-red); display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.darrer-section-label::before { content: ''; width: 24px; height: 2px; background: var(--darrer-red); }

/* ================================================
   ABOUT
   ================================================ */
.darrer-about { padding: 110px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.darrer-about h2 {
  font-size: clamp(28px, 2.8vw, 44px); font-weight: 700; line-height: 1.12;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: -.01em;
}
.darrer-about p { font-size: 18px; line-height: 1.9; color: var(--darrer-mid); font-weight: 300; }
.darrer-about-img-wrap { position: relative; }
.darrer-about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; display: block; }
.darrer-about-accent { position: absolute; bottom: -18px; left: -18px; width: 100px; height: 100px; background: var(--darrer-red); z-index: -1; border-radius: 2px; }

/* ================================================
   SERVICES
   ================================================ */
.darrer-services { background: var(--darrer-bg); }
.darrer-srv-header { padding: 100px 72px 72px; background: var(--darrer-bg2); border-bottom: 1px solid var(--darrer-line); }
.darrer-srv-header-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.darrer-srv-header h2 { font-size: clamp(36px, 4vw, 60px); font-weight: 700; line-height: 1.05; text-transform: uppercase; letter-spacing: -.02em; }
.darrer-srv-header h2 em { font-style: normal; color: var(--darrer-red); }
.darrer-srv-header-desc { font-size: 18px; line-height: 1.8; color: var(--darrer-mid); font-weight: 300; max-width: 100%; padding-bottom: 4px; }

.darrer-srv-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--darrer-line);
  min-height: 560px; overflow: hidden;
}
.darrer-srv-row.reverse .darrer-srv-img-wrap { order: 2; }
.darrer-srv-row.reverse .darrer-srv-content { order: 1; }

.darrer-srv-img-wrap {
  position: relative; overflow: hidden; background: var(--darrer-bg2);
  display: flex; align-items: center; justify-content: center; padding: 40px;
}
.darrer-srv-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .7s ease; max-height: 480px;
}
.darrer-srv-row:hover .darrer-srv-img { transform: scale(1.04); }
.darrer-srv-img-num {
  position: absolute; bottom: 24px; right: 28px;
  font-size: 120px; font-weight: 700; color: rgba(0,0,0,.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.darrer-srv-img-wrap::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--darrer-red);
}
.darrer-srv-row.reverse .darrer-srv-img-wrap::before { left: auto; right: 0; }

.darrer-srv-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 80px; background: #fff; transition: background .3s;
}
.darrer-srv-row:hover .darrer-srv-content { background: var(--darrer-bg2); }
.darrer-srv-cat {
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--darrer-red); display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.darrer-srv-cat::before { content: ''; width: 20px; height: 2px; background: var(--darrer-red); }
.darrer-srv-num-label { font-size: 13px; font-weight: 600; letter-spacing: .14em; color: rgba(192,57,43,.35); margin-bottom: 16px; }
.darrer-srv-title-big {
  font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 20px;
}
.darrer-srv-desc-big { font-size: 18px; line-height: 1.85; color: var(--darrer-mid); font-weight: 300; margin-bottom: 36px; max-width: 440px; }
.darrer-srv-link-big {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--darrer-red); padding: 16px 36px; border-radius: 2px;
  text-decoration: none; transition: background .2s, gap .2s, transform .2s;
  align-self: flex-start;
}
.darrer-srv-link-big::after { content: '\2192'; font-size: 18px; }
.darrer-srv-link-big:hover { background: var(--darrer-red-dk); gap: 20px; transform: translateY(-2px); color: #fff; }

/* ================================================
   BRANDS
   ================================================ */
.darrer-brands { padding: 110px 72px; background: var(--darrer-bg2); }
.darrer-brands-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; margin-bottom: 72px; }
.darrer-brands-intro h2 { font-size: clamp(30px, 3vw, 48px); font-weight: 700; line-height: 1.12; text-transform: uppercase; letter-spacing: -.01em; }
.darrer-brands-intro p { font-size: 18px; line-height: 1.8; color: var(--darrer-mid); font-weight: 300; }
.darrer-brands-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.darrer-brand-card {
  background: #fff; border: 1px solid var(--darrer-line); border-radius: 2px; overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s; position: relative;
}
.darrer-brand-card:hover { transform: translateY(-6px); box-shadow: 0 12px 52px rgba(0,0,0,.1); border-color: var(--darrer-red); }
.darrer-brand-img-wrap { overflow: hidden; background: var(--darrer-bg2); display: flex; align-items: center; justify-content: center; padding: 20px; height: 200px; }
.darrer-brand-img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; transition: transform .5s; }
.darrer-brand-card:hover .darrer-brand-img { transform: scale(1.06); }
.darrer-brand-body { padding: 20px 22px 36px; }
.darrer-brand-cat { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--darrer-red); margin-bottom: 8px; }
.darrer-brand-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: -.01em; }
.darrer-brand-desc { font-size: 15px; line-height: 1.7; color: var(--darrer-mid); font-weight: 300; }
.darrer-brand-arrow {
  position: absolute; bottom: 20px; right: 20px; width: 36px; height: 36px;
  background: var(--darrer-red); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s, transform .3s; transform: scale(.7);
}
.darrer-brand-card:hover .darrer-brand-arrow { opacity: 1; transform: scale(1); }

/* ================================================
   MANIFESTO
   ================================================ */
.darrer-manifesto {
  padding: 140px 72px; background: var(--darrer-red); text-align: center;
  position: relative; overflow: hidden;
}
.darrer-manifesto::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover;
  opacity: .06;
}
.darrer-manifesto-tag {
  font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); display: block; margin-bottom: 36px; position: relative;
}
.darrer-manifesto-q {
  font-size: clamp(24px, 3.2vw, 46px); font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.5; max-width: 840px; margin: 0 auto 56px; position: relative;
}
.darrer-manifesto-q strong { font-style: normal; font-weight: 700; }
.darrer-manifesto-btns { display: flex; gap: 20px; justify-content: center; position: relative; }
.darrer-btn-white {
  font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--darrer-red); background: #fff; padding: 16px 42px; border-radius: 2px;
  text-decoration: none; transition: all .2s;
}
.darrer-btn-white:hover { background: var(--darrer-ink); color: #fff; }
.darrer-btn-outlined {
  font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; border: 2px solid rgba(255,255,255,.4); padding: 14px 42px; border-radius: 2px;
  text-decoration: none; transition: all .2s;
}
.darrer-btn-outlined:hover { border-color: #fff; color: #fff; }

/* ================================================
   CONTACT
   ================================================ */
.darrer-contact { padding: 110px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.darrer-contact-left h2 {
  font-size: clamp(28px, 2.8vw, 44px); font-weight: 700; line-height: 1.12;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 20px;
}
.darrer-contact-left h2 em { font-style: normal; color: var(--darrer-red); }
.darrer-contact-left > p { font-size: 18px; line-height: 1.8; color: var(--darrer-mid); font-weight: 300; margin-bottom: 48px; }
.darrer-c-rows { display: flex; flex-direction: column; }
.darrer-c-row { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--darrer-line); }
.darrer-c-row:first-child { border-top: 1px solid var(--darrer-line); }
.darrer-c-ico {
  width: 44px; height: 44px; background: var(--darrer-red-lt); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.darrer-c-ico svg { width: 18px; height: 18px; }
.darrer-c-lbl { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--darrer-light); margin-bottom: 5px; }
.darrer-c-val { font-size: 17px; color: var(--darrer-ink); line-height: 1.6; }
.darrer-contact-form { background: var(--darrer-bg2); border: 1px solid var(--darrer-line); border-radius: 2px; padding: 52px; }
.darrer-f-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--darrer-mid); margin-bottom: 10px; }
.darrer-f-field {
  width: 100%; background: #fff; border: 1px solid var(--darrer-line); border-radius: 2px;
  padding: 15px 18px; font-family: var(--darrer-sans); font-size: 17px; color: var(--darrer-ink);
  outline: none; margin-bottom: 28px; transition: border-color .2s, box-shadow .2s;
}
.darrer-f-field::placeholder { color: #ccc; }
.darrer-f-field:focus { border-color: var(--darrer-red); box-shadow: 0 0 0 3px rgba(192,57,43,.08); }
textarea.darrer-f-field { resize: none; height: 110px; }
.darrer-f-submit {
  width: 100%; background: var(--darrer-red); color: #fff; border: none; border-radius: 2px;
  padding: 18px; font-family: var(--darrer-sans); font-size: 15px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s;
}
.darrer-f-submit:hover { background: var(--darrer-red-dk); transform: translateY(-2px); }

/* ================================================
   FOOTER
   ================================================ */
.darrer-footer { background: #111; padding: 90px 72px 44px; }
.darrer-foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 40px;
}
.darrer-foot-brand img { height: 46px; margin-bottom: 20px; display: block; }
.darrer-foot-brand p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.3); font-weight: 300; max-width: 260px; }
.darrer-foot-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 24px;
}
.darrer-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.darrer-foot-col ul li a { font-size: 16px; color: rgba(255,255,255,.42); text-decoration: none; font-weight: 300; transition: color .2s; }
.darrer-foot-col ul li a:hover { color: #fff; }
.darrer-foot-bottom { display: flex; justify-content: space-between; align-items: center; }
.darrer-foot-legal { font-size: 14px; color: rgba(255,255,255,.18); }
.darrer-foot-oib { font-size: 13px; color: rgba(255,255,255,.14); letter-spacing: .04em; }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.darrer-r { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.darrer-r.darrer-v { opacity: 1; transform: none; }
.darrer-d1 { transition-delay: .1s; }
.darrer-d2 { transition-delay: .22s; }
.darrer-d3 { transition-delay: .34s; }
.darrer-d4 { transition-delay: .46s; }

/* SCROLL-TO-TOP */
.darrer-scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 99998;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--darrer-red); color: #fff; border: none;
  font-size: 22px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  transform: translateY(12px);
}
.darrer-scroll-top.show { opacity: 1; pointer-events: auto; transform: none; }
.darrer-scroll-top:hover { background: var(--darrer-red-dk); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media(max-width:1100px) {
  .darrer-hero-badge { position: unset; }
  .darrer-nav { padding: 0 20px; }
  .darrer-nav-links { display: none; }
  .darrer-nav-cta.desktop-only { display: none; }
  .darrer-burger { display: block; }
  .darrer-hero { grid-template-columns: 1fr; }
  .darrer-hero-left { padding: 0px 20px 44px; }
  .darrer-hero-tag { margin-bottom: 10px; }
  .darrer-hero h1 { font-size: clamp(36px, 9vw, 60px); }
  .darrer-hero-desc { font-size: 17px; }
  .darrer-hero-right { height: auto; min-height: 0; overflow: visible; }
  .darrer-hero-logos-panel { border-left: none; border-top: 1px solid var(--darrer-line); }
  .darrer-hero-logos-inner { padding: 28px 20px 16px; flex: none; }
  .darrer-hero-badge { padding: 20px 16px; gap: 14px; }
  .darrer-badge-num { font-size: 28px; }
  .darrer-badge-lbl { font-size: 11px; }

  /* Logos grid on mobile */
  .darrer-hero-logos-grid { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .darrer-hero-logo-item,
  .darrer-hero-logo-item:nth-child(1),
  .darrer-hero-logo-item:nth-child(2),
  .darrer-hero-logo-item:nth-child(3),
  .darrer-hero-logo-item:nth-child(4),
  .darrer-hero-logo-item:nth-child(5) {
    position: relative !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    width: 100% !important; max-width: none; transform: none !important; margin: 0; padding: 10px 12px;
  }
  .darrer-hero-logo-item img { width: 100%; height: 50px; object-fit: contain; }

  .darrer-divider { margin: 0 20px; }
  .darrer-about { grid-template-columns: 1fr; padding: 64px 20px; gap: 48px; }
  .darrer-about h2 { font-size: clamp(24px, 6vw, 36px); }
  .darrer-about p { font-size: 16px; }
  .darrer-about-img-wrap { display: none; }

  .darrer-srv-header { padding: 64px 20px 48px; }
  .darrer-srv-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .darrer-srv-header h2 { font-size: clamp(28px, 7vw, 44px); }
  .darrer-srv-row { grid-template-columns: 1fr; min-height: auto; }
  .darrer-srv-row.reverse .darrer-srv-img-wrap { order: 0; }
  .darrer-srv-row.reverse .darrer-srv-content { order: 0; }
  .darrer-srv-img-wrap { height: 260px; padding: 24px; }
  .darrer-srv-content { padding: 36px 20px 44px !important; }
  .darrer-srv-title-big { font-size: clamp(22px, 5.5vw, 32px); }
  .darrer-srv-desc-big { font-size: 16px; max-width: 100%; }
  .darrer-srv-link-big { width: 100%; justify-content: center; padding: 16px 24px; }

  .darrer-brands { padding: 64px 20px; }
  .darrer-brands-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .darrer-brands-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .darrer-brand-body { padding: 16px 14px 28px; }
  .darrer-brand-name { font-size: 17px; }
  .darrer-brand-desc { font-size: 14px; }

  .darrer-manifesto { padding: 80px 20px; }
  .darrer-manifesto-q { font-size: clamp(20px, 4.5vw, 32px); }
  .darrer-manifesto-btns { flex-direction: column; align-items: center; }

  .darrer-contact { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }
  .darrer-contact-left h2 { font-size: clamp(24px, 6vw, 36px); }
  .darrer-contact-form { padding: 32px 20px; }

  .darrer-foot-top { grid-template-columns: 1fr; gap: 36px; }
  .darrer-footer { padding: 56px 20px 32px; }
  .darrer-foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .darrer-btn-primary, .darrer-btn-ghost { min-height: 48px; display: inline-flex; align-items: center; }
  .darrer-hero-btns { flex-direction: column; align-items: stretch; gap: 16px; }
  .darrer-hero-btns .darrer-btn-primary { text-align: center; justify-content: center; }
  .darrer-hero-btns .darrer-btn-ghost { justify-content: center; }
}

@media(max-width:600px) {
  .darrer-brands-grid { grid-template-columns: 1fr; }
  .darrer-hero-badge { grid-template-columns: repeat(2,1fr); }
}

/* ================================================
   GRAVITY FORMS SUBMIT BUTTON
   ================================================ */
#gform_submit_button_1 {
  width: 100%;
  background: var(--darrer-red);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 18px 42px;
  font-family: var(--darrer-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
#gform_submit_button_1:hover {
  background: var(--darrer-red-dk);
  transform: translateY(-2px);
}
