:root {
  --gradient: linear-gradient(135deg, #fff7f7 0%, #f7fbff 52%, #eef8f4 100%);
  --black: #222330;
  --muted: #74777f;
  --light: #fbfcfd;
  --white: #ffffff;
  --border: #f0d4d6;
  --accent: #cf1f2b;
  --accent-dark: #a8141e;
  --navy: #222330;
  --teal: #cf1f2b;
  --cyan: #f06a72;
  --surface: #fbfcfd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--black);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
}
.material-symbols-outlined {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}
a { color: inherit; text-decoration: none; }
img { height: auto; max-width: 100%; }
.container { max-width: 1200px; }

.header-top {
  background: #fff7f7;
  border-bottom: 1px solid #f2d7da;
  color: var(--black);
  font-size: 13px;
}
.header-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 5%;
}
.top-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-list li {
  align-items: center;
  background: var(--white);
  border: 1px solid #f4dfe1;
  border-radius: 999px;
  color: var(--black);
  display: flex;
  gap: 8px;
  padding: 7px 12px;
}
.top-list li .material-symbols-outlined {
  color: var(--accent);
  font-size: 18px;
}
.main-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(7, 26, 47, 0.11);
  min-height: 92px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-shell {
  gap: 20px;
  padding: 0 4%;
}
.navbar-brand {
  align-items: center;
  display: inline-flex;
  min-height: 74px;
}
.navbar-brand img { max-height: 70px; width: min(330px, 62vw); }
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 0;
  min-height: 46px;
  width: 50px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: linear-gradient(var(--black), var(--black)), linear-gradient(var(--black), var(--black)), linear-gradient(var(--black), var(--black));
  background-position: center 8px, center 16px, center 24px;
  background-repeat: no-repeat;
  background-size: 24px 2px;
}
.navbar-collapse {
  flex-grow: 1;
  justify-content: center;
}
.navbar-nav {
  flex: 0 1 auto;
  gap: clamp(2px, 0.45vw, 8px);
  justify-content: center;
}
.nav-link {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  padding: 34px 8px;
  position: relative;
  text-transform: uppercase;
}
.nav-link::after {
  background: var(--accent);
  bottom: 25px;
  content: "";
  height: 2px;
  left: 10px;
  opacity: 0;
  position: absolute;
  right: 10px;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-link:hover,
.dropdown-item:hover { color: var(--teal); }
.nav-link:hover::after { opacity: 1; transform: scaleX(1); }
.nav-contact { margin-left: clamp(8px, 1vw, 18px); }
.nav-contact .btn {
  min-width: 136px;
  padding-left: 18px;
  padding-right: 18px;
}
.dropdown-menu {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.18);
  padding: 12px;
}
.dropdown-item {
  border-radius: 5px;
  color: var(--black);
  font-weight: 600;
  padding: 10px 16px;
}
.dropdown-item:hover { background: #eef6f8; }

.btn-gradient,
.btn-white,
.btn-accent {
  align-items: center;
  border: 0;
  border-radius: 5px;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding: 14px 26px;
}
.btn-gradient { background: var(--accent); box-shadow: 0 14px 34px rgba(207, 31, 43, 0.22); color: var(--white); }
.btn-gradient:hover { color: var(--white); filter: brightness(0.96); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-accent { background: var(--accent); box-shadow: 0 18px 38px rgba(207, 31, 43, 0.25); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); }

.hero-section {
  align-items: center;
  background: linear-gradient(90deg, rgba(34, 35, 48, 0.86), rgba(34, 35, 48, 0.54), rgba(255, 247, 247, 0.12)), url("/images/hero-professional.jpg") center / cover no-repeat;
  display: flex;
  min-height: 690px;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  background: radial-gradient(circle at 16% 25%, rgba(207, 31, 43, 0.22), transparent 28%), radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 30%);
  content: "";
  inset: 0;
  position: absolute;
}
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-kicker,
.section-title span,
.sub-title {
  color: var(--teal);
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}
.hero-kicker {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  padding: 8px 14px;
}
.hero-content h1 {
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 840px;
}
.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  margin: 24px 0 0;
  max-width: 660px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-actions .btn {
  min-height: 58px;
}
.hero-actions .btn .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-badges span {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}
.hero-badges .material-symbols-outlined {
  color: var(--accent);
  font-size: 18px;
}
.hero-quote-card {
  background: rgba(255, 255, 255, 0.96);
  border-top: 5px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  color: var(--black);
  margin-left: auto;
  max-width: 390px;
  padding: 34px;
}
.hero-card-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 22px;
  width: 58px;
}
.hero-card-icon .material-symbols-outlined {
  color: var(--white);
  font-size: 34px;
}
.hero-card-label {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  gap: 8px;
  font-weight: 900;
  margin-bottom: 8px;
}
.hero-card-label .material-symbols-outlined {
  color: var(--accent);
  font-size: 21px;
}
.hero-quote-card h2 {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}
.hero-quote-card p {
  color: var(--muted);
  margin: 18px 0 24px;
}
.hero-quote-card a {
  align-items: center;
  background: var(--accent);
  border-radius: 5px;
  color: var(--white);
  display: inline-flex;
  gap: 8px;
  font-weight: 900;
  padding: 13px 18px;
}
.section-space { padding: 100px 0; }
.section-title { margin-bottom: 46px; }
.section-title h2 {
  color: var(--black);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}
