
:root {
  --dark: #1a1a1a;
  --dark-surface: #212121;
  --dark-card: #2a2a2a;
  --dark-border: #3a3a3a;
  --accent: #d42b2b;
  --accent-glow: rgba(212,43,43,0.18);
  --accent-hover: #e84444;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-300: #d5d5d5;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-700: #222222;
  --text-on-dark: #cccccc;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--white); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--gray-400); text-decoration: none; font-size: 0.92rem; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: 0.55rem 1.2rem; border-radius: 6px; font-weight: 500; }
.hero { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero-it.webp') center / cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(26,26,26,0.65) 52%, rgba(212,43,43,0.18) 100%); }
.hero-inner,.container { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 3rem; }
.hero-inner { z-index: 1; padding-top: 4rem; padding-bottom: 5rem; }
.eyebrow { display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.hero h1,.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; color: var(--white); line-height: 1.1; letter-spacing: -0.03em; max-width: 760px; margin-bottom: 1.1rem; }
.hero h1 em,.page-hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.12rem; color: var(--text-on-dark); max-width: 700px; line-height: 1.8; margin-bottom: 2rem; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; margin: 0 0 2rem; color: #e7e7e7; font-size: .95rem; }
.hero-bullets span::before { content: '•'; color: var(--accent); margin-right: .5rem; }
.hero-buttons,.button-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-inner .button-row { justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1.8rem; border-radius: 8px; font-size: .96rem; font-weight: 500; text-decoration: none; transition: .2s; border: none; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 0 30px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--dark-border); }
.btn-outline:hover { border-color: var(--gray-400); background: rgba(255,255,255,.05); }
.stats-bar { background: var(--dark-surface); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 3rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); }
.stat-value span { color: var(--accent); }
.stat-label { color: var(--gray-400); font-size: .88rem; }
.section { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.section-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-intro { font-size: 1.04rem; color: var(--gray-500); max-width: 760px; }
.divider { width: 100%; height: 1px; background: var(--gray-200); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.4rem; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; padding: 2rem; }
.card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: .7rem; color: var(--dark); }
.card p,.card li { color: var(--gray-500); font-size: .95rem; }
.card ul { padding-left: 1.1rem; display: grid; gap: .45rem; }

.service-card-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .85rem;
}
.service-card-head h3 {
  margin-bottom: 0;
}
.service-card-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  border: 1px solid rgba(212,43,43,0.14);
  background-color: #fff5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.service-links .service-card:hover .service-card-icon,
