:root {
  --background: #0a0a0a;
  --foreground: #f8fafc;
  --card: #121212;
  --muted: #1f1f1f;
  --muted-fg: #a3aab8;
  --border: #262626;
  --primary: #0080ff;
  --primary-glow: #33b5ff;
  --primary-fg: #fff;
  --whatsapp: #22c35e;
  --gradient-primary: linear-gradient(135deg, #0073e6, #33b5ff);
  --gradient-card: linear-gradient(160deg, #171717, #0d0d0d);
  --shadow-glow: 0 20px 60px -15px rgba(0, 128, 255, .45);
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, .6);
  --radius: .75rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border)
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.1;
  font-weight: 700
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.muted {
  color: var(--muted-fg)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.2rem;
  border-radius: .6rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn-hero {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow)
}

.btn-hero:hover {
  transform: translateY(-2px);
  filter: brightness(1.1)
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff
}

.btn-whatsapp:hover {
  filter: brightness(1.1)
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border)
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary)
}

.btn-xl {
  padding: 1rem 1.6rem;
  font-size: 1rem
}

.btn-block {
  width: 100%
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .3s;
  background: transparent
}

.header.scrolled {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0
}

.logo-img {
  height: 60px;
  width: auto
}

@media(min-width:768px) {
  .logo-img {
    height: 104px
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem
}

.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color .2s
}

.nav a:hover,
.nav a.active {
  color: var(--primary)
}

.nav-cta {
  display: none
}

.menu-btn {
  background: none;
  border: none;
  color: var(--foreground);
  padding: .5rem;
  cursor: pointer
}

.menu-btn svg {
  width: 24px;
  height: 24px
}

@media(min-width:768px) {

  .nav,
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 4rem
  }

  .menu-btn {
    display: none
  }
}

.mobile-nav {
  display: none;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border)
}

.mobile-nav.open {
  display: block
}

.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.mobile-nav a {
  font-weight: 500
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(10, 10, 10, .85) 50%, rgba(10, 10, 10, .4))
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--background), transparent, rgba(10, 10, 10, .3))
}

.hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
  
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 128, 255, .1);
  border: 1px solid rgba(0, 128, 255, .3);
  color: var(--primary);
  font-size: .85rem;
  font-weight: 500;
  backdrop-filter: blur(10px)
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary)
}

.h1-display {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  margin: 1.5rem 0
}

.hero p.lead {
  width: 70%;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--muted-fg);
  margin-bottom: 1.75rem;
 
}




.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: .9rem;
  color: var(--muted-fg)
}

.trust-pills div {
  display: flex;
  align-items: center;
  gap: .5rem
}

.trust-pills svg {
  width: 18px;
  height: 18px;
  color: var(--primary)
}

/* Sections */
section.section {
  padding: 6rem 0
}

.section-secondary {
  background: rgba(31, 31, 31, .3)
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: .75rem
}

.h2-center {
  text-align: center
}

.section-intro {
  max-width: 720px;
  margin-bottom: 3.5rem
}

.section-intro.center {
  margin: 0 auto 3.5rem;
  text-align: center
}

.section-intro p {
  margin-top: 1rem;
  color: var(--muted-fg);
  font-size: 1.1rem
}

/* Trust bar */
.trustbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(31, 31, 31, .4)
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0
}

@media(min-width:768px) {
  .trustbar-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center
}

@media(min-width:768px) {
  .trust-item {
    justify-content: flex-start
  }
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: .5rem;
  background: rgba(0, 128, 255, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.icon-box svg {
  width: 20px;
  height: 20px
}

/* About */
.two-col {
  display: grid;
  gap: 3.5rem;
  align-items: center
}

@media(min-width:768px) {
  .two-col {
    grid-template-columns: 1fr 1fr
  }
}

.img-glow {
  position: relative
}

.img-glow::before {
  content: "";
  position: absolute;
  inset: -1rem;
  background: var(--gradient-primary);
  opacity: .2;
  filter: blur(60px);
  border-radius: 1.5rem
}

.img-glow img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  width: 100%
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.benefits {
  display: grid;
  gap: .75rem;
  padding-top: .5rem
}

@media(min-width:640px) {
  .benefits {
    grid-template-columns: 1fr 1fr
  }
}

.benefit {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .9rem
}

.check {
  margin-top: .25rem;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff
}

.check svg {
  width: 12px;
  height: 12px;
  stroke-width: 3
}

/* Services grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all .3s
}

.card:hover {
  border-color: rgba(0, 128, 255, .5);
  transform: translateY(-4px)
}

.card .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: rgba(0, 128, 255, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all .3s
}

.card:hover .icon-tile {
  background: var(--gradient-primary);
  color: #fff
}

.card .icon-tile svg {
  width: 24px;
  height: 24px
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem
}

.card p {
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.6
}

/* Process */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start
}

.step-icon {
  position: relative;
  flex-shrink: 0
}

.step-icon .icon-tile {
  width: 56px;
  height: 56px;
  border-radius: .75rem;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow)
}

