:root {
  --bg: #f8f9fa;
  --white: #fff;
  --ink: #111315;
  --text: #111827;
  --muted: #6b7280;
  --blue: #2563eb;
  --teal: #0f766e;
  --border: #e5e7eb;
  --dark: #1c1e22;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(17, 19, 21, .08);
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6
}

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

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

button,
input {
  font: inherit
}

button {
  cursor: pointer
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.skip-link {
  position: absolute;
  left: -9999px
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 250, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, .8);
  transition: .2s
}

.site-header.scrolled {
  box-shadow: 0 8px 25px rgba(17, 19, 21, .06)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 180px
}

.logo {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.06em
}

.logo img {
  width: 190px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px
}

.nav-links a {
  font-size: 14px;
  font-weight: 650;
  color: #4b5563;
  transition: .2s
}

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

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px
}

.search-toggle {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 12px
}

.search-toggle:hover {
  background: #eef0f3
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 750;
  font-size: 14px;
  transition: .2s
}
 .mobile-menu{
  display: none;
 }
.btn-primary {
  background: #F34E4E;
  color: #fff
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 19, 21, .16)
}

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: #1a1a1a;
}

.btn-outline:hover {
  border-color: #cbd5e1
}

.mobile-toggle {
  display: none;
  border: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 42px;
  height: 42px
}

.hero {
  padding: 54px 0 74px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #f34e4e;
  margin-bottom: 18px
}

.eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: #f34e4e
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0;
  color: var(--ink)
}

h1 {
  font-size: clamp(24px, 4vw, 54px);
  max-width: 720px
}

h2 {
  font-size: clamp(22px, 3vw, 36px)
}

h3 {
  font-size: 18px
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
  margin: 24px 0 30px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-media {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow)
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .2))
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  font-size: 13px;
  font-weight: 700
}

.section {
  padding: 30px 0
}

.section.alt {
  background: #fff
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  margin: 0
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid-3 {
  grid-template-columns: repeat(4, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .25s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef0f3
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s
}

.card:hover .card-media img {
  transform: scale(1.035)
}

.card-body {
  padding: 20px
}

.service-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px
}

.service-meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 18px
}

.card-link {
  font-size: 13px;
  font-weight: 800;
  color: #f34e4e
}

.category-card {
  padding: 28px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.category-card h3 {
  color: #fff
}

.category-card p {
  color: #c8ccd3;
  margin: 0;
  font-size: 14px
}

.category-card span {
  font-size: 12px;
  color: #f34e4e;
  font-weight: 700
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark);
  color: #fff;
  border-radius: 30px;
  overflow: hidden
}

.editorial img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover
}

.editorial-copy {
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.editorial-copy h2 {
  color: #fff
}

.editorial-copy p {
  color: #c8ccd3;
  margin: 22px 0 28px
}

.newsletter {
  background: #eef4ff;
  border: 1px solid #dbe7ff;
  border-radius: 28px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.newsletter p {
  color: var(--muted);
  margin: 8px 0 0
}

.newsletter-form {
  display: flex;
  gap: 8px;
  min-width: 420px
}

.input {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 13px 16px;
  outline: 0
}

.input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1)
}

.site-footer {
  background: #111315;
  color: #fff;
  padding: 30px 0 26px;
  margin-top: 40px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px
}

.footer-brand p {
  color: #aeb4bf;
  max-width: 310px;
  font-size: 14px
}