.service-links .service-card:focus-visible .service-card-icon {
  transform: scale(1.05);
  border-color: rgba(212,43,43,0.28);
  background-color: #ffecec;
}
.service-links .service-card:nth-child(1) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0-1.4 0L6 13.6V18h4.4l7.3-7.3a1 1 0 0 0 0-1.4l-3-3Z'/%3E%3Cpath d='m12 8 4 4'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
}
.service-links .service-card:nth-child(2) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M15 9h.01'/%3E%3Cpath d='M9 13h.01'/%3E%3Cpath d='M15 13h.01'/%3E%3Cpath d='M10 21v-4h4v4'/%3E%3C/svg%3E");
}
.service-links .service-card:nth-child(3) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='7' rx='2'/%3E%3Crect x='4' y='14' width='16' height='7' rx='2'/%3E%3Cpath d='M8 7h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 7h4'/%3E%3Cpath d='M12 18h4'/%3E%3C/svg%3E");
}
.service-links .service-card:nth-child(4) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10Z'/%3E%3Cpath d='M2 5h20'/%3E%3Cpath d='M2 19h20'/%3E%3C/svg%3E");
}
.service-links .service-card:nth-child(5) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 15.2A4.2 4.2 0 0 1 7.2 11a5 5 0 0 1 9.6 1.5A3.5 3.5 0 1 1 18 19H7a4 4 0 0 1-4-3.8'/%3E%3Cpath d='M12 12v6'/%3E%3Cpath d='m9.5 14.5 2.5-2.5 2.5 2.5'/%3E%3C/svg%3E");
}
.service-links .service-card:nth-child(6) .service-card-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 7v5c0 5 3.4 8.8 8 10 4.6-1.2 8-5 8-10V7l-8-4Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  text-decoration: none;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(212,43,43,0);
  transition: box-shadow .2s ease;
  pointer-events: none;
}
.service-card-cta {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .01em;
}
.service-card-cta span {
  font-size: 1.05rem;
  transition: transform .2s ease;
}
.service-links .service-card:hover,
.service-links .service-card:focus-visible {
  border-color: rgba(212,43,43,0.45);
  box-shadow: 0 12px 34px rgba(212,43,43,0.10);
  transform: translateY(-4px);
  background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
}
.service-links .service-card:hover::after,
.service-links .service-card:focus-visible::after {
  box-shadow: inset 0 0 0 1px rgba(212,43,43,0.18);
}
.service-links .service-card:hover .service-card-cta span,
.service-links .service-card:focus-visible .service-card-cta span {
  transform: translateX(4px);
}
.service-links .service-card:hover h3,
.service-links .service-card:focus-visible h3 {
  color: #111111;
}
.service-links .service-card:focus-visible {
  outline: 3px solid rgba(212,43,43,0.18);
  outline-offset: 2px;
}
.dark-section { background: var(--dark); color: var(--white); }
.dark-section .section h2,.dark-section .section p,.dark-section .card h3 { color: var(--white); }
.dark-section .section-intro,.dark-section .card p,.dark-section .card li { color: var(--text-on-dark); }
.dark-section .card { background: var(--dark-card); border-color: var(--dark-border); }
.checklist { display: grid; gap: .8rem; margin-top: 1.4rem; }
.checklist div::before { content: '✓'; color: var(--accent); margin-right: .6rem; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(212,43,43,.15); line-height: 1; margin-bottom: .8rem; }
.step h3 { font-family: var(--font-display); margin-bottom: .5rem; }
.step p { color: var(--gray-500); }
.faq-list { margin-top: 2rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary { font-family: var(--font-display); font-weight: 500; font-size: 1.04rem; color: var(--dark); cursor: pointer; padding: 1.2rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--gray-500); padding-bottom: 1.2rem; }
.cta-banner { background: var(--dark); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,43,43,.1) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 5rem 3rem; text-align: center; }
.cta-inner h2 { color: var(--white); font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.2; margin-bottom: 1rem; }
.cta-inner p { color: var(--text-on-dark); margin-bottom: 1.5rem; }
.cta-phone { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); text-decoration: none; margin-bottom: 1.2rem; }
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: .6rem; }
.footer-brand span { color: var(--accent); }
.footer-info,.footer-col a,.footer-col p { color: var(--gray-400); font-size: .88rem; text-decoration: none; }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--white); margin-bottom: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; margin-bottom: .45rem; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--dark-border); text-align: center; font-size: .8rem; color: var(--gray-500); }
.page-hero { background: linear-gradient(135deg, #1a1a1a 0%, #222 55%, #3a0f0f 100%); }
.page-hero .container { padding-top: 4.8rem; padding-bottom: 4rem; }
.page-hero p { max-width: 760px; color: var(--text-on-dark); font-size: 1.08rem; }
.breadcrumbs { color: var(--gray-400); margin-bottom: 1rem; font-size: .9rem; }
.breadcrumbs a { color: var(--gray-400); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.kpi-strip { display:grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.kpi { border:1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 1.2rem; color: var(--white); }
.kpi strong { display:block; font-family: var(--font-display); font-size:1.35rem; }
@media (max-width: 968px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .kpi-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero-inner,.container,.section,.cta-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .section { padding-top: 4rem; padding-bottom: 4rem; }
  .grid-3,.grid-2 { grid-template-columns: 1fr; }
  .stats-inner { padding: 2rem 1.25rem; }
  .footer { padding: 2rem 1.25rem; }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobile-fab {
  display: none;
}
@media (max-width: 720px) {
  .mobile-fab {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 250;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }
  .mobile-fab__link {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(15, 23, 42, .88);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
  }
  .mobile-fab__link::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
    pointer-events: none;
  }
  .mobile-fab__link:active,
  .mobile-fab__link:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  }
  .mobile-fab__link--mail:hover,
  .mobile-fab__link--mail:active {
    border-color: rgba(239, 68, 68, .45);
    background: rgba(33, 11, 16, .92);
  }
  .mobile-fab__link--wa {
    background: linear-gradient(180deg, #25d366 0%, #1ebe5b 100%);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 16px 34px rgba(37, 211, 102, .24), 0 10px 22px rgba(0, 0, 0, .22);
  }
  .mobile-fab__link--wa::before {
    inset: 7px;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  }
  .mobile-fab__link--wa:hover,
  .mobile-fab__link--wa:active {
    border-color: rgba(255,255,255,.34);
    background: linear-gradient(180deg, #2add6e 0%, #20c45e 100%);
    box-shadow: 0 18px 36px rgba(37, 211, 102, .3), 0 12px 24px rgba(0, 0, 0, .24);
  }
  .mobile-fab__link svg {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-fab__link--mail svg {
    stroke: #ff8f8f;
  }
  .mobile-fab__link--wa svg {
    width: 19px;
    height: 19px;
    fill: #fff;
    stroke: none;
  }
}

.nav-logo-img { width: 28px; height: 28px; vertical-align: middle; margin-right: .4rem; }