.step-icon .icon-tile svg {
  width: 24px;
  height: 24px
}

.step-num {
  position: absolute;
  top: -.5rem;
  right: -.5rem;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: var(--background);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.step h3 {
  font-size: 1.1rem
}

.step p {
  color: var(--muted-fg);
  font-size: .9rem;
  margin-top: .25rem
}

/* Testimonials */
.t-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .t-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.review-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card)
}

.stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  color: var(--primary)
}

.review-card p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, .9)
}

.review-author .name {
  font-weight: 600
}

.review-author .area {
  font-size: .85rem;
  color: var(--muted-fg)
}

/* Service Area */
.area-grid {
  display: grid;
  gap: 3rem;
  align-items: center
}

@media(min-width:1024px) {
  .area-grid {
    grid-template-columns: 1fr 1fr
  }
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: var(--muted);
  border: 1px solid var(--border);
  font-size: .875rem
}

.pill svg {
  width: 14px;
  height: 14px;
  color: var(--primary)
}

.map-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.3) contrast(1.1)
}

/* CTA */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden
}

.cta-bg {
  position: absolute;
  inset: 0
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .55)
}

.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(10, 10, 10, .8), rgba(10, 10, 10, .4) 50%, rgba(10, 10, 10, .3))
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.cta-content h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--muted-fg);
  margin-bottom: 1.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(31, 31, 31, .4);
  padding: 4rem 0 2rem
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.footer-grid img {
  height:100px;
  width: auto;
  margin-bottom: 1rem
}

.footer-grid p {
  font-size: .875rem;
  color: var(--muted-fg);
  max-width: 340px
}

.footer-grid h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .875rem;
  color: var(--muted-fg)
}

.footer-grid li {
  display: flex;
  align-items: center;
  gap: .75rem
}

.footer-grid li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0
}

.footer-grid a:hover {
  color: var(--primary)
}

.footer-row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--muted-fg)
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .75rem;
  color: var(--muted-fg)
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-glow);
  transition: transform .2s
}

.float-btn:hover {
  transform: scale(1.1)
}

.float-btn.wa {
  background: var(--whatsapp)
}

.float-btn.call {
  background: var(--gradient-primary)
}

.float-btn svg {
  width: 24px;
  height: 24px
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  text-align: center
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .55)
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 10, 10, .7), rgba(10, 10, 10, .3), var(--background))
}

.page-hero .container {
  position: relative;
  z-index: 10;
  max-width: 900px
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin: 1.25rem 0
}

.page-hero .lead {
  font-size: 1.15rem;
  color: var(--muted-fg);
  max-width: 680px;
  margin: 0 auto
}

/* Service pricing */
.notice {
  border: 1px solid var(--border);
  background: var(--gradient-card);
  padding: 1.5rem;
  border-radius: 1rem;
  color: var(--muted-fg);
  box-shadow: var(--shadow-card)
}

.notice strong {
  color: var(--foreground)
}

.price-grid {
  display: grid;
  gap: 1.25rem
}

@media(min-width:768px) {
  .price-grid {
    grid-template-columns: 1fr 1fr
  }
}

.price-card {
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border .3s
}

.price-card:hover {
  border-color: rgba(0, 128, 255, .5)
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem
}

.price-head-left {
  display: flex;
  gap: .75rem;
  align-items: center
}

.price-head-left .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: rgba(0, 128, 255, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center
}

