/* ==========================================================================
   SAM IT SOLUTION — main stylesheet
   Builds on the Apple-style theme supplied in the original coming-soon page.
   ========================================================================== */

:root{
  --bg: #fbfbfd;
  --bg-alt: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --green: #30D158;
  --red: #ff3b30;
  --line: rgba(0,0,0,0.08);
  --line-strong: rgba(0,0,0,0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 40px -18px rgba(0,0,0,0.16);
  --shadow-hover: 0 30px 60px -20px rgba(0,0,0,0.22);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }
ul{ list-style:none; margin:0; padding:0; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

::selection{ background: rgba(0,113,227,0.18); }

/* ---------------------------- Top utility bar ---------------------------- */
.topbar{
  background: var(--text);
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
}
.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
}
.topbar-inner a{ color: rgba(255,255,255,0.9); display:inline-flex; align-items:center; gap:6px; }
.topbar-inner a:hover{ color:#fff; }
.dot{ opacity:0.4; }
.topbar-status{ display:inline-flex; align-items:center; gap:6px; color: rgba(255,255,255,0.75); }
.live-dot{
  width:6px; height:6px; border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(48,209,88,0.8);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink{ 0%,100%{ opacity:1; } 50%{ opacity:0.35; } }

/* ---------------------------- Nav ---------------------------- */
.mainnav{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(251,251,253,0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 14px;
  font-weight:600;
  letter-spacing: 0.01em;
  white-space:nowrap;
}
.brand .mark{
  width:22px; height:22px;
  border-radius: 6px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue), #7c5cff);
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 26px;
  font-size: 13px;
  font-weight:500;
  color: var(--text);
}
.nav-links a{
  position:relative;
  padding: 4px 0;
  color: var(--muted);
  transition: color .2s var(--ease);
  display:inline-flex;
  align-items:center;
  gap:5px;
  white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-8px;
  height:2px; background: var(--blue); border-radius:2px;
}
.nav-ext{ font-size: 9px; opacity:0.6; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 8px;
  z-index: 61;
  position: relative;
}
.nav-toggle span{
  width: 20px; height:2px; background: var(--text); border-radius:2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:fixed;
    top: 92px; /* clears topbar (~34px) + nav (~52px) */
    left:0; right:0;
    background: var(--bg);
    flex-direction:column;
    align-items:flex-start;
    padding: 6px 20px 6px;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -12px rgba(0,0,0,0.18);
    z-index: 60;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height .3s var(--ease), opacity .25s var(--ease),
                transform .3s var(--ease), visibility 0s linear .3s, padding .3s var(--ease);
  }
  .nav-links.open{
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    padding: 14px 20px 20px;
    overflow-y: auto;
    transition: max-height .35s var(--ease), opacity .3s var(--ease),
                transform .35s var(--ease), padding .35s var(--ease);
  }
  .nav-links li{ width:100%; }
  .nav-links a{ width:100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a{ border-bottom: none; }
}

/* ---------------------------- Hero ---------------------------- */
.hero{
  position:relative;
  text-align:center;
  padding: 88px 20px 64px;
  overflow:hidden;
  perspective: 1200px;
}
.bloom{
  position:absolute;
  top:-160px; left:50%;
  width: 1200px; height: 720px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 22% 35%, rgba(0,113,227,0.20), transparent 45%),
    radial-gradient(circle at 55% 20%, rgba(255,105,180,0.16), transparent 45%),
    radial-gradient(circle at 78% 45%, rgba(255,159,10,0.16), transparent 45%),
    radial-gradient(circle at 40% 65%, rgba(52,199,89,0.14), transparent 45%);
  filter: blur(70px);
  animation: drift 14s ease-in-out infinite;
  z-index:0;
  pointer-events:none;
}
@keyframes drift{
  0%,100%{ transform: translateX(-50%) scale(1); }
  50%{ transform: translateX(-50%) scale(1.06) translateY(10px); }
}
.stage{
  position:relative;
  z-index:1;
  max-width: 800px;
  margin: 0 auto;
}
.eyebrow{
  font-size: 14px;
  font-weight:600;
  color: var(--muted);
  margin-bottom: 10px;
  opacity:0;
  animation: fadeUp 0.8s var(--ease) forwards;
}
h1, .h1{
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text);
  opacity:0;
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: 0.12s;
}
h1 .accent{
  background: linear-gradient(100deg, var(--blue), #7c5cff 60%, #ff2d55);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 30px;
  opacity:0;
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: 0.24s;
}
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}
.hero-cta{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  opacity:0; animation: fadeUp .9s var(--ease) forwards; animation-delay: .34s;
}
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight:500;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  margin-top: 26px;
  opacity:0;
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: 0.42s;
}
.status .live{
  width:7px; height:7px; border-radius:50%;
  background:#30D158; box-shadow: 0 0 6px rgba(48,209,88,0.7);
  animation: blink 2s ease-in-out infinite;
}