.logo-footer img{
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8e96a3;
  margin-bottom: 16px
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-links a {
  color: #d7dbe1;
  font-size: 14px
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid #2a2d32;
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8e96a3;
  font-size: 12px
}

.page-hero {
  padding: 72px 0 50px
}

.page-hero h1 {
  font-size: clamp(22px, 3vw, 36px)
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 750
}

.filter.active,
.filter:hover {
  background: #f34e4e;
  border-color: #f34e4e;
  color: #fff
}

.search-box {
  min-width: 260px;
  position: relative
}

.search-box input {
  padding-left: 42px
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af
}

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

.service-card .card-media {
  aspect-ratio: 16/9
}

.service-card .card-body {
  padding: 22px
}

.pill {
  display: inline-flex;
  background: #f1f5f9;
  color: #475569;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em
}

.feature-list {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: #596273;
  font-size: 13px
}



.prose h2 {
  font-size: 32px;
  margin: 50px 0 14px
}

.prose h3 {
  font-size: 21px;
  margin: 30px 0 8px
}

.prose p,
.prose li {
  color: #596273
}

.prose ul {
  padding-left: 22px
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.info-box {
  padding: 34px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px
}

.info-box:hover {
  border: 1px solid #fff;
  background: #f34e4e;
}


.info-box:hover h3 {
  color: #fff;
}


.info-box:hover p {
  color: #fff;
}

.info-box+.info-box {
  margin-top: 18px
}

.legal {
  padding: 60px 0
}



.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, .56);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: .2s
}

.modal.open {
  opacity: 1;
  visibility: visible
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  max-width: 820px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  transform: scale(.97);
  transition: .2s
}

.modal.open .modal-card {
  transform: scale(1)
}

.modal-image {
  min-height: 390px
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.modal-copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.modal-copy p {
  color: var(--muted);
  margin: 14px 0 24px
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .12);
  font-size: 21px;
  z-index: 2
}

.faq {
  display: grid;
  gap: 10px
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 17px 20px
}

.faq summary {
  font-weight: 750;
  cursor: pointer
}

.empty {
  padding: 40px;
  text-align: center;
  color: var(--muted);
  display: none
}

@media(max-width:980px) {

  .hero-grid,
  .about-grid,
  .editorial {
    grid-template-columns: 1fr
  }

  .hero-media {
    min-height: 430px
  }

  .hero-media img {
    min-height: 430px
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .newsletter {
    display: block
  }

  .newsletter-form {
    min-width: 0;
    margin-top: 20px
  }
}

@media(max-width:720px) {
  .container {
    width: min(var(--max), calc(100% - 20px))
  }

  .nav {
    height: 68px
  }

  .nav-links,
  .nav-actions .btn {
    display: none
  }

  .mobile-toggle {
    display: block;
    margin-left: auto
  }

  .nav-actions {
    margin-left: 0
  }

  .mobile-menu {
    display: none;
    padding: 0 14px 16px
  }

  .mobile-menu.open {
    display: grid;
    gap: 8px
  }

  .mobile-menu a {
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 700
  }

  .mobile-menu a:hover {
    background: #fff
  }

  .hero {
    padding: 35px 0 55px
  }

  .hero-media,
  .hero-media img {
    min-height: 360px
  }

  .section {
    padding: 55px 0
  }

  .section-head {
    display: block
  }

  .section-head p {
    margin-top: 12px
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .service-grid {
    grid-template-columns: 1fr
  }

  .editorial-copy {
    padding: 34px
  }

  .newsletter {
    padding: 28px
  }

  .newsletter-form {
    display: grid
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px
  }

  .toolbar {
    align-items: stretch
  }

  .search-box {
    width: 100%
  }

  .modal-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow: auto
  }

  .modal-image {
    min-height: 220px;
    height: 220px
  }

  .modal-copy {
    padding: 30px
  }

  h1 {
    font-size: 43px
  }
}


#welcomeTitle{
  font-size: 41px !important;
}


.hero-offer-text {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 18px;
    margin-top: 50px;
    background: rgba(209, 51, 58, 0.10);
    border: 1px solid rgba(209, 51, 58, 0.22);
    border-radius: 999px;

    color: #D1333A;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.2px;

    box-shadow: 0 6px 18px rgba(209, 51, 58, 0.08);
}

.new-offers{
    font-size: 20px;
    color: #D1333A;
    font-weight: 600;
}

.modal-close{
    display: none;
}