.section-title p { color: var(--muted); margin-top: 16px; }

.feature-card {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 20px 45px rgba(34, 35, 48, 0.06);
  display: grid;
  grid-template-columns: 150px 1fr;
  height: 100%;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 32px 70px rgba(34, 35, 48, 0.14);
  transform: translateY(-6px);
}
.feature-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 0;
  color: var(--white);
  display: flex;
  font-size: 58px;
  grid-row: 1 / span 2;
  height: 100%;
  justify-content: center;
  margin: 0;
  min-height: 190px;
  width: 100%;
}
.feature-card h3,
.quote-step h3,
.comment-card h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}
.feature-card h3,
.feature-card p {
  grid-column: 2;
  padding-left: 34px;
  padding-right: 34px;
}
.feature-card h3 {
  margin: 34px 0 24px;
}
.feature-card p {
  padding-bottom: 34px;
}
.feature-card p,
.quote-step p,
.comment-card p { color: var(--muted); margin-bottom: 0; }

.work-section,
.comments-section,
.contact-details { background: var(--light); }
.work-section {
  background-image: radial-gradient(#f2d7da 1px, transparent 1px);
  background-size: 14px 14px;
}
.work-timeline {
  align-items: flex-start;
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}
.work-node {
  position: relative;
  text-align: center;
}
.work-image {
  background: var(--work-image) center / cover no-repeat;
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(34, 35, 48, 0.12);
  height: 230px;
  margin: 0 auto 38px;
  position: relative;
  width: 230px;
}
.work-image::after {
  background: #ffc34d;
  border-radius: 50%;
  content: "";
  height: 96px;
  position: absolute;
  right: -44px;
  top: 78px;
  width: 96px;
  z-index: 0;
}
.work-image span {
  align-items: center;
  background: #f1ece7;
  border-radius: 50%;
  color: #737373;
  display: flex;
  font-size: 28px;
  font-weight: 900;
  height: 96px;
  justify-content: center;
  left: -18px;
  position: absolute;
  top: -18px;
  width: 96px;
  z-index: 1;
}
.work-line {
  border-top: 8px dotted var(--black);
  left: calc(50% + 120px);
  opacity: 0.9;
  position: absolute;
  top: 110px;
  width: calc(100% - 120px);
}
.work-title {
  border-top: 8px solid var(--accent);
  margin: 0 auto;
  max-width: 300px;
  padding-top: 28px;
}
.work-title h3 {
  color: var(--black);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-section {
  background: var(--accent);
  color: var(--white);
  padding: 92px 0;
}
.cta-section span { font-weight: 800; }
.cta-section h2 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 12px 0 30px;
  max-width: 850px;
}

.quote-section,
.offer-section,
.main-footer { background: var(--black); color: var(--white); }
.light-title h2,
.light-title p,
.light-title span { color: var(--white); }
.quote-step {
  border-left: 4px solid rgba(255, 255, 255, 0.88);
  margin: 22px 0;
  padding-left: 22px;
}
.quote-step p { color: rgba(255, 255, 255, 0.82); }
.quote-form,
.contact-form {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(7, 26, 47, 0.16);
  color: var(--black);
  padding: 36px;
}
.quote-form label,
.contact-form label { font-weight: 700; margin-bottom: 8px; }
.form-control,
.form-select {
  border-color: var(--border);
  border-radius: 0;
  min-height: 50px;
}
.comment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 100%;
  padding: 28px;
}
.offer-section { padding-top: 105px; }
.reason-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.reason-list li {
  align-items: center;
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-left: 0;
  position: relative;
}
.reason-list li .material-symbols-outlined { color: var(--accent); font-size: 24px; }
.offer-images {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.offer-images img {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
.caption {
  background: var(--white);
  border-radius: 8px;
  bottom: 28px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  left: 50%;
  padding: 24px 30px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-title-section {
  background: linear-gradient(135deg, #222330 0%, #cf1f2b 100%);
  color: var(--white);
  padding: 95px 0;
}
.page-title-section h1 {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
}
.page-title-section nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  gap: 10px;
}
.page-title-section nav span::before { content: "/"; margin-right: 10px; }
.page-content { color: var(--black); font-size: 17px; }
.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--black);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}
.page-content h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 24px; }
.page-content h2 { font-size: 30px; margin-top: 34px; }
.page-content h3 { font-size: 22px; margin-top: 24px; }
.page-content p,
.page-content li { color: #383d45; }
.page-content strong { color: var(--black); }
.sticky-image { position: sticky; top: 130px; }
.sticky-image img {
  box-shadow: 0 25px 55px rgba(16, 17, 20, 0.12);
  width: 100%;
}

.contact-list { list-style: none; padding: 0; }
.contact-list li {
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 24px;
}
.contact-list strong { font-size: 20px; }
.contact-list a,
.contact-list span { color: var(--muted); }

.main-footer { padding-top: 70px; }
.footer-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  height: 100%;
  padding: 32px;
}
.footer-icon {
  align-items: center;
  background: var(--white);
  color: var(--navy);
  display: flex;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}