/* Floating 3D device stack in hero */
.device-stage{
  position:relative;
  max-width: 720px;
  margin: 48px auto 0;
  height: 220px;
  z-index:1;
  transform-style: preserve-3d;
}
.device{
  position:absolute;
  border-radius: 14px;
  background: linear-gradient(145deg,#1d1d1f,#2c2c2e);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
  animation: floaty 6s ease-in-out infinite;
}
.device.laptop{
  width: 300px; height:190px; left:50%; top:10px;
  margin-left:-150px;
  transform: rotateX(8deg) rotateY(-6deg);
  animation-delay: 0s;
}
.device.laptop::before{
  content:"";
  position:absolute; inset:10px 10px 26px 10px;
  background: linear-gradient(160deg,#0071e3 0%, #4a3aff 50%, #ff2d55 100%);
  border-radius:6px;
  opacity:0.85;
}
.device.phone{
  width: 70px; height:150px; left:50%; top:40px;
  margin-left: 160px;
  border-radius:20px;
  transform: rotateX(6deg) rotateY(10deg) translateZ(30px);
  animation-delay: .6s;
}
.device.tower{
  width: 78px; height:160px; left:50%; top:30px;
  margin-left: -240px;
  border-radius:10px;
  transform: rotateX(6deg) rotateY(-14deg) translateZ(10px);
  animation-delay: 1.1s;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0) rotateX(8deg) rotateY(-6deg); }
  50%{ transform: translateY(-14px) rotateX(8deg) rotateY(-6deg); }
}
.device.phone{ animation-name: floatyPhone; }
@keyframes floatyPhone{
  0%,100%{ transform: translateY(0) rotateX(6deg) rotateY(10deg) translateZ(30px); }
  50%{ transform: translateY(-10px) rotateX(6deg) rotateY(10deg) translateZ(30px); }
}
.device.tower{ animation-name: floatyTower; }
@keyframes floatyTower{
  0%,100%{ transform: translateY(0) rotateX(6deg) rotateY(-14deg) translateZ(10px); }
  50%{ transform: translateY(-8px) rotateX(6deg) rotateY(-14deg) translateZ(10px); }
}

@media (max-width: 700px){
  .device-stage{ display:none; }
}

.strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 10px;
  margin-top: 30px;
}
.strip span{
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------------------------- Buttons / pills ---------------------------- */
.pill{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor:pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pill.primary{ background: var(--blue); color: #fff; }
.pill.primary:hover{ background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 10px 20px -10px rgba(0,113,227,0.6); }
.pill.ghost{ background: #fff; color: var(--text); border: 1px solid var(--line); }
.pill.ghost:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px -14px rgba(0,0,0,0.25); }
.pill.small{ padding: 9px 18px; font-size: 13.5px; }
.pill.danger{ background: var(--red); color:#fff; }
.pill.danger:hover{ background:#e0362c; }
.pill:disabled{ opacity:0.5; cursor:not-allowed; transform:none !important; }

/* ---------------------------- Section shells ---------------------------- */
section.section{
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 100px;
}
.section-head{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head.left{ text-align:left; margin-left:0; }
.section-head .eyebrow{ opacity:1; animation:none; }
.section-head h2{
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
}
.section-head p{ font-size: 16px; color: var(--muted); margin: 0; }
.section-foot{ text-align:center; margin-top: 40px; }

/* Reveal-on-scroll */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------------------------- Category grid ---------------------------- */
.cat-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 22px 26px;
  text-align:center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.cat-card:hover{ box-shadow: var(--shadow-hover); border-color: rgba(0,0,0,0.04); }
.cat-card .icon{
  width: 58px; height:58px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  color:#fff;
  transform: translateZ(30px);
}
.cat-card.laptops .icon{ background: linear-gradient(135deg,#8e8e93,#1d1d1f); }
.cat-card.desktops .icon{ background: linear-gradient(135deg,#0071e3,#5ac8fa); }
.cat-card.accessories .icon{ background: linear-gradient(135deg,#ff9f0a,#ff5e3a); }
.cat-card.service .icon{ background: linear-gradient(135deg,#34c759,#0a7d3c); }
.cat-card.recovery .icon{ background: linear-gradient(135deg,#af52de,#5e2b97); }
.cat-card.office .icon{ background: linear-gradient(135deg,#0076ce,#00263e); }
.cat-card h3{ font-size: 16px; font-weight: 600; margin: 0 0 8px; transform: translateZ(20px); }
.cat-card p{ font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0; transform: translateZ(10px); }

@media (max-width: 980px){ .cat-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .cat-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------- Product cards ---------------------------- */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px){ .product-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display:flex;
  flex-direction:column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
  will-change: transform;
}
.product-card:hover{ box-shadow: var(--shadow-hover); }
.product-thumb{
  position:relative;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-thumb img{ width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-thumb img{ transform: scale(1.06); }
.product-thumb .placeholder{ font-size: 40px; color: var(--muted-2); }
.badge{
  position:absolute; top:12px; left:12px;
  font-size: 11px; font-weight:700; letter-spacing:.02em;
  padding: 5px 10px; border-radius: 999px;
  color:#fff; text-transform:uppercase;
}
.badge.new{ background: var(--blue); }
.badge.used{ background: #ff9f0a; }
.badge.discount{ top:12px; left:auto; right:12px; background: var(--red); }
.product-body{ padding: 16px 18px 20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-cat{ font-size: 11.5px; color: var(--muted-2); text-transform:uppercase; letter-spacing:.04em; font-weight:600; }
.product-name{ font-size: 16px; font-weight:600; margin:0; line-height:1.3; }
.product-desc{ font-size: 13px; color: var(--muted); line-height:1.5; flex:1; }
.price-row{ display:flex; align-items:baseline; gap:8px; margin-top:4px; }
.price-current{ font-size: 18px; font-weight:700; }
.price-old{ font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.warranty-row{ font-size: 12px; color: var(--muted); display:flex; align-items:center; gap:5px; }
.product-actions{ display:flex; gap:8px; margin-top: 10px; }
.product-actions .pill{ flex:1; justify-content:center; padding: 10px 14px; font-size: 13.5px; }

.empty-state{
  text-align:center;
  padding: 60px 20px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}
.empty-state i{ font-size: 32px; color: var(--muted-2); margin-bottom: 14px; display:block; }

/* ---------------------------- Filters bar ---------------------------- */
.filters{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  margin-bottom: 28px; padding: 14px 16px;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
}
.filters select, .filters input[type="text"]{
  border:1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-size:13.5px; background: var(--bg-alt); color: var(--text);
  font-family: inherit;
}
.filters .chips{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  font-size: 13px; padding: 8px 15px; border-radius:999px;
  background: var(--bg-alt); border:1px solid var(--line); color: var(--muted);
  transition: all .2s var(--ease); cursor:pointer;
}
.chip.active{ background: var(--text); color:#fff; border-color: var(--text); }

/* ---------------------------- Product detail page ---------------------------- */
.product-detail{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items:start;
}
@media (max-width: 860px){ .product-detail{ grid-template-columns: 1fr; } }
.gallery-main{
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 12px;
}
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs{ display:flex; gap:10px; flex-wrap:wrap; }
.gallery-thumbs img{
  width:70px; height:70px; object-fit:cover; border-radius:10px;
  border: 2px solid transparent; cursor:pointer; opacity:0.7;
  transition: all .2s var(--ease);
}
.gallery-thumbs img.active{ border-color: var(--blue); opacity:1; }
.detail-info .eyebrow{ opacity:1; animation:none; margin-bottom:8px; }
.detail-info h1{ font-size: clamp(1.8rem,3.6vw,2.4rem); text-align:left; margin:0 0 12px; animation:none; opacity:1; }
.detail-price{ display:flex; align-items:baseline; gap:12px; margin: 10px 0 18px; }
.detail-price .current{ font-size: 30px; font-weight:700; }
.detail-price .old{ font-size: 16px; color: var(--muted-2); text-decoration: line-through; }
.detail-price .save{ font-size: 13px; color: var(--green); font-weight:600; background: rgba(48,209,88,0.12); padding: 4px 10px; border-radius: 999px; }
.spec-list{ display:flex; flex-direction:column; gap:10px; margin: 20px 0; }
.spec-list li{ display:flex; gap:10px; font-size: 14.5px; color: var(--text); align-items:flex-start; }
.spec-list i{ color: var(--blue); margin-top:3px; }
.detail-desc{ font-size: 15px; line-height: 1.7; color: var(--muted); white-space: pre-line; margin: 20px 0; }
.detail-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 20px; }

/* ---------------------------- Forms ---------------------------- */
.form-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-soft); max-width: 720px; margin: 0 auto;
}
.form-row{ margin-bottom: 20px; }
.form-row label{ display:block; font-size: 13.5px; font-weight:600; margin-bottom:7px; }
.form-row .hint{ font-size:12px; color:var(--muted-2); margin-top:5px; }
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"],
.form-row input[type="date"], .form-row input[type="number"], .form-row select, .form-row textarea{
  width:100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--bg-alt); font-size: 14.5px; font-family: inherit; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,0.12);
}
.form-row textarea{ resize: vertical; min-height: 110px; }
.form-grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .form-grid-2{ grid-template-columns:1fr; } }
.form-submit{ width:100%; justify-content:center; padding:14px; font-size:16px; }
.form-note{ font-size:13px; color:var(--muted); text-align:center; margin-top:14px; }
.alert{ padding: 14px 18px; border-radius: 12px; font-size:14px; margin-bottom:22px; display:flex; gap:10px; align-items:flex-start; }
.alert.success{ background: rgba(48,209,88,0.1); color:#1f7a3d; border: 1px solid rgba(48,209,88,0.3); }
.alert.error{ background: rgba(255,59,48,0.08); color:#c62b22; border: 1px solid rgba(255,59,48,0.25); }

/* ---------------------------- Trust / stats strip ---------------------------- */
.stats-strip{
  display:grid; grid-template-columns: repeat(4,1fr); gap:20px;
  max-width: 1000px; margin: 0 auto;
}
@media (max-width:760px){ .stats-strip{ grid-template-columns: repeat(2,1fr); } }
.stat{ text-align:center; }
.stat .num{ font-size: clamp(1.8rem,3vw,2.6rem); font-weight:700; letter-spacing:-0.02em;
  background: linear-gradient(100deg, var(--blue), #7c5cff);
  -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .label{ font-size:13px; color:var(--muted); margin-top:4px; }

/* ---------------------------- Contact section ---------------------------- */
.contact-cta{
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 72px 20px;
  text-align:center;
}
.contact-cta h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.contact-cta p{ color: var(--muted); font-size: 15.5px; margin: 0 0 32px; }
.actions{ display:flex; flex-wrap: wrap; justify-content:center; gap: 12px; }

/* ---------------------------- Footer ---------------------------- */
.site-footer{ background: var(--bg-alt); border-top: 1px solid var(--line); padding: 56px 20px 0; }
.footer-inner{
  max-width: 1180px; margin: 0 auto;
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px;
}
@media (max-width:860px){ .footer-inner{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px){ .footer-inner{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:16px; margin-bottom:10px; }
.footer-brand img{ width:26px; height:26px; border-radius:6px; }
.footer-tagline{ font-size:13.5px; color:var(--muted); line-height:1.5; max-width:280px; }
.socials{ display:flex; gap:10px; margin-top:16px; }
.socials a{
  width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; transition: all .2s var(--ease);
}
.socials a:hover{ background: var(--text); color:#fff; transform: translateY(-2px); }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.04em; color: var(--muted-2); margin:0 0 16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color: var(--text); }
.footer-col a:hover{ color: var(--blue); }
.footer-contact li{ font-size:13.5px; color:var(--muted); display:flex; gap:8px; align-items:flex-start; }
.footer-contact i{ color: var(--blue); margin-top:3px; width:14px; }
.footer-bottom{ border-top:1px solid var(--line); padding: 20px; text-align:center; }
.footer-bottom p{ margin:0; font-size:12px; color: var(--muted-2); }
.footer-bottom a{ color: var(--muted); text-decoration:underline; }

.float-whatsapp{
  position:fixed; bottom:22px; right:22px; z-index:60;
  width:54px; height:54px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:24px;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ box-shadow: 0 10px 24px -6px rgba(37,211,102,0.6); } 50%{ box-shadow: 0 10px 30px -2px rgba(37,211,102,0.85); } }

/* ---------------------------- Breadcrumb ---------------------------- */
.breadcrumb{ font-size:13px; color:var(--muted); margin: 24px auto 0; max-width:1180px; padding:0 20px; }
.breadcrumb a{ color:var(--muted); } .breadcrumb a:hover{ color:var(--blue); }

/* ---------------------------- Page hero (secondary pages) ---------------------------- */
.page-hero{ text-align:center; padding: 50px 20px 20px; }
.page-hero .eyebrow{ opacity:1; animation:none; }
.page-hero h1{ font-size: clamp(2.1rem,4.2vw,3rem); animation:none; opacity:1; }
.page-hero p{ animation:none; opacity:1; }
