/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-blue-600: oklch(54.6% 0.245 262.881);
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-7xl: 80rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --tracking-widest: 0.1em;
    --leading-tight: 1.25;
    --leading-relaxed: 1.625;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --aspect-video: 16 / 9;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
.navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: transparent;
      transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(2, 17, 18, 0.58);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    }

    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      height: 92px;
      padding: 0 28px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
      transition: height 0.3s ease;
    }

    .navbar.scrolled .navbar-inner {
      height: 76px;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-img {
      height: 104px;
      width: auto;
      display: block;
      object-fit: contain;
      margin-top: 10px;
    }

    .site-nav {
      justify-self: center;
    }

    .site-nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 28px;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      line-height: 1;
      font-weight: 500;
      transition: color 0.2s ease;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--accent);
    }

    .hamburger {
      justify-self: end;
      width: 32px;
      height: 22px;
      border: 0;
      background: transparent;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      height: 4px;
      background: var(--accent);
      border-radius: 9999px;
    }

    .hamburger span:nth-child(1),
    .hamburger span:nth-child(2) {
      width: 100%;
    }

    .hamburger span:nth-child(3) {
      width: 70%;
      margin-left: auto;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(0,0,0,0.9);
      backdrop-filter: blur(12px);
    }

    .mobile-menu.open { display: block; }

    .mobile-menu ul {
      list-style: none;
      margin: 0;
      padding: 18px 28px 22px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding-top: 92px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(rgba(2, 15, 17, 0.28), rgba(2, 15, 17, 0.28)),
        url('../assets/images/A.jpg') center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 18%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1580px;
      margin: 0 auto;
      padding: 72px 28px 38px;
      min-height: calc(100vh - 92px);
      display: flex;
      align-items: center;
    }

    .hero-copy {
      max-width: 820px;
      padding-left: 10px;
    }

    .eyebrow {
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: clamp(2.9rem, 8vw, 7rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin: 0 0 16px;
      font-weight: 800;
      max-width: 820px;
      text-wrap: balance;
    }

    .hero-desc {
      font-size: 22px;
      line-height: 1.55;
      color: #dce7e7;
      max-width: 490px;
      margin: 0 0 24px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 9999px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      padding: 10px 18px;
      transition: transform 0.2s ease, background-color 0.2s ease;
      box-shadow: 0 8px 24px rgba(255,106,20,0.18);
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }

    

    /* TICKER */
   /* ===== TICKER ===== */
.ticker {
  background: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.ticker-track {
  max-width: 1580px;
   
  margin: 0 auto;
  padding: 0 18px;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
   

  animation: none;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;

  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;

  background: #000000;
  color: var(--accent);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes ticker-slide-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1024px) {
  .ticker-track {
    max-width: none;
    width: max-content;
    margin: 0;
    padding: 0 18px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    animation: ticker-slide-right 18s linear infinite;
  }
}

/* ===== PROCESS SECTION ===== */
/* =========================================
   PROCESS SECTION
========================================= */

.process-section {
  position: relative;

  overflow: hidden;

   

  padding: 120px 0;
}

/* CONTAINER */

.process-section .container {
  position: relative;

  z-index: 2;

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 24px;
}

/* =========================================
   SVG ARROWS
========================================= */

.process-arrow {
  position: absolute;

  z-index: 1;

  pointer-events: none;

  opacity: 1;
}

/* LEFT */

.process-arrow-left {
  width: 240px;

 
  bottom: 270px;
}

/* RIGHT */

.process-arrow-right {
  width: 240px;

  right: -5px;
  top: 70px;
}

/* =========================================
   TITLE
========================================= */

.process-title {
  text-align: center;

  margin-bottom: 36px;
}

.process-title h2 {
  margin: 0;

  font-family: 'Adelle Sans', sans-serif;

  font-weight: 800;

  font-size: clamp(2.5rem, 5vw, 5.5rem);

  line-height: 0.95; 

  color: white;
}

.process-title .accent {
  color: #ff5a00;

  font-style: italic;
}

/* SMALL LINE */

.process-line {
  width: 56px;
  height: 3px;

  background: #ff5a00;

  margin: 24px auto 0;
}

/* =========================================
   DESCRIPTION
========================================= */

.process-description {
  max-width: 960px;

  margin: 0 auto;

  text-align: center;
}

.process-description p {
  margin: 0 0 16px;

  color: white;

  font-size: 25px;
  line-height: 1.8;

  font-weight: 400;
}

/* =========================================
   STATS
========================================= */

.process-stats {
  display: flex;

  justify-content: center;
  align-items: center;

  margin-top: 80px;
}

/* SINGLE CIRCLE */

.process-stat {
  width: 360px;
  height: 360px;

  border: 3.5px solid rgba(255,255,255,0.65);

  border-radius: 50%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: transparent;

  margin-left: -18px;
}

.process-stat:first-child {
  margin-left: 0;
}

/* NUMBER */

.process-stat strong {
  display: block;

  font-family: 'Adelle Sans', sans-serif;

  font-size: 46px;
  line-height: 1;

  font-weight: 800;

  color: #ff5a00;

  margin-bottom: 10px;
}

/* LABEL */

.process-stat span {
  color: white;

  font-size: 20px;
  line-height: 1;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .process-section {
    padding: 90px 0;
  }

  /* SVG ARROWS */

  .process-arrow-left {
    width: 130px;

     
    bottom: 680px;
  }

  .process-arrow-right {
    width: 130px;

     
    top: 120px;
  }

  /* TITLE */

  .process-title h2 {
    font-size: 3rem;
  }

  /* DESCRIPTION */

  .process-description {
    padding: 0 10px;
  }

  .process-description p {
    font-size: 15px;

    line-height: 1.9;
  }

  /* CIRCLES VERTICAL */

  .process-stats {
    flex-direction: column; 
    

    margin-top: 60px;
  }

  .process-stat {
    margin-left: 0;
margin-bottom: -22px;
    width: 260px;
    height: 260px;
  }

  .process-stat strong {
    font-size: 40px;
  }

  .process-stat span {
    font-size: 18px;
  }

}

    /* SECTIONS */
    .section {
      position: relative;
      padding: 92px 28px;
    }

    .section-dark {
      background: var(--bg-dark);
    }

    .section-darker {
      background: var(--bg-darker);
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-heading {
      text-align: center;
      max-width: 840px;
      margin: 0 auto;
    }

    .section-title {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.05;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .section-title .accent {
      color: var(--accent);
      font-style: italic;
    }

    .section-title-underline {
      width: 58px;
      height: 3px;
      margin: 18px auto 22px;
      background: var(--accent);
      border-radius: 9999px;
    }

    .section-copy {
      color: #e0ecec;
      font-size: 15px;
      line-height: 1.7;
      max-width: 630px;
      margin: 0 auto;
    }

    /* DECORATIVE CORNERS */
    .corner {
      position: absolute;
      width: 120px;
      height: 120px;
      border-color: var(--accent);
      opacity: 0.7;
      pointer-events: none;
    }

    .corner.left {
      left: 0;
      top: 120px;
      border-left: 1px solid var(--accent);
      border-top: 1px solid var(--accent);
      transform: translateX(-8px);
      clip-path: polygon(0 0, 100% 0, 100% 7%, 7% 7%, 7% 100%, 0 100%);
    }

    .corner.right {
      right: 0;
      top: 36px;
      border-right: 1px solid var(--accent);
      border-top: 1px solid var(--accent);
      transform: translateX(8px);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 93% 100%, 93% 7%, 0 7%);
    }

    .corner.bottom-left {
      left: 0;
      bottom: 10px;
      border-left: 1px solid var(--accent);
      border-bottom: 1px solid var(--accent);
      transform: translateX(-8px);
      clip-path: polygon(0 0, 7% 0, 7% 93%, 100% 93%, 100% 100%, 0 100%);
    }

    /* STATS */
    .stats {
      margin: 72px auto 84px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .stat-circle {
      width: 164px;
      height: 164px;
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      margin-left: -28px;
      background: transparent;
    }

    .stat-circle:first-child {
      margin-left: 0;
    }

    .stat-value {
      color: var(--accent);
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 500;
    }

    /* IMAGE BLOCK */
 

    .grid-backdrop {
      position: absolute;
      inset: 52px 14px 0 14px;
      border-radius: 18px;
      background-image:
        linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
      background-size: 54px 54px;
      opacity: 0.8;
      pointer-events: none;
    }

   

    .spark {
      position: absolute;
      width: 10px;
      height: 10px;
      background: var(--accent);
      transform: rotate(45deg);
    }

    .spark.one { right: 96px; top: 26px; }
    .spark.two { right: 72px; top: 42px; }
    .spark.three { left: 84px; bottom: 6px; }
    .spark.four { left: 108px; bottom: 20px; }

  /* ===== PROBLEM GRID ===== */

.problem-title {
  text-align: center;
  margin-bottom: 42px;
}

.problem-title h2 {
  margin: 0;

  font-family: 'Adelle Sans', sans-serif;
  font-weight: 800;

  font-size: clamp(2rem, 4vw, 4rem);

  line-height: 1;
  letter-spacing: -0.04em;

  color: white;
}

.problem-title .orange {
  color: var(--accent);
}

/* GRID */

.problem-grid {
  min-width: 500px;
  min-height: 500px;
  cursor: pointer;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 5px solid white;
}

/* CARD */

.flip-card {
  position: relative;

  min-height: 180px;

  perspective: 1200px;

  border-right: 2.5px solid white;
  border-bottom: 2.5px solid white;
}

.flip-card:nth-child(3n) {
  border-right: 0;
}

 

/* INNER */

.flip-card-inner {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 180px;

  transition: transform 0.7s ease;

  transform-style: preserve-3d;
}

/* ACTIVE FLIP */

.flip-card.active .flip-card-inner {
  transform: rotateY(180deg);
}

/* BOTH SIDES */

.flip-card-front,
.flip-card-back {
  position: absolute;

  inset: 0;

  padding: 22px;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* FRONT */

.flip-card-front {
  background: transparent;
}

/* BACK */

.flip-card-back {
  background: var(--accent);

  transform: rotateY(180deg);
}

/* ARROW */

.problem-arrow {
  position: absolute;

  top: 100px;
  left: 18px;

  color: var(--accent);

  font-size: 45px;
  font-weight: 800;

  line-height: 1;
}

/* FRONT TEXT */

.problem-text {
  margin: 0;

  font-family: 'Adelle Sans', sans-serif;
  font-weight: 700;

  font-size: 30px;
  line-height: 1.08;

  letter-spacing: -0.02em;

  color: white;

   
}

/* BACK TEXT */

.problem-back-text {
  margin: 0;

  font-family: 'Adelle Sans', sans-serif;
  font-weight: 700;

  font-size: 17px;
  line-height: 1.2;

  color: white;

  max-width: 220px;
}

/* MOBILE */

@media (max-width: 768px) {

  .problem-arrow {
    top: 50px;
    
  }
  

  .problem-grid {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .flip-card {
    border-right: 0;
    border-bottom: 2.5px solid white;
  }

  .flip-card:last-child {
    border-bottom: 0;
  }

}
    
/* ===== RESULTS ===== */

.results-section {
   
  padding: 100px 0;
}

/* HEADING */

.results-heading {
  text-align: center;
  margin-bottom: 40px;
}

.results-heading h2 {
  margin: 0;

  font-family: 'Adelle Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);

  line-height: 1;
  letter-spacing: -0.04em;

  font-weight: 800;

  color: white;
}

.results-heading span {
  color: var(--accent);
}

/* SLIDER */

.results-slider {
  width: 100%;

  border-top: 2px solid rgba(255,255,255,0.75);
  border-bottom: 2px solid rgba(255,255,255,0.75);
}

/* VIEWPORT */

.results-viewport {
  overflow: hidden;
}

/* TRACK */

.results-track {
  display: flex;
  min-height: 650px;

  transition: transform 0.7s ease;
}

/* CARD */

.result-card {
  flex: 0 0 33.3333%;

  min-height: 470px;

  border-right: 2px solid rgba(255,255,255,0.75);

  display: flex;
  flex-direction: column;

  box-sizing: border-box;

  overflow: hidden;
}

.result-card-content {
  flex: 1;

  padding: 38px 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* METRICS */

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.metric-value {
  font-family: 'Adelle Sans', sans-serif;

  font-size: 64px;
  line-height: 1;

  font-weight: 800;

  color: white;

  letter-spacing: -0.05em;

  flex-shrink: 0;
}

.metric-label {
  color: white;

  font-size: 24px;
  line-height: 1.05;

  padding-top: 8px;
}

/* BOTTOM */

.result-bottom {
  display: flex;

  align-items: flex-end;

  gap: 18px;

  margin-top: 30px;
}

/* IMAGE */

.result-thumb {
  width: 350px;
  height: 250px;

  overflow: hidden;

  flex-shrink: 0;
}

.result-thumb img {
  width: 100%;
  height: 100%;

  object-fit:fill ;
}

/* ROAS */

.result-side-metric {
  align-self: flex-end;

  padding-bottom: 4px;

  flex-shrink: 0;

  text-align: left;
}

.result-side-metric strong {
  display: block;

  font-family: 'Adelle Sans', sans-serif;

  font-size: 64px;
  line-height: 0.9;

  color: white;

  margin: 0;
}

.result-side-metric span {
  display: block;

  color: white;

  font-size: 20px;
  line-height: 1;

  margin-top: 4px;
}

/* COMPANY */

.result-company {
  width: 100%;

  border-top: 2px solid rgba(255,255,255,0.75);

  padding: 16px 28px 24px;

  color: var(--accent);

  font-size: 20px;
  font-weight: 700;

  box-sizing: border-box;
}

.result-company::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 2px;

  background: rgba(255,255,255,0.75);
}

/* PLACEHOLDER */

.result-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: white;

  font-size: 32px;
  font-family: 'Adelle Sans', sans-serif;
}

/* CONTROLS */

.results-controls {
  height: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 100px;

  border-top: 2px solid rgba(255,255,255,0.75);
}

/* ARROWS */

.results-arrow {
  border: 0;
  background: transparent;

  color: var(--accent);

  font-size: 60px;
  font-weight: 1000;

  cursor: pointer;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  

  .result-card {
    flex: 0 0 100%;

    border-right: 0;
  }

  .metric-value {
    font-size: 44px;
  }

  .metric-label {
    font-size: 22px;
  }

  .results-controls {
    padding: 0 30px;
  }

}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .result-card {
    width: 100%;
     
    border-right: 0;
  }

  .metric-value {
    font-size: 42px;
  }

  .metric-label {
    font-size: 22px;
  }

  .results-controls {
    padding: 0 30px;
  }

}

    /* TESTIMONIAL */
    .testimonial-wrap {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial-stage {
      margin-top: 34px;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: #0b2628;
      min-height: 356px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-stage img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      filter: saturate(0.95);
    }

    .testimonial-play {
      position: relative;
      z-index: 1;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.8);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.14);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      backdrop-filter: blur(8px);
    }

    .testimonial-meta {
      position: absolute;
      left: 24px;
      bottom: 18px;
      z-index: 1;
      color: #fff;
    }

    .testimonial-meta strong {
      display: block;
      font-family: 'Adelle Sans', sans-serif;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.02em;
    }

    .testimonial-meta span {
      display: block;
      color: #d9e4e4;
      font-size: 13px;
      letter-spacing: 0.04em;
    }

    .testimonial-arrows {
      position: absolute;
      inset: 50% -58px auto -58px;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
    }

    .testimonial-arrows .results-arrow {
      pointer-events: auto;
    }
     /*Strategy Section*/
 
.strategy-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(6, 47, 49, 0.98), rgba(5, 40, 42, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
}

/* Full-width Responsive Grid */
.strategy-grid {
  position: absolute;
  width: 95%;
  max-width: 1100px;
  height: 70vh;
  background-image: 
    /* Radial gradients for rounded cell corners */
    radial-gradient(circle, rgba(255,255,255,0) 1px, rgba(255,255,255,0.26) 1px),
    radial-gradient(circle, rgba(255,255,255,0) 1px, rgba(255,255,255,0.26) 1px),
    /* Horizontal lines - much brighter */
    linear-gradient(rgba(255,255,255,0.26) 2px, transparent 2px),
    /* Vertical lines - much brighter */
    linear-gradient(90deg, rgba(255,255,255,0.26) 2px, transparent 2px);
  background-size: 
    8.33% 14.28%,
    8.33% 14.28%,
    8.33% 14.28%,
    8.33% 14.28%;
  background-position: 
    0 0,
    8.33% 14.28%,
    0 0,
    0 0;
  z-index: 1;
  border: 2px solid rgba(255,255,255,0.24);
  border-radius: 16px;
  background-color: rgba(5, 22, 24, 0.5);
  box-shadow: 
    inset 0 0 80px rgba(255, 255, 255, 0.06),
    inset 0 0 1px rgba(255,255,255,0.18);
}

@media (max-width: 1024px) {
  .strategy-grid {
    width: 92%;
    max-width: 900px;
    height: 60vh;
  }
  
  .strategy-shape, .strategy-shadow {
    width: 65vw;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .strategy-grid {
    width: 90%;
    max-width: 100%;
    height: 50vh;
    background-size: 10% 16.66%;
  }
  
  .strategy-shape, .strategy-shadow {
    width: 80vw;
    max-width: 100%;
    transform: rotate(-25deg) translateX(-5%) translateY(-8%);
  }
  
  .strategy-shadow {
    transform: rotate(-25deg) translateX(-3%) translateY(-6%);
  }
  
  .star {
    width: 16px;
    height: 16px;
  }
}
       
    /* FOOTER */
    footer {
      background: var(--bg-dark);
       
      padding: 48px 28px 36px;
    }

    .footer-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.3fr 0.9fr 0.6fr;
      gap: 36px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-brand img {
      width: 82px;
      height: auto;
    }

    .footer-brand h2 {
      font-size: clamp(2rem, 3.2vw, 3.1rem);
      line-height: 0.96;
      margin: 0;
      max-width: 420px;
    }

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

    .footer-col p {
      margin: 0 0 12px;
      color: #d3dddd;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      line-height: 1.2;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .social {
      display: flex;
      justify-content: flex-end;
    }

    .social a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-family: 'Adelle Sans', sans-serif;
      font-weight: 800;
      font-size: 16px;
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 34px auto 0;
      padding-top: 18px;
       
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: #b7c7c7;
      font-size: 12px;
    }

    /* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:150px 0 80px;
  position:relative;
}

.heading-wrap{
  text-align:center;
   
  margin:auto;
}

.heading-wrap h1{
  font-size:56px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:10px;
}

.heading-wrap h2{
  font-size:52px;
  color:#ff6b00;
  font-weight:800;
  margin-bottom:10px;
}

.orange-line{
  width:90px;
  height:4px;
  background:#ff6b00;
  margin:0 auto 35px;
}

.top-description,
.bottom-description{
  font-size:22px;
  line-height:1.9;
  color:#d7d7d7;
  max-width:980px;
  margin:auto;
}

.top-description{
  margin-bottom:25px;
}

 
 
/* =========================================
   TARGET VISUAL SECTION
========================================= */

.target-section{
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #012f2e;
}

/* =========================================
   GRID BACKGROUND
========================================= */

.grid-bg-about{
    position: absolute;

    width: 1120px;
    height: auto;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 1;
}

.grid-bg-about img{
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   MAIN TARGET VISUAL
========================================= */

.target-visual{
    position: absolute;

    width: 720px;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    z-index: 3;
}

.target-visual img{
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   STARS
========================================= */

.star{
    position: absolute;
    width: 62px;
    z-index: 5;
}

.star-top{
    top: 0px;
    right: 320px;
}

.star-bottom{
    bottom: 0px;
    left: 320px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .grid-bg-about
    {
        width: 720px;
    }

    .target-visual{
        width: 540px;
    }

    .star-top{
        right: 120px;
    }

    .star-bottom{
        left: 120px;
    }

}

@media(max-width: 992px){

    .target-section{
        height: 560px;
    }

    .grid-bg-about{
        width: 620px;
    }

    .target-visual{
        width: 470px;
    }

    .star{
        width: 30px;
    }

    .star-top{
        top: 90px;
        right: 70px;
    }

    .star-bottom{
        bottom: 80px;
        left: 70px;
    }

}

@media(max-width: 768px){

    .target-section{
        height: 460px;
    }

    .grid-bg-about{
        width: 92%;
    }

    .target-visual{
        width: 62%;
    }

    .star{
        width: 22px;
    }

    .star-top{
        top: 60px;
        right: 25px;
    }

    .star-bottom{
        bottom: 90px;
        left: 25px;
    }

}

/* =========================
   VALUES SECTION
========================= */

.values-section{
  padding:50px 0 120px;
}

.values-heading{
  text-align:center;
  font-size:52px;
  font-weight:800;
  margin-bottom:25px;
}

.values-description{
  max-width:1000px;
  margin:0 auto 70px;
  text-align:center;
  color:#d8d8d8;
  line-height:1.9;
  font-size:20px;
}

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

.value-card{
  text-align:center;
}

.value-card img{
  width:100%;
  height:280px;
  object-fit:cover;

  border-radius:999px;
  border:2px solid rgba(255,255,255,0.2);

  transition:0.4s ease;
}

.value-card:hover img{
  transform:translateY(-8px);
}

.value-card h3{
  margin-top:18px;
  font-size:20px;
  font-weight:700;
  letter-spacing:1px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .heading-wrap h1{
    font-size:42px;
  }

  .heading-wrap h2{
    font-size:38px;
  }

  .values-heading{
    font-size:40px;
  }

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

  .floating-shape{
    width:300px;
    left:80px;
  }

}

@media(max-width:768px){

  .about-section{
    padding-top:100px;
     padding-bottom:0px;
  }

  .heading-wrap h1{
    font-size:34px;
  }

  .heading-wrap h2{
    font-size:30px;
  }

  .top-description,
  .bottom-description,
  .values-description{
    font-size:22px;
  }

  .target-section{
    height:500px;
  }

  .grid-bg-about{
    background-size:40px 40px;
    height:280px;
  }

  .floating-shape{
    width:220px;
    height:80px;
    left:30px;
    bottom:110px;
  }

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

  .values-heading{
    font-size:32px;
  }

}

@media(max-width:480px){

  .heading-wrap h1{
    font-size:28px;
  }

  .heading-wrap h2{
    font-size:24px;
  }

  .target-image img{
    width:100%;
  }

} 

    /* FADE */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      animation: fadeUp 0.65s ease both;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .site-nav ul { gap: 20px; }
       
      .results-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

       
      .result-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.24); }
      .result-card:last-child { border-bottom: 0; }
      .footer-links { grid-template-columns: 1fr 1fr; }
      .social { justify-content: flex-start; }
      .testimonial-arrows {
        inset: auto 0 -42px 0;
        transform: none;
      }
    }

    @media (max-width: 900px) {
      .site-nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .navbar-inner {
        grid-template-columns: auto auto;
      }

      .hero-copy {
        padding-left: 0;
      }

      .stats {
        gap: 14px;
      }

      .stat-circle {
        margin-left: 0;
        width: 148px;
        height: 148px;
      }

      .metric-value {
        font-size: 36px;
      }

      .metric-label {
        font-size: 22px;
      }

      .testimonial-stage {
        min-height: 280px;
      }
    }

    @media (max-width: 640px) {
      .navbar-inner {
        height: 76px;
        padding: 0 18px;
      }

      .navbar.scrolled .navbar-inner {
        height: 68px;
      }

      .logo-img {
        height: 42px;
      }

      .hero {
        min-height: 92vh;
    
      }

      .hero-inner {
        padding: 54px 18px 28px;
      }

      .hero-copy {
        max-width: 100%;
      }

      .hero-title {
        font-size: clamp(2.35rem, 13vw, 3.15rem);
        max-width: 330px;
      }

      .hero-desc {
        font-size: 15px;
        max-width: 330px;
      }

      .section {
        padding: 72px 18px;
      }

      .section-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
      }

      .section-copy {
        font-size: 14px;
      }

      .stats {
        margin: 56px auto 68px;
      }

      .stat-circle {
        width: 136px;
        height: 136px;
        margin-left: -14px;
      }
 
 

      .result-top {
        grid-template-columns: 1fr;
      }

      .result-thumb {
         
        height: 190px;
      }

      .footer-grid {
        gap: 22px;
      }

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

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .corner {
        display: none;
      }
    }


    /* =========================================
   CAPABILITIES SECTION
========================================= */

.capabilities-section{
    background: #012f2e;
    padding: 120px 0;
    color: #ffffff;
    font-family: 'Adelle Sans', sans-serif;
}

.container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

/* =========================================
   HEADING
========================================= */

.section-heading2{
    text-align: center;
    margin-bottom: 120px;
}

.section-heading2 h2{
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.section-heading2 h3{
    font-size: 60px;
    font-weight: 800;

    color: #ff5b00;

    font-style: italic;

    line-height: 1.2;

    margin-top: 8px;
}

/* SMALL ORANGE UNDERLINE */

.heading-line{
    width: 85px;
    height: 4px;

    background: #ff5b00;

    margin: 28px auto 38px;
}

/* DESCRIPTION */

 
/* =========================================
   GROUPS
========================================= */

.capability-group{
    margin-top: 70px;
}

/* =========================================
   TITLE ROW
========================================= */

.group-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 35px;
}

.group-title .line{
    flex: 1;
    max-width: 500px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.group-title h4{
    font-size: 42px;
    font-weight: 700;
}

/* =========================================
   TAGS
========================================= */

.capability-tags{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tag{
    border: 2px solid rgba(255,255,255,0.75);
    border-radius: 100px;

    padding: 14px 28px;

    color: #ff6b00;
    font-size: 22px;
    font-weight: 700;

    transition: 0.3s ease;
    cursor: pointer;
}

.tag:hover{
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================
   BOTTOM TEXT
========================================= */

.bottom-text{
    text-align: center;

    margin-top: 90px;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.6;

    color: rgba(255,255,255,0.92);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .section-heading2 h2,
    .section-heading2 h3{
        font-size: 54px;
    }

    .group-title h4{
        font-size: 36px;
    }

    .bottom-text{
        font-size: 34px;
    }

}

@media(max-width: 992px){

    .capabilities-section{
        padding: 90px 0;
    }

    .section-heading2 h2,
    .section-heading2 h3{
        font-size: 42px;
    }

    .group-title h4{
        font-size: 30px;
    }

    .tag{
        font-size: 16px;
        padding: 12px 22px;
    }

    .bottom-text{
        font-size: 28px;
    }

}

@media(max-width: 768px){

    .section-heading2 h2,
    .section-heading2 h3{
        font-size: 32px;
    }

    .section-heading2 p{
        font-size: 15px;
    }

    .group-title{
        gap: 14px;
    }

    .group-title h4{
        font-size: 24px;
        white-space: nowrap;
    }

    .group-title .line{
        max-width: 120px;
    }

    .tag{
        width: 80%;
        text-align: center;
    }

    .bottom-text{
        font-size: 22px;
    }

}

/* =========================================
   CASE STUDIES SECTION
========================================= */

.case-studies-section{
    background: #012f2e;
    padding: 120px 0;
    overflow: hidden;
    font-family: 'Adelle Sans', sans-serif;
    color: #ffffff;
}

.container{
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* =========================================
   HEADING
========================================= */

/* ===== CASE STUDY MODAL ===== */
.case-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,18,18,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  padding: 20px;
  box-sizing: border-box;
}

.case-modal-overlay.open { display: flex; }

.case-modal {
  background: rgba(1,47,46,0.98);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 20px 24px;
  max-width: 1500px;
  width: min(100%, 1450px);
  max-height: 86vh;
  overflow: hidden;
  position: relative;
}

.case-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.case-modal-close:hover,
.case-modal-close:focus-visible {
  background: rgba(255,255,255,0.18);
}

.case-modal-close:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
}

.case-modal-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-height: calc(86vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
}

.case-modal-item {
  flex: 1 0 0px;
  text-align: center;
  padding: 22px 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
  min-width: 0;
}

.case-modal-item:first-child {
  border-left: none;
}

.case-modal-item .value {
  font-family: 'Adelle Sans', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #ffffff;
  white-space: normal;
}

.case-modal-item .label {
  margin-top: 3px;
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  white-space: normal;
  word-break: break-word;
}

.case-modal-divider {
  display: none;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
  .case-modal {
    padding: 14px;
    border-radius: 12px;
    width: min(100%, 96vw);
    max-width: 520px;
  }
  .case-modal-close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .case-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: calc(82vh - 32px);
    overflow-y: auto;
    padding-right: 6px;
  }
  .case-modal-divider {
    display: none;
  }
  .case-modal-item {
    padding: 14px 10px 16px;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .case-modal-item:last-child {
    border-bottom: none;
  }
  .case-modal-item .value {
    font-size: 26px;
  }
}


.section-heading2{
    text-align: center;
    margin-bottom: 60px;
}

.section-heading2 h2{
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
}

.section-heading2 h3{
    font-size: 58px;
    font-weight: 800;
    color: #ff6b00;
    margin-top: 10px;
    line-height: 1.2;
}

.section-heading2 p{
    margin-top: 30px;
    font-size: 22px;
    color: rgba(255,255,255,0.75);
}

.section-heading2 span{
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
}

/* =========================================
   CASE ITEM
========================================= */

.case-study-item{
    margin-bottom: 160px;
}


.visual-wrapper{
    position: relative;

    width: 1060px;
    height: 720px;

    margin: auto;
} 
/* =========================================
   GRID
========================================= */

.grid-bg{
    position: absolute;

    width: 100%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 1;
}

.grid-bg img{
    width: 100%;
    display: block;
}

/* =========================================
   IMAGE
========================================= */

.case-image{
    position: absolute;

    width: 90%;

    left: 50%;
    top: 49.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
}

.case-image-1{
    position: absolute;

    width: 80%;

    left: 50%;
    top: 49.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
}

.case-image img{
    width: 100%;
    display: block;
    border-radius: 10px;
}

.case-image-1 img{
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* =========================================
   CONTENT
========================================= */

.case-content{
    text-align: center;

    max-width: 1000px;

    margin: 70px auto 0;
}

.case-content h4{
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;

    margin-bottom: 24px;
}


.case-content p{
    font-size: 22px;
    line-height: 1.9;

    color: rgba(255,255,255,0.78);

    margin-bottom: 35px;
}


/* =========================================
   BUTTON
========================================= */

.know-more-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 170px;
    height: 52px;

    background: #ff6b00;

    border-radius: 100px;

    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s ease;
}

.know-more-btn:hover{
    transform: translateY(-3px);
}

 

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1200px){

    .section-heading2 h2{
        font-size: 54px;
    }

    .section-heading2 h3{
        font-size: 48px;
    }

    .grid-bg,
    .case-image{
        width: 650px;
    }
     .case-image-1{
        width: 650px;
    }

}

@media(max-width: 992px){

    .case-studies-section{
        padding: 90px 0;
    }

    .section-heading2{
        margin-bottom: 90px;
    }

    .section-heading2 h2{
        font-size: 42px;
    }

    .section-heading2 h3{
        font-size: 38px;
    }

    .grid-bg,
    .visual-wrapper{
        width: 90%;
        height: 240px;
    }

    .case-image{
        width: 68%;
         
    position: absolute;

   

    left: 50%;
    top: 46.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
 
    }

      .case-image-1{
        width: 68%;
         
    position: absolute;

    

    left: 50%;
    top: 46.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
 
    }



    .case-content h4{
        font-size: 34px;
    }

    .star-top{
        right: 40px;
    }

    .star-bottom{
        left: 40px;
    }

}

@media(max-width: 768px){

    .section-heading2 h2{
        font-size: 32px;
    }

    .section-heading2 h3{
        font-size: 28px;
    }

    .section-heading2 p,
    .section-heading2 span{
        font-size: 15px;
    }

    .case-study-item{
        margin-bottom: 120px;
    }

    .case-content{
        margin-top: 35px;
    }

    .visual-wrapper{
        height:  150px;
    }

    .case-image{
         
         
    position: absolute;

    width: 80%;

    left: 50%;
    top: 25.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
 
    }

    .case-image-1{
         
         
    position: absolute;

    width: 70%;

    left: 50%;
    top: 25.5%;

    transform: translate(-50%, -50%);

    z-index: 3;
 
    }

    .case-content h4{
        font-size: 32px;
    }

    .case-content p{
        font-size: 15px;
    }

    .know-more-btn{
        width: 150px;
        height: 48px;
        font-size: 14px;
    }

  

}
/* =========================================
   CONTACT SECTION
========================================= */

.ub-contact-section{

    width: 100%;

    padding: 120px 20px 100px;

    background: #012f2e;

    font-family: 'Adelle Sans', sans-serif;

    overflow: hidden;
}

/* =========================================
   CONTAINER
========================================= */

.ub-contact-container{

    width: 100%;
    max-width: 1180px;

    margin: auto;
}

/* =========================================
   HEADING
========================================= */

.ub-contact-heading{

    text-align: center;

    margin-bottom: 70px;
}

.ub-contact-heading h2{

    font-size: 72px;
    font-weight: 800;

    color: #ffffff;

    line-height: 1.1;
}

/* ORANGE LINE */

.ub-contact-line{

    width: 95px;
    height: 4px;

    background: #ff5b00;

    margin: 28px auto 34px;
}

.ub-contact-heading p{

    font-size: 20px;
    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    max-width: 900px;

    margin: auto;
}

/* =========================================
   FORM
========================================= */

.ub-contact-form{

    width: 100%;
    max-width: 980px;

    margin: auto;
}

/* =========================================
   FORM ROW
========================================= */

.ub-form-row{

    display: flex;

    align-items: stretch;

    margin-bottom: 28px;
}

/* =========================================
   LABEL
========================================= */

.ub-form-label{

    width: 220px;

    background: transparent;

    border: 2px solid rgba(255,255,255,0.75);

    border-right: none;

    display: flex;
    align-items: center;

    padding: 0 22px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

/* =========================================
   FIELD AREA
========================================= */

.ub-form-field{

    flex: 1;

    border: 2px solid rgba(255,255,255,0.75);

    background: #dfe8e6;
}

/* =========================================
   INPUT
========================================= */

.ub-form-field input,
.ub-form-field textarea{

    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    font-family: inherit;

    font-size: 18px;

    color: #012f2e;

    padding: 18px 22px;
}

/* =========================================
   TEXTAREA
========================================= */

.ub-message-row textarea{

    min-height: 130px;

    resize: vertical;
}

/* =========================================
   BOTTOM TITLE
========================================= */

.ub-contact-bottom-title{

    text-align: center;

    margin-top: 60px;
}

.ub-contact-bottom-title h3,
.ub-contact-bottom-title .btn-primary {

    font-size: 72px;
    font-weight: 800;

    color: #ffffff;

    line-height: 1.1;
}

.ub-contact-bottom-title .btn-primary {
    display: inline-flex;
    padding: 18px 36px;
    border-radius: 9999px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(255,106,20,0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.ub-contact-bottom-title .btn-primary:hover,
.ub-contact-bottom-title .btn-primary:focus-visible {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.ub-contact-bottom-title .btn-primary:focus-visible {
    outline: 2px solid rgba(255,255,255,0.9);
    outline-offset: 4px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 992px){

    .ub-contact-section{
        padding: 90px 20px 80px;
    }

    .ub-contact-heading h2,
    .ub-contact-bottom-title h3,
    .ub-contact-bottom-title .btn-primary {
        font-size: 54px;
    }

    .ub-form-label{
        width: 180px;
        font-size: 18px;
    }

}

@media(max-width: 768px){

    .ub-contact-heading{
        margin-bottom: 50px;
    }

    .ub-contact-heading h2,
    .ub-contact-bottom-title h3,
    .ub-contact-bottom-title .btn-primary {
        font-size: 40px;
    }

    .ub-contact-heading p{
        font-size: 16px;
    }

    .ub-form-row{

        flex-direction: column;

        margin-bottom: 22px;
    }

    .ub-form-label{

        width: 100%;

        border-right: 2px solid rgba(255,255,255,0.75);
        border-bottom: none;

        min-height: 60px;
    }

    .ub-form-field{

        width: 100%;
    }

    .ub-form-field input,
    .ub-form-field textarea{

        font-size: 16px;
        padding: 16px 18px;
    }

}

@media(max-width: 480px){

    .ub-contact-section{
        padding: 70px 15px;
    }

    .ub-contact-heading h2,
    .ub-contact-bottom-title h3,
    .ub-contact-bottom-title .btn-primary {
        font-size: 32px;
    }

    .ub-contact-line{
        width: 70px;
    }

}

@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }
  .top-0 {
    top: calc(var(--spacing) * 0);
  }
  .top-1\/2 {
    top: calc(1 / 2 * 100%);
  }
  .right-0 {
    right: calc(var(--spacing) * 0);
  }
  .right-4 {
    right: calc(var(--spacing) * 4);
  }
  .bottom-4 {
    bottom: calc(var(--spacing) * 4);
  }
  .left-0 {
    left: calc(var(--spacing) * 0);
  }
  .left-4 {
    left: calc(var(--spacing) * 4);
  }
  .z-10 {
    z-index: 10;
  }
  .z-20 {
    z-index: 20;
  }
  .z-50 {
    z-index: 50;
  }
  .col-span-1 {
    grid-column: span 1 / span 1;
  }
  .m-0 {
    margin: calc(var(--spacing) * 0);
  }
  .mx-auto {
    margin-inline: auto;
  }
  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }
  .mt-12 {
    margin-top: calc(var(--spacing) * 12);
  }
  .mt-16 {
    margin-top: calc(var(--spacing) * 16);
  }
  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-12 {
    margin-bottom: calc(var(--spacing) * 12);
  }
  .mb-14 {
    margin-bottom: calc(var(--spacing) * 14);
  }
  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-flex {
    display: inline-flex;
  }
  .aspect-video {
    aspect-ratio: var(--aspect-video);
  }
  .h-0\.5 {
    height: calc(var(--spacing) * 0.5);
  }
  .h-8 {
    height: calc(var(--spacing) * 8);
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-16 {
    height: calc(var(--spacing) * 16);
  }
  .h-auto {
    height: auto;
  }
  .h-full {
    height: 100%;
  }
  .min-h-screen {
    min-height: 100vh;
  }
  .w-4 {
    width: calc(var(--spacing) * 4);
  }
  .w-6 {
    width: calc(var(--spacing) * 6);
  }
  .w-8 {
    width: calc(var(--spacing) * 8);
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-16 {
    width: calc(var(--spacing) * 16);
  }
  .w-80 {
    width: calc(var(--spacing) * 80);
  }
  .w-full {
    width: 100%;
  }
  .max-w-2xl {
    max-width: var(--container-2xl);
  }
  .max-w-3xl {
    max-width: var(--container-3xl);
  }
  .max-w-4xl {
    max-width: var(--container-4xl);
  }
  .max-w-5xl {
    max-width: var(--container-5xl);
  }
  .max-w-7xl {
    max-width: var(--container-7xl);
  }
  .max-w-xl {
    max-width: var(--container-xl);
  }
  .flex-shrink {
    flex-shrink: 1;
  }
  .grow {
    flex-grow: 1;
  }
  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .resize {
    resize: both;
  }
  .snap-x {
    scroll-snap-type: x var(--tw-scroll-snap-strictness);
  }
  .snap-mandatory {
    --tw-scroll-snap-strictness: mandatory;
  }
  .snap-start {
    scroll-snap-align: start;
  }
  .list-none {
    list-style-type: none;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-7 {
    gap: calc(var(--spacing) * 7);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-12 {
    gap: calc(var(--spacing) * 12);
  }
  .gap-16 {
    gap: calc(var(--spacing) * 16);
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .overflow-x-auto {
    overflow-x: auto;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .border-white\/10 {
    border-color: color-mix(in srgb, #fff 10%, transparent);
    @supports (color: color-mix(in lab, red, red)) {
      border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
    }
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .object-cover {
    object-fit: cover;
  }
  .p-0 {
    padding: calc(var(--spacing) * 0);
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-5 {
    padding: calc(var(--spacing) * 5);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }
  .py-16 {
    padding-block: calc(var(--spacing) * 16);
  }
  .py-20 {
    padding-block: calc(var(--spacing) * 20);
  }
  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }
  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }
  .pt-16 {
    padding-top: calc(var(--spacing) * 16);
  }
  .pt-32 {
    padding-top: calc(var(--spacing) * 32);
  }
  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }
  .pb-12 {
    padding-bottom: calc(var(--spacing) * 12);
  }
  .pb-16 {
    padding-bottom: calc(var(--spacing) * 16);
  }
  .pb-20 {
    padding-bottom: calc(var(--spacing) * 20);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }
  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-extrabold {
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: var(--font-weight-extrabold);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
  }
  .text-white {
    color: var(--color-white);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .opacity-60 {
    opacity: 60%;
  }
  .opacity-80 {
    opacity: 80%;
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .delay-1 {
    transition-delay: 1ms;
  }
  .delay-2 {
    transition-delay: 2ms;
  }
  .delay-3 {
    transition-delay: 3ms;
  }
  .hover\:text-white {
    &:hover {
      @media (hover: hover) {
        color: var(--color-white);
      }
    }
  }
  .sm\:inline-block {
    @media (width >= 40rem) {
      display: inline-block;
    }
  }
  .sm\:grid-cols-2 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .sm\:grid-cols-3 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .sm\:flex-row {
    @media (width >= 40rem) {
      flex-direction: row;
    }
  }
  .sm\:px-6 {
    @media (width >= 40rem) {
      padding-inline: calc(var(--spacing) * 6);
    }
  }
  .sm\:text-3xl {
    @media (width >= 40rem) {
      font-size: var(--text-3xl);
      line-height: var(--tw-leading, var(--text-3xl--line-height));
    }
  }
  .sm\:text-4xl {
    @media (width >= 40rem) {
      font-size: var(--text-4xl);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
  }
  .sm\:text-5xl {
    @media (width >= 40rem) {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
  .sm\:text-lg {
    @media (width >= 40rem) {
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
    }
  }
  .sm\:text-xl {
    @media (width >= 40rem) {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
  }
  .md\:flex {
    @media (width >= 48rem) {
      display: flex;
    }
  }
  .md\:hidden {
    @media (width >= 48rem) {
      display: none;
    }
  }
  .lg\:col-span-2 {
    @media (width >= 64rem) {
      grid-column: span 2 / span 2;
    }
  }
  .lg\:col-span-3 {
    @media (width >= 64rem) {
      grid-column: span 3 / span 3;
    }
  }
  .lg\:block {
    @media (width >= 64rem) {
      display: block;
    }
  }
  .lg\:grid-cols-2 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-3 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .lg\:grid-cols-5 {
    @media (width >= 64rem) {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }
  .lg\:px-8 {
    @media (width >= 64rem) {
      padding-inline: calc(var(--spacing) * 8);
    }
  }
  .lg\:py-28 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 28);
    }
  }
  .lg\:text-5xl {
    @media (width >= 64rem) {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }
  .lg\:text-6xl {
    @media (width >= 64rem) {
      font-size: var(--text-6xl);
      line-height: var(--tw-leading, var(--text-6xl--line-height));
    }
  }
  .xl\:w-96 {
    @media (width >= 80rem) {
      width: calc(var(--spacing) * 96);
    }
  }
  .xl\:text-7xl {
    @media (width >= 80rem) {
      font-size: var(--text-7xl);
      line-height: var(--tw-leading, var(--text-7xl--line-height));
    }
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-scroll-snap-strictness {
  syntax: "*";
  inherits: false;
  initial-value: proximity;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-scroll-snap-strictness: proximity;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-outline-style: solid;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
    }
  }
}