.footer-card h4 { font-weight: 900; }
.footer-card p,
.footer-bottom p { color: rgba(255, 255, 255, 0.86); margin-bottom: 0; }
.footer-bottom a { color: var(--white); font-weight: 800; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 55px;
  padding: 24px 0;
}

.float-whatsapp,
.float-phone {
  align-items: center;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 18px 45px rgba(16, 17, 20, 0.22);
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 62px;
  justify-content: center;
  position: fixed;
  width: 62px;
  z-index: 2000;
}
.float-whatsapp svg {
  color: var(--white);
  height: 31px;
  width: 31px;
}
.float-phone .material-symbols-outlined { font-size: 28px; }
.float-whatsapp { background: #0d9f16; left: 22px; }
.float-phone { background: var(--accent); right: 22px; }
.float-whatsapp:hover,
.float-phone:hover { color: var(--white); }

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu { display: block; }
}

@media (max-width: 991.98px) {
  .main-nav { min-height: 78px; }
  .nav-shell { padding: 10px 18px; }
  .navbar-brand img { max-height: 58px; width: min(270px, 62vw); }
  .navbar-collapse {
    border-top: 1px solid var(--border);
    margin-top: 10px;
    padding-top: 10px;
  }
  .navbar-nav { align-items: stretch !important; gap: 0; }
  .nav-link { padding: 12px 0; }
  .nav-link::after { display: none; }
  .nav-contact { margin-top: 10px; }
  .hero-section { min-height: auto; padding: 78px 0; }
  .hero-quote-card { margin: 18px 0 0; max-width: none; }
  .section-space { padding: 72px 0; }
  .work-timeline {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .work-line { display: none; }
  .offer-images { grid-template-columns: 1fr; }
  .caption {
    bottom: 16px;
    font-size: 18px;
    max-width: calc(100% - 32px);
    padding: 18px 20px;
    white-space: normal;
  }
}

@media (max-width: 767.98px) {
  .header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }
  .top-list {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .top-list li {
    border-radius: 8px;
    flex: none;
    justify-content: flex-start;
    min-height: 42px;
    padding: 9px 12px;
  }
  .hero-section { padding: 62px 0; }
  .hero-content h1 { font-size: 42px; }
  .hero-text { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-badges span { flex: 1 1 100%; text-align: center; }
  .quote-section .row.g-5,
  .offer-section .row.g-5,
  .contact-details .row.g-5,
  .content-section .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
  .quote-form,
  .contact-form,
  .comment-card,
  .footer-card { padding: 24px; }
  .feature-card {
    border-radius: 10px;
    grid-template-columns: 1fr;
  }
  .feature-icon {
    grid-row: auto;
    min-height: 120px;
  }
  .feature-card h3,
  .feature-card p {
    grid-column: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .feature-card h3 { margin: 24px 0 14px; }
  .feature-card p { padding-bottom: 24px; }
  .work-image {
    height: 190px;
    width: 190px;
  }
  .work-image::after {
    height: 76px;
    right: -28px;
    top: 66px;
    width: 76px;
  }
  .page-title-section { padding: 70px 0; }
  .float-whatsapp,
  .float-phone {
    bottom: 16px;
    height: 52px;
    width: 52px;
  }
  .float-whatsapp { left: 14px; }
  .float-phone { right: 14px; }
}

.keyword-section { background: var(--light); }
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.keyword-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(34, 35, 48, 0.06);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 15px;
}
.keyword-chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.keyword-copy {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 42px auto 0;
  max-width: 900px;
  padding: 32px;
}
.keyword-copy h2 {
  color: var(--black);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.keyword-copy p { color: var(--muted); margin-bottom: 12px; }