.price-head-left .icon-tile svg {
  width: 22px;
  height: 22px
}

.price-card h3 {
  font-size: 1.05rem;
  line-height: 1.3
}

.price-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap
}

.price-card p {
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.6
}

.add-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .add-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .add-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.add-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: rgba(31, 31, 31, .4);
  font-weight: 500;
  font-size: .9rem
}

.add-item .icon-box {
  width: 40px;
  height: 40px
}

/* Reviews page */
.rating-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 128, 255, .3);
  box-shadow: var(--shadow-glow);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.rating-card .stars {
  justify-content: center;
  margin-bottom: .75rem
}

.rating-card .stars svg {
  width: 28px;
  height: 28px
}

.rating-num {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700
}

.r-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .r-grid {
    grid-template-columns: 1fr 1fr
  }
}

.r-card {
  position: relative;
  background: var(--gradient-card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card)
}

.r-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: rgba(0, 128, 255, .2)
}

.r-card p.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(248, 250, 252, .9)
}

.r-author {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}

.r-avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

/* Contact */
.form-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  overflow: hidden
}

@media(min-width:768px) {
  .form-card {
    padding: 2.5rem
  }
}

.form-card .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary)
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem
}

.form-head .eyebrow {
  font-size: .75rem;
  margin-bottom: .5rem;
  display: block
}

.form-head h2 {
  font-size: 1.6rem;
  margin-top: .25rem
}

.form-head .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: var(--gradient-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow)
}

@media(min-width:640px) {
  .form-head .icon-tile {
    display: flex
  }
}

.form-head .icon-tile svg {
  width: 22px;
  height: 22px
}

.form-head p {
  font-size: .875rem;
  color: var(--muted-fg);
  margin-top: .5rem
}

.form-section {
  margin-bottom: 1.75rem
}

.form-section-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem
}

.step-bullet {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 128, 255, .4);
  color: var(--primary);
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.form-section-head h3 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-fg);
  font-weight: 600;
  font-family: 'Inter'
}

.form-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr
  }
}

.field label {
  display: block;
  font-size: .875rem;
  margin-bottom: .5rem;
  font-weight: 500
}

.field label .req {
  color: var(--primary)
}

.field input,
.field textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: .7rem .85rem;
  border-radius: .55rem;
  font: inherit;
  outline: none;
  transition: border .2s
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary)
}

.field textarea {
  resize: vertical;
  min-height: 96px
}

.disclaimer {
  font-size: .75rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem
}

.disclaimer svg {
  width: 14px;
  height: 14px
}

.contact-grid {
  display: grid;
  gap: 2rem
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr
  }
}

.sidebar-card {
  position: relative;
  border-radius: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 1.75rem
}

@media(min-width:1024px) {
  .sidebar-card {
    position: sticky;
    top: 7rem
  }
}

.sidebar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem
}

.sidebar-head h2 {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Inter'
}

.live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: #34d399
}

.live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #34d399;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border)
}

.contact-row:last-child {
  border-bottom: 0
}

.contact-row .icon-tile {
  width: 40px;
  height: 40px;
  border-radius: .5rem;
  background: rgba(0, 128, 255, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s
}

.contact-row.accent .icon-tile {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-glow)
}

.contact-row .icon-tile svg {
  width: 20px;
  height: 20px
}

.contact-row:hover .icon-tile:not(.accent .icon-tile) {
  background: rgba(0, 128, 255, .25)
}

.contact-row .meta {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted-fg)
}

.contact-row .val {
  font-weight: 600;
  transition: color .2s
}

.contact-row:hover .val {
  color: var(--primary)
}

/* helpers */
.mb-7 {
  margin-bottom: 1.75rem
}

.mt-3 {
  margin-top: .75rem
}

.text-center {
  text-align: center
}


@media(max-width:768px) {
  .hero p.lead{
    width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .h1-display{
    margin: 10px 0;
    font-size: 29px;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
}
.badge{
  padding: .2rem 1rem;
  font-size: 13px;
}

.trust-item span{
  font-size: 14px;
}
.trustbar{
  display: none;
}
section.section {
    padding: 3rem 0;
}
.float-btn{
  width: 40px;
  height: 40px;
}

  
}