:root {
  --default-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "Montserrat", system-ui, sans-serif;
  --nav-font: "Montserrat", system-ui, sans-serif;

  --background-color: #ffffff;
  --default-color: #344054;
  --heading-color: #101828;
  --accent-color: #2394d2;
  --accent-secondary: #f69233;
  --surface-color: #ffffff;
  --surface-soft: #f4f8fb;
  --surface-cool: #f2f8fc;
  --surface-cool-strong: #e8f2f9;
  --surface-warm: #f9f6f1;
  --surface-warm-strong: #f3ede4;
  --surface-accent: #eef6fb;
  --contrast-color: #ffffff;
  --dark-background: #0f2740;
  --dark-background-2: #14395b;
  --hero-text: rgba(255, 255, 255, 0.84);
  --border-color: rgba(16, 24, 40, 0.08);
  --shadow-soft: 0 24px 60px rgba(13, 38, 59, 0.12);
  --shadow-card: 0 16px 40px rgba(15, 39, 64, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: -0.03em;
}

img {
  max-width: 100%;
  height: auto;
}

 a {
  color: var(--accent-color);
  text-decoration: none;
}

 a:hover {
  color: color-mix(in srgb, var(--accent-color), #000 12%);
}

.section {
  padding: 88px 0;
  position: relative;
}

.light-background {
  background: var(--surface-soft);
}

.section-clean {
  background: #ffffff;
}

.section-cool {
  background:
    radial-gradient(circle at top right, rgba(35, 148, 210, 0.08) 0%, rgba(35, 148, 210, 0) 34%),
    linear-gradient(180deg, var(--surface-cool) 0%, #f8fbfe 100%);
}

.section-soft-blue {
  background:
    radial-gradient(circle at top left, rgba(35, 148, 210, 0.07) 0%, rgba(35, 148, 210, 0) 38%),
    linear-gradient(180deg, #f7fbfe 0%, var(--surface-accent) 100%);
}

.section-warm {
  background:
    radial-gradient(circle at 85% 15%, rgba(246, 146, 51, 0.08) 0%, rgba(246, 146, 51, 0) 30%),
    linear-gradient(180deg, var(--surface-warm) 0%, #fffdf9 100%);
}

.section-contact {
  background:
    radial-gradient(circle at top right, rgba(35, 148, 210, 0.12) 0%, rgba(35, 148, 210, 0) 34%),
    radial-gradient(circle at bottom left, rgba(246, 146, 51, 0.08) 0%, rgba(246, 146, 51, 0) 28%),
    linear-gradient(180deg, #eef7fd 0%, #dfeef9 100%);
  border-top: 1px solid rgba(35, 148, 210, 0.1);
  border-bottom: 1px solid rgba(35, 148, 210, 0.1);
}

.dark-background {
  color: #fff;
  background: linear-gradient(135deg, var(--dark-background) 0%, var(--dark-background-2) 100%);
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(35, 148, 210, 0.1);
  color: var(--accent-color);
  margin-bottom: 18px;
}

.section-badge-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn {
  border-radius: 14px;
  font-weight: 700;
  border: none;
  transition: all 0.25s ease;
}

.btn-brand {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: #fff;
  box-shadow: 0 14px 32px rgba(35, 148, 210, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(35, 148, 210, 0.34);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-brand,
.btn-outline-hero {
  background: transparent;
  border: 1.5px solid rgba(16, 24, 40, 0.14);
  color: var(--heading-color);
}

.btn-outline-brand:hover,
.btn-outline-hero:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-outline-hero {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.btn-outline-hero:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
  padding: 15px 22px;
}

.btn i {
  margin-right: 8px;
}

.header {
  background: rgba(15, 39, 64, 0.35);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scrolled .header {
  background: linear-gradient(135deg, var(--dark-background) 0%, var(--dark-background-2) 100%);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.logo {
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  height: 52px;
  width: auto;
}

.logo {
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.brand-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.02em;
}

.header-actions {
  gap: 18px;
}

.header-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.header-link:hover {
  color: #fff;
}

@media (min-width: 1200px) {
  .navmenu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  .navmenu a {
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--nav-font);
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 1.95rem;
    cursor: pointer;
    line-height: 1;
  }


  .navmenu ul {
    display: none;
    position: absolute;
    inset: 78px 18px auto 18px;
    padding: 14px;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .navmenu a {
    display: block;
    padding: 12px 14px;
    color: var(--heading-color);
    font-weight: 600;
    border-radius: 10px;
  }

  .navmenu a:hover,
  .navmenu .active {
    background: rgba(35, 148, 210, 0.08);
    color: var(--accent-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

.hero {
  --hero-backdrop-shift: 0px;
  --hero-backdrop-scale: 1;
  --hero-flame-shift: 0px;
  --hero-flame-scale: 1;
  --hero-flame-opacity: 0.4;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at 74% 50%, rgba(35, 148, 210, 0.18) 0%, rgba(35, 148, 210, 0.08) 24%, rgba(35, 148, 210, 0) 58%),
    linear-gradient(90deg, rgba(15, 39, 64, 0.22) 0%, rgba(15, 39, 64, 0.08) 38%, rgba(15, 39, 64, 0) 72%);
  transform: translate3d(0, var(--hero-backdrop-shift), 0) scale(var(--hero-backdrop-scale));
  transform-origin: center center;
  will-change: transform;
}

.hero-flame {
  position: absolute;
  top: 50%;
  right: -12vh;
  width: 120vh;
  height: 120vh;
  transform:
    translate3d(0, calc(-50% + var(--hero-flame-shift)), 0)
    scale(var(--hero-flame-scale))
    rotate(-7deg);
  transform-origin: center center;
  background: rgba(35, 148, 210, 0.16);
  -webkit-mask-image: url("../img/logo-flame.svg");
  mask-image: url("../img/logo-flame.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: blur(8px);
  opacity: var(--hero-flame-opacity);
  will-change: transform, opacity;
}

.hero-flame::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%);
  filter: blur(32px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 18px;
}

.hero-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-logo {
  width: min(100%, 520px);
}

.hero h1 {
  font-size: clamp(2.55rem, 5.3vw, 4.9rem);
  color: #fff;
  line-height: 1.02;
  margin: 0 auto 22px;
  max-width: 12ch;
}

.hero-intro {
  color: var(--hero-text);
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto 32px;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-service-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 600;
}

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  padding: 10px 12px;
  border-right: 1px solid var(--border-color);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-kicker {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #98a2b3;
  margin-bottom: 6px;
}

.trust-item strong,
.trust-item a {
  font-size: 1.03rem;
  color: var(--heading-color);
  font-weight: 700;
}

.trust-item-cta {
  display: flex;
  align-items: center;
}

.trust-item-cta a {
  color: var(--accent-color);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 39, 64, 0.12);
  border-color: rgba(35, 148, 210, 0.3);
}

.featured-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  border-color: rgba(35, 148, 210, 0.26);
}

.service-card-media {
  position: relative;
  padding: 18px 18px 0;
}

.service-card-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #eff7fd 0%, #dfeef9 100%);
  border: 1px solid rgba(35, 148, 210, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-media-tag {
  position: absolute;
  left: 34px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent-color);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(15, 39, 64, 0.18);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 28px;
}

.service-icon,
.reason-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-top: -29px;
  margin-bottom: 18px;
  background: #fff;
  color: var(--accent-color);
  border: 1px solid rgba(35, 148, 210, 0.16);
  box-shadow: 0 14px 30px rgba(15, 39, 64, 0.12);
  z-index: 1000;
}

.service-card h3,
.reason-card h3,
.process-step h3,
.contact-panel h2,
.contact-form-shell h3,
.areas-copy h3,
.contact-note h3,
.audience-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p,
.reason-card p,
.process-step p,
.areas-copy p,
.contact-panel p,
.contact-form-shell p,
.audience-panel p {
  line-height: 1.8;
  margin-bottom: 0;
}

.service-list {
  margin: 18px 0 24px;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-secondary);
  position: absolute;
  left: 0;
  top: 10px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-top: auto;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-color);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.check-item i {
  color: var(--accent-secondary);
  font-size: 1.05rem;
}

.audience-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(35, 148, 210, 0.08);
}

.reason-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border-color);
  height: 100%;
  box-shadow: var(--shadow-card);
}

.reason-card .reason-icon {
  margin-top: 0;
  background: rgba(35, 148, 210, 0.1);
  border: 0;
  box-shadow: none;
}

.dark-band {
  background: linear-gradient(135deg, #0d2237 0%, #163e63 100%);
  color: rgba(255, 255, 255, 0.86);
}

.dark-band h2,
.dark-band h3,
.dark-band p {
  color: #fff;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 24px;
}

.process-number {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 146, 51, 0.16);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.areas-copy {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-card);
  font-weight: 500;
  color: var(--heading-color);
}

.faq-wrap {
  max-width: 900px;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 14px 32px rgba(15, 39, 64, 0.08);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--heading-color);
  padding: 22px 24px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(35, 148, 210, 0.06);
  color: var(--accent-color);
}

.faq-accordion .accordion-body {
  padding: 15px 24px 22px;
  line-height: 1.8;
}

.contact-panel,
.contact-form-shell {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 26px 60px rgba(15, 39, 64, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.contact-options {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.contact-option i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 148, 210, 0.1);
  color: var(--accent-color);
  font-size: 1.2rem;
}

.contact-option strong,
.footer-contact-list span,
.footer-contact-list a {
  display: block;
  font-weight: 700;
}

.contact-option span {
  display: block;
  color: #667085;
  margin-top: 2px;
}

.contact-note {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbfd 0%, #edf6fc 100%);
  border: 1px solid rgba(35, 148, 210, 0.1);
}

.contact-note li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-note li:last-child {
  margin-bottom: 0;
}

.contact-note i {
  color: var(--accent-secondary);
}

.form-label {
  font-weight: 700;
  color: var(--heading-color);
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 14px 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(35, 148, 210, 0.12);
}

.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.php-email-form .loading {
  background: #f5f7fa;
}

.php-email-form .error-message {
  background: #fef3f2;
  color: #b42318;
}

.php-email-form .sent-message {
  background: #ecfdf3;
  color: #027a48;
}

.btn-submit-wide {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.02rem;
}

.footer {
  background: linear-gradient(135deg, #0c1d2f 0%, #102943 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 72px;
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer .tagline,
.footer-note,
.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list li,
.footer-contact-list li {
  margin-bottom: 12px;
}

.footer-list a,
.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--accent-secondary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 20px 0 28px;
}

.footer-bottom .sitename {
  color: #fff;
  font-weight: 700;
}

.footer-logo .brand-mark img {
  height: 58px;
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(15, 39, 64, 0.18);
  z-index: 1000;
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

body.show-mobile-cta .mobile-cta-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 14px;
  color: var(--heading-color);
  font-size: 0.88rem;
  font-weight: 700;
}

.mobile-cta-bar a:nth-child(1) {
  background: rgba(246, 146, 51, 0.8);
}

.mobile-cta-bar a:nth-child(2) {
  background: rgba(37, 211, 102, 0.8);
}

.mobile-cta-bar a:nth-child(3) {
  background: rgba(35, 148, 210, 0.8);
}

.mobile-cta-bar i {
  font-size: 1.05rem;
}

@media (max-width: 1199px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 18px;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 90px;
  }

  .hero-flame {
    right: -18vh;
    width: 104vh;
    height: 104vh;
    --hero-flame-opacity: 0.5;
  }

  .section {
    padding: 74px 0;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 90px;
  }

  .header {
    padding: 12px 0;
  }

  .brand-mark img {
    height: 42px;
  }

  .hero-logo-shell {
    margin-bottom: 22px;
    padding: 16px 18px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-service-pills {
    gap: 10px;
  }

  .hero-service-pills span {
    padding: 11px 15px;
    font-size: 0.88rem;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 6px;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .reason-card,
  .contact-panel,
  .contact-form-shell,
  .areas-copy,
  .audience-panel {
    padding: 24px;
  }

  .service-card-body {
    padding: 24px 24px 24px;
  }

  .service-card-media {
    padding: 16px 16px 0;
  }

  .service-media-tag {
    left: 28px;
    right: 28px;
    justify-content: center;
    text-align: center;
  }

  .faq-accordion .accordion-button {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 18px;
  }

  .footer {
    padding-top: 56px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.25rem;
    max-width: none;
  }

  .hero-flame {
    right: -28vh;
    width: 82vh;
    height: 82vh;
    --hero-flame-opacity: 0.46;
    filter: blur(8px);
  }

  .hero-intro,
  .section-title p,
  .areas-copy p,
  .contact-panel p,
  .contact-form-shell p,
  .audience-panel p {
    font-size: 1rem;
  }

  .hero-service-pills {
    gap: 10px;
  }

  .mobile-cta-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop::before,
  .hero-flame {
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .hero-flame {
    opacity: 0.4 !important;
  }
}

.brand-title-footer {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff !important;
}

.brand-subtitle-footer {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.02em;
}

/* Prevent long email addresses from breaking mobile layout */
.contact-option span,
.trust-item-cta a,
.footer-contact-list a {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.services.section,
.areas.section,
.faq.section,
.contact-section.section {
  position: relative;
}


.grecaptcha-badge { visibility: hidden; }

/* ==================================================
   Service page CSS
   ================================================== */

.service-page .header {
  background: linear-gradient(135deg, var(--dark-background) 0%, var(--dark-background-2) 100%);
  backdrop-filter: blur(14px);
  box-shadow: none;
}



.service-page-intro {
  padding-top: 148px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at top right, rgba(35, 148, 210, 0.10) 0%, rgba(35, 148, 210, 0) 34%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.breadcrumbs-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.92rem;
  color: #667085;
  margin-bottom: 22px;
}

.breadcrumbs-simple span {
  color: #98a2b3;
}

.service-page-intro-copy {
  max-width: none;
}

.service-page-intro h1 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: none;
}

.service-page-intro-copy p {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.service-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-intro-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-card);
  color: var(--heading-color);
  font-weight: 600;
}

.service-intro-visual {
  display: grid;
  gap: 16px;
}

.service-intro-image .service-card-image {
  aspect-ratio: 16 / 11;
}

.image-placeholder-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 39, 64, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.seasonal-tip-card,
.service-quote-card,
.service-copy-card,
.service-callout-card,
.service-list-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-card);
}

.seasonal-tip-card,
.service-copy-card,
.service-callout-card,
.service-list-card,
.service-quote-card {
  padding: 28px;
}

.seasonal-tip-card h2,
.service-copy-card h2,
.service-callout-card h2,
.service-quote-card h3 {
  font-size: 1.42rem;
  margin-bottom: 14px;
}

.seasonal-tip-card p,
.service-copy-card p,
.service-callout-card p,
.service-quote-card p,
.service-list-card p {
  line-height: 1.85;
}

.seasonal-tip-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seasonal-tip-list li,
.tick-list li,
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.seasonal-tip-list i,
.tick-list i,
.icon-list i {
  color: var(--accent-secondary);
  margin-top: 2px;
}

.service-content-section {
  padding-top: 30px;
  padding-bottom: 88px;
}

.service-page .service-content-section,
.service-page .service-content-section .container,
.service-page .service-content-section .row {
  overflow: visible;
}

.service-page .service-content-section #contact {
  align-self: flex-start;
}

.service-copy-card,
.service-callout-card,
.service-list-card {
  padding: 28px;
}

.section-divider {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-list-card h3,
.service-copy-card h3,
.service-callout-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.service-note-panel {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbfe 0%, #edf6fc 100%);
  border: 1px solid rgba(35, 148, 210, 0.12);
}

.service-note-heading {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.sticky-service-quote {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
}

.quote-quick-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 16px;
}

.quote-quick-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 82px;
  padding: 12px 10px;
  border-radius: 18px;
  color: var(--heading-color);
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  text-align: center;
}

.quote-quick-icons i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(35, 148, 210, 0.1);
  color: var(--accent-color);
  font-size: 1.1rem;
}

.quote-quick-icons span {
  font-size: 0.9rem;
  font-weight: 700;
}

.service-email-note,
.service-email-note a {
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-email-note {
  margin-bottom: 18px;
  color: #667085;
  font-size: 0.94rem;
}

.service-form-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #667085;
}

.service-content-main .faq-accordion {
  margin-bottom: 0;
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-card);
  color: var(--heading-color);
  font-weight: 500;
}

@media (max-width: 991px) {
  .service-page-intro {
    padding-top: 134px;
    padding-bottom: 42px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-content-section {
    padding-bottom: 74px;
  }

  .sticky-service-quote {
    position: static;
  }
}

@media (max-width: 767px) {
  .service-page-intro h1 {
    font-size: 2.35rem;
  }

  .service-intro-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .seasonal-tip-card,
  .service-copy-card,
  .service-callout-card,
  .service-list-card,
  .service-quote-card {
    padding: 22px;
  }

  .image-placeholder-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.78rem;
  }
}
