/* ═══════════════════════════════════════════
   SUNGUARD AWNINGS — STYLESHEET
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-primary:   #d46b08;
  --clr-primary-d: #b85a05;
  --clr-primary-l: #fdebd0;
  --clr-dark:      #111827;
  --clr-mid:       #374151;
  --clr-muted:     #6b7280;
  --clr-border:    #e5e7eb;
  --clr-bg:        #ffffff;
  --clr-bg2:       #f9fafb;
  --clr-bg3:       #f3f4f6;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;

  --nav-h: 68px;
  --container: 1160px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--clr-mid);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Accessibility ── */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; color: var(--clr-dark); }
h1 { font-size: clamp(1.8rem, 5vw, 3.6rem); font-family: var(--font-display); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-family: var(--font-display); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--clr-muted); }
a  { color: var(--clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,107,8,.35);
  text-decoration: none;
}
.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  text-decoration: none;
}
.btn--lg { padding: .9rem 2.2rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-dark);
  text-decoration: none;
}
.nav__logo:hover { text-decoration: none; }
.logo-icon {
  font-size: 1.6rem;
  color: var(--clr-primary);
  line-height: 1;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-mid);
  transition: color .2s;
}
.nav__link:hover { color: var(--clr-primary); text-decoration: none; }
.nav__cta {
  background: var(--clr-primary);
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav__cta:hover {
  background: var(--clr-primary-d);
  text-decoration: none;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0f1f2e 0%, #1a3a2a 50%, #0f1f2e 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--clr-primary) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2d6a4f 0%, transparent 70%);
  bottom: -150px; left: 10%;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 5rem;
  max-width: 820px;
  margin-inline: auto;
}
.hero__badge {
  display: inline-block;
  background: rgba(212,107,8,.2);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,.3);
  padding: .35rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,.9);
}
.stat { text-align: center; padding: .25rem .75rem; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.stat span { font-size: .8rem; color: rgba(255,255,255,.6); }
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust-bar {
  background: var(--clr-dark);
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg { color: var(--clr-primary); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.section { padding-block: var(--section-gap); }
.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section__label {
  display: inline-block;
  color: var(--clr-primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section__title { margin-bottom: 1rem; }
.section__desc { color: var(--clr-muted); font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.products__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .products__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products__grid--4 { grid-template-columns: 1fr; }
  .product-card__photo { height: 160px; min-height: 160px; }
}
.product-card {
  position: relative;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--featured {
  border-color: var(--clr-primary);
  background: linear-gradient(160deg, #fff 60%, #fdebd0 100%);
}
.product-card__ribbon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--clr-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 99px;
}
.product-card__icon { color: var(--clr-primary); }
.product-card__photo {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.25rem -2rem;
  height: 200px;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #e8e8e8;
}
.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__series {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-top: .25rem;
}
.product-card h3 { margin-top: .1rem; font-size: 1rem; }
.product-card p { font-size: .95rem; flex: 1; }
.product-card__features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--clr-mid);
}
.product-card__features li::before {
  content: "✓";
  color: var(--clr-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing { background: var(--clr-bg2); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pricing__grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-card--featured {
  border-color: var(--clr-primary);
  background: linear-gradient(160deg, #fff 60%, #fdebd0 100%);
}
.pricing-card__series {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.pricing-card__sub { font-size: .85rem; color: var(--clr-mid); }
.pricing-card__price { font-size: 1.5rem; font-weight: 700; color: var(--clr-dark); }
.pricing-card__price strong { color: var(--clr-primary); }
.pricing__note {
  text-align: center;
  font-size: .9rem;
  color: var(--clr-mid);
  margin-bottom: 3rem;
}
.pricing__factors {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.pricing__factors h3 { margin-bottom: 1rem; }
.pricing__factors li {
  padding: .4rem 0;
  color: var(--clr-mid);
  border-bottom: 1px solid var(--clr-border);
}
.pricing__factors li::before { content: "→ "; color: var(--clr-primary); }
.pricing__guide-title { text-align: center; margin-bottom: 1.5rem; }
.pricing__guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .pricing__guide { grid-template-columns: 1fr; } }
.pricing-guide-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-guide-card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.pricing-guide-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--clr-dark); }
.pricing-guide-card__best { font-size: .85rem; font-weight: 600; color: var(--clr-mid); margin-top: auto; }
.pricing__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.pricing__cta p { font-size: 1.1rem; color: var(--clr-dark); font-weight: 500; }

/* ═══════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════ */
.why-us { background: var(--clr-bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  transition: box-shadow .25s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.why-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { font-size: .92rem; }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-item {
  background: var(--bg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process { background: var(--clr-dark); }
.process .section__label { color: #f59e0b; }
.process .section__title { color: #fff; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  counter-reset: steps;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), #f59e0b);
  pointer-events: none;
}
.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.process-step__num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.process-step h3 { color: #fff; font-size: 1rem; }
.process-step p  { color: rgba(255,255,255,.55); font-size: .88rem; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
/* HIDDEN: no reviews yet — remove this line to restore */
.testimonials { display: none; }
.nav__link[href="#testimonials"] { display: none; }
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .95rem;
  color: var(--clr-muted);
}
.rating-bar strong { font-size: 1.25rem; color: var(--clr-dark); }
.stars { color: #f59e0b; letter-spacing: .05em; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.t-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .25s;
}
.t-card:hover { box-shadow: var(--shadow); }
.t-card--featured {
  border-color: var(--clr-primary);
  background: linear-gradient(160deg, #fff, #fdebd0);
}
.t-card p {
  font-size: .95rem;
  font-style: italic;
  color: var(--clr-mid);
  flex: 1;
}
.t-card footer { display: flex; flex-direction: column; gap: .2rem; }
.t-card footer strong { font-size: .95rem; color: var(--clr-dark); }
.t-card footer span  { font-size: .8rem; color: var(--clr-muted); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { background: var(--clr-bg); }
.faq__wrap { max-width: 760px; }
.faq__list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--clr-primary); }
.faq-item__q {
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: .98rem;
  color: var(--clr-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-item__q::after {
  content: '−';
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__a {
  padding: 0 1.5rem 1.2rem;
  border-top: 1px solid var(--clr-border);
}
.faq-item__a p { font-size: .93rem; padding-top: .75rem; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact { background: var(--clr-bg2); }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact__info { padding-top: .5rem; }
.contact__info .section__title { margin-bottom: 1rem; }
.contact__info p { margin-bottom: 1.5rem; font-size: .95rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--clr-mid);
  font-size: .92rem;
  text-decoration: none;
  transition: color .2s;
}
.contact-detail:hover { color: var(--clr-primary); text-decoration: none; }
.contact-detail svg { color: var(--clr-primary); flex-shrink: 0; }
.contact-detail--whatsapp { color: #25d366; }
.contact-detail--whatsapp svg { color: #25d366; }
.contact-detail--whatsapp:hover { color: #1ebe5d; }

/* Form */
.contact__form {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--clr-dark);
  background: var(--clr-bg);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(212,107,8,.15);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #e53e3e;
}
.field-error { font-size: .8rem; color: #e53e3e; min-height: 1.2em; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--clr-muted);
  margin-top: .75rem;
}
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #2d6a4f;
}
.form-success svg { color: #2d6a4f; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.65);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .nav__logo { color: #fff; margin-bottom: 1rem; }
.footer__brand p { font-size: .88rem; max-width: 280px; }
.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--clr-primary); color: #fff; }
.footer__col h3 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color .2s;
}
.footer__col a:hover { color: var(--clr-primary); text-decoration: none; }

.footer__bottom { padding-block: 1.25rem; }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .82rem; }
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  transition: color .2s;
}
.footer__bottom-links a:hover { color: var(--clr-primary); }

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 90;
}
.back-to-top:hover {
  background: var(--clr-primary-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   FLOATING CTA BAR
   ═══════════════════════════════════════════ */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  background: var(--clr-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.cta-bar__call,
.cta-bar__whatsapp,
.cta-bar__quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1rem .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.cta-bar__call {
  color: #fff;
  background: #1a3a2a;
}
.cta-bar__call:hover { background: #22543d; text-decoration: none; }

.cta-bar__whatsapp {
  color: #fff;
  background: #25D366;
}
.cta-bar__whatsapp:hover { background: #1ebe57; text-decoration: none; }

.cta-bar__quote {
  color: #fff;
  background: var(--clr-primary);
}
.cta-bar__quote:hover { background: var(--clr-primary-d); text-decoration: none; }

/* Push footer above CTA bar */
body { padding-bottom: 60px; }

/* Hide CTA bar on desktop — show full contact section instead */
@media (min-width: 769px) {
  .cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  /* Nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--clr-bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { padding: .9rem 2rem; width: 100%; }
  .nav__cta { margin: .5rem 2rem; width: calc(100% - 4rem); text-align: center; }

  /* Hero */
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__stats { gap: .5rem; }
  .stat-sep { display: none; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item { height: 180px; }

  /* Process */
  .process__steps { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 160px; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .trust-bar__inner { gap: 1rem; }
  .hero__stats { flex-direction: column; }
  .contact__form { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
