*,
*::before,
*::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0
}

html {
     scroll-behavior: smooth
}

body {
     background: #ffffff;
     line-height: 1.6;
     overflow-x: clip
}

a {
     text-decoration: none;
     color: inherit
}

ul {
     list-style: none
}

img {
     max-width: 100%;
     display: block
}

:root {
     --orange: var(--text-brand, #D7923C);
     --orange-dark: #8D4B00;
     --orange-light: #F8B05E;
     --black: var(--text-primary, #121212);
     --dark: #1F1F1F;
     --white: #FFFFFF;
     --cream: #F5EBDE;
     --light-gray: #F3F3F3;
     --text-muted: rgba(18, 18, 18, 0.7);
     --orange-gradient: linear-gradient(359.26deg, #8D4B00 -24.88%, #F8B05E 124.51%);
     --container-max: 1400px;
     --hero-card-width: 415px;
     --hero-card-right: clamp(24px, 16.7vw, 320px);
     --hero-card-overlap: 52px;
     --hero-side-margin: 16px;
     --section-spacing: 60px;
     --hero-bg-url: url("../image/home/hero-bg.webp")
}

.about,
.services,
.features-strip,
.process,
.why-us,
.home-tech,
.home-roadmap,
.home-faq,
.home-ceo,
.da-section,
.hms-section,
.ai-section,
.au-about-section,
.au-business-section,
.cu-section,
.pp-content,
.truck-intro,
.dark-experience,
.reach-section,
.truck-services,
.truck-solution,
.da-section,
.truck-cta-mid-wrap,
.truck-closing-cta-wrap,
.field-intro-section,
.why-section,
.expertise-band,
.field-services,
.solution-section {
     margin-top: var(--section-spacing);
     margin-bottom: var(--section-spacing)
}

.container {
     max-width: var(--container-max);
     margin: 0 auto;
     padding: 0 40px
}

.navbar {
     position: fixed;
     top: 32px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     width: calc(100% - 100px)
}

.navbar-bar {
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     align-items: center;
     gap: 70px;
     padding: 16px 52px;
     background: #FFFFFF24;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 6px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
     clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 22px 100%)
}

.nav-links {
     display: flex;
     align-items: center;
     gap: 70px
}

.nav-links--left {
     justify-content: flex-end
}

.nav-links--right {
     justify-content: flex-start
}

.nav-links a {
     font-family: var(--font-family);
     font-weight: 500;
     font-size: 18px;
     line-height: 26px;
     letter-spacing: 0.05em;
     color: #FFFFFF;
     text-transform: uppercase;
     transition: color 0.2s;
     white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
     color: var(--orange)
}

.nav-logo {
     display: flex;
     align-items: center;
     justify-self: center;
     flex-shrink: 0
}

.nav-logo img {
     display: block;
     width: 110px;
     height: 46px
}

.nav-hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 4px;
     justify-self: end;
     grid-column: 3;
     grid-row: 1
}

.nav-hamburger span {
     display: block;
     width: 26px;
     height: 2px;
     background: #ffffff;
     border-radius: 2px;
     transition: all 0.3s
}

.navbar.open .nav-hamburger span:nth-child(1) {
     transform: translateY(7px) rotate(45deg)
}

.navbar.open .nav-hamburger span:nth-child(2) {
     opacity: 0
}

.navbar.open .nav-hamburger span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile-menu {
     display: none
}

.navbar.scrolled .navbar-bar {
     background: rgba(255, 255, 255, 0.96);
     border-color: rgba(18, 18, 18, 0.12);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12)
}

.navbar.scrolled .nav-links a {
     color: #121212
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
     color: var(--orange)
}

.navbar.scrolled .nav-hamburger span {
     background: #121212
}

.hero {
     position: relative;
     margin: 13px 16px 0;
     border-radius: 30px;
     overflow: visible;
     height: var(--page-banner-height, 660px);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 4
}

.hero-bg {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border-radius: 30px;
     overflow: hidden;
     z-index: 0;
     background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(30, 30, 30, 0.35) 55%, rgba(20, 20, 20, 0.55) 100%),
          linear-gradient(135deg, #1a1208 0%, #2a1a0a 45%, #121212 100%)
}

.hero-bg::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%);
     pointer-events: none;
     z-index: 1
}

.hero-bg-img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     display: block;
     filter: none;
     transform: none;
     z-index: 0
}

.hero-content {
     position: relative;
     z-index: 2;
     pointer-events: auto;
     text-align: center;
     padding: 0 20px;
     max-width: 1200px;
     margin-top: 60px
}

.hero-content h1 {
     margin-bottom: 12px
}

.hero-subtitle {
     margin-bottom: 8px
}

.hero-description {
     margin-bottom: 30px
}

.hero-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 13px 28px;
     background: rgba(255, 255, 255, 0.1);
     border: 1.5px solid #ffffff;
     border-radius: 13px;
     color: #ffffff;
     font-size: 16px;
     font-weight: 500;
     letter-spacing: 0.48px;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
     font-family: inherit;
     text-decoration: none
}

.hero-btn:hover {
     background: rgba(255, 255, 255, 0.22);
     transform: translateY(-2px)
}

.hero-btn img {
     width: 20px;
     height: 20px
}

.hero-float {
     position: absolute;
     right: var(--hero-card-right);
     bottom: calc(-1 * var(--hero-card-overlap));
     z-index: 5;
     width: var(--hero-card-width);
     height: 252px;
     pointer-events: none
}

.hero-card {
     position: relative;
     z-index: 3;
     top: 50px;
     right: 0;
     box-sizing: border-box;
     width: 394px;
     height: 232px;
     border-radius: 15px;
     opacity: 1;
     background: #B19F6F99;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     overflow: visible;
     display: grid;
     grid-template-columns: 146px 1fr;
     grid-template-rows: 1fr 44px;
     padding: 0;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
     pointer-events: auto
}

.hero-card-icon {
     grid-column: 1;
     grid-row: 1;
     align-self: start;
     justify-self: start;
     margin-top: 17px;
     object-fit: contain;
     transform-origin: center center
}

.hero-card-body {
     grid-column: 2;
     grid-row: 1;
     align-self: start;
     padding: 29px 0 0 0;
     min-width: 0
}

.hero-card h3,
.hero-card .hero-card-title {
     width: 205px;
     margin: 0
}

.hero-card .hero-card-title {
     font: inherit;
     font-size: inherit;
     font-weight: inherit;
     line-height: inherit;
     color: inherit
}

.hero-card p {
     width: 202px;
     margin: 8px 0 0
}

.hero-card-btn {
     grid-column: 1 / -1;
     grid-row: 2;
     box-sizing: border-box;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     width: 100%;
     height: 44px;
     margin: 0;
     padding: 0 18px;
     background: var(--orange);
     border: 2.5px solid var(--orange);
     border-radius: 15px;
     color: #FFFFFF;
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: opacity 0.2s, transform 0.2s;
     text-decoration: none
}

.hero-card-btn:hover {
     opacity: 0.92;
     transform: translateY(-1px)
}

.hero-card-btn-icon {
     font-size: 23px;
     line-height: 1
}

.hero-arrow {
     position: absolute;
     top: 94px;
     right: 120px;
     z-index: 2;
     width: clamp(200px, 16vw, 280px);
     height: auto;
     object-fit: contain;
     pointer-events: none
}

.about {
     position: relative;
     z-index: 1;
     overflow: visible;
     padding-top: var(--hero-card-overlap)
}

.about .container {
     position: relative;
     z-index: 3
}

.section-title {
     text-align: center;
     margin: 0 0 5px
}

.section-header .section-title {
     margin: 0
}

.about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start
}

.about-images {
     border-radius: 16px;
     padding: 0.57px
}

.about-images-inner {
     position: relative;
     min-height: 480px;
     padding: 28px 24px 32px;
     border-radius: 15px;
     overflow: hidden
}

.about-img-frame {
     position: absolute;
     top: 3px;
     left: 5px;
     width: min(52%, 280px);
     height: 68%;
     border: 2px solid rgba(245, 235, 222, 0.95);
     background: linear-gradient(161.05deg, rgba(255, 236, 215, 0.4) 34.84%, #ffe3c0 97.57%);
     border-radius: 6px;
     z-index: 0;
     pointer-events: none
}

.about-img-main {
     position: relative;
     z-index: 1;
     display: block;
     width: 457px;
     height: 560px;
     object-fit: cover;
     object-position: center top;
     border-radius: 10px
}

.about-img-secondary {
     position: absolute;
     object-fit: cover;
     box-shadow: 0 8px 24px rgba(91, 56, 12, 0.14)
}

.about-img-bl {
     bottom: 32px;
     left: 20px;
     z-index: 3;
     width: 384.85px;
     height: 307.67px;
     object-position: 18% 72%
}

.about-img-br {
     bottom: 0px;
     right: 0px;
     z-index: 2;
     width: 300px;
     height: 260px;
     object-position: center
}

.about-content h4,
.about-content h3 {
     font-size: 17px;
     font-weight: 600;
     color: #121212;
     margin-bottom: 5px;
     letter-spacing: 0.3px
}

.about-content p {
     margin-bottom: 24px
}

.about-checklist {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 20px
}

.about-checklist li {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 18px
}

.check-icon {
     width: 25px;
     height: 14px;
     flex-shrink: 0;
     display: block
}

.about-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 30px;
     background: var(--orange-gradient);
     border-radius: 10px;
     color: #ffffff;
     font-size: 16px;
     font-weight: 500;
     border: none;
     cursor: pointer;
     font-family: inherit;
     transition: opacity 0.2s, transform 0.2s;
     margin-bottom: 40px;
     text-decoration: none
}

.about-btn:hover {
     opacity: 0.88;
     transform: translateY(-2px)
}

.about-stats {
     display: flex;
     gap: 40px
}

.stat-item {
     display: flex;
     align-items: center;
     gap: 16px;
     border-top: 1px solid rgba(177, 159, 111, 0.6);
     padding-top: 17px
}

.stat-text {
     flex: 0 1 auto
}

.stat-number {
     font-size: 28px;
     font-weight: 700;
     color: #121212;
     line-height: 1;
     display: flex;
     align-items: center;
     gap: 10px
}

.stat-number span {
     color: #D7923C;
     font-size: 22px
}

.stat-label {
     font-size: 13px;
     margin-top: 8px;
     color: var(--text-muted);
     line-height: 1.4
}

.stat-icon {
     width: 56px;
     height: 56px;
     flex-shrink: 0;
     object-fit: contain
}

.services {
     background: #fff
}

.services-radial {
     margin: 0 auto
}

.services-radial__grid {
     position: relative;
     display: grid;
     grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
     grid-template-rows: auto auto auto;
     gap: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 72px);
     align-items: center;
     justify-items: center;
     max-width: 1080px;
     margin: 0 auto
}

.services-radial__arrows {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1
}

.services-hub {
     grid-column: 2;
     grid-row: 2;
     position: relative;
     z-index: 3
}

.services-hub__circle {
     width: clamp(148px, 17vw, 188px);
     height: clamp(148px, 17vw, 188px);
     border-radius: 50%;
     background: var(--orange-gradient);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 16px;
     text-align: center;
     box-shadow: 0 0 0 8px #ffffff, 0 0 0 10px rgba(215, 146, 60, 0.34), 0 16px 40px rgba(141, 75, 0, 0.16)
}

.services-hub__logo {
     width: 48px;
     height: 48px;
     object-fit: contain;
     filter: brightness(0) invert(1)
}

.services-hub__label {
     color: #ffffff;
     font-size: clamp(14px, 1.6vw, 17px);
     font-weight: 700;
     line-height: 1.25;
     letter-spacing: 0.06em;
     text-transform: uppercase
}

.service-card--tl {
     grid-column: 1;
     grid-row: 1;
     justify-self: end
}

.service-card--tr {
     grid-column: 3;
     grid-row: 1;
     justify-self: start
}

.service-card--bl {
     grid-column: 1;
     grid-row: 3;
     justify-self: end
}

.service-card--br {
     grid-column: 3;
     grid-row: 3;
     justify-self: start
}

.container-2 {
     padding-left: 120px;
     padding-right: 120px
}

.service-card {
     position: relative;
     padding: 0;
     min-height: 132px;
     width: min(100%, 400px);
     z-index: 2;
     transition: transform 0.25s
}

.service-card:hover {
     transform: translateY(-3px)
}

.service-card:hover .service-card-inner {
     box-shadow: 0 18px 36px rgba(215, 146, 60, 0.13)
}

.service-card-inner {
     position: relative;
     padding: 20px 56px 20px 20px;
     border-radius: 4px;
     background: rgba(250, 250, 250, 1)
}

.service-card-header {
     display: flex;
     align-items: center;
     gap: 10px
}

.service-card--tr .service-card-inner,
.service-card--br .service-card-inner {
     background: rgba(255, 249, 242, 1)
}

.service-card-inner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 30%;
     height: 50%;
     border-top: 1px solid rgba(215, 146, 60, 0.5);
     border-left: 1px solid rgba(215, 146, 60, 0.5);
     border-radius: 4px 0 0 0;
     pointer-events: none;
     z-index: 1
}

.service-card-inner::after {
     content: '';
     position: absolute;
     right: 0;
     bottom: 0;
     width: 30%;
     height: 50%;
     border-bottom: 1px solid rgba(215, 146, 60, 0.5);
     border-right: 1px solid rgba(215, 146, 60, 0.5);
     border-radius: 0 0 4px 0;
     pointer-events: none;
     z-index: 1
}

.service-number {
     position: absolute;
     top: 50%;
     right: 0;
     width: 46px;
     height: 46px;
     background: var(--orange-gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-size: 18px;
     font-weight: 700;
     line-height: 1;
     transform: translate(50%, -50%);
     box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px rgba(215, 146, 60, 0.42), 0 8px 18px rgba(141, 75, 0, 0.16);
     z-index: 2
}

.service-icon {
     color: var(--orange);
     display: inline-flex;
     align-items: center;
     justify-content: center
}

.service-icon svg,
.feature-icon svg {
     width: 100%;
     height: 100%;
     fill: none;
     stroke: currentColor;
     stroke-width: 1.65;
     stroke-linecap: round;
     stroke-linejoin: round
}

.service-card p {
     margin-top: 10px
}

.features-strip {
     background: #F5EBDE;
     padding: 23px 0;
     width: 100%
}

.features-strip .container {
     max-width: var(--container-max);
     margin: 0 auto;
     padding: 0 40px
}

.features-strip-inner {
     display: grid;
     grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
     align-items: center;
     width: 100%
}

.feature-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     min-height: 72px;
     padding: 0 12px
}

.feature-divider {
     width: 1px;
     height: 84px;
     background: rgba(215, 146, 60, 0.72);
     justify-self: center;
     align-self: center;
     flex-shrink: 0
}

.feature-item .feature-icon {
     width: 58px;
     height: 58px;
     object-fit: contain;
     flex-shrink: 0
}

.feature-item span {
     font-family: var(--font-family);
     font-weight: 500;
     font-style: normal;
     font-size: 16px;
     line-height: 25px;
     letter-spacing: 0;
     color: rgba(18, 18, 18, 1);
     margin-top: 6px;
     display: block
}

.process-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 70px;
     align-items: start
}

.process-images {
     position: relative;
     height: 580px
}

.process-img-main {
     position: absolute;
     left: 80px;
     top: 0;
     width: 487px;
     height: 566px;
     object-fit: cover
}

.process-img-tl {
     position: absolute;
     left: 5px;
     bottom: 50px;
     width: 181.47px;
     height: 204.3px;
     object-fit: cover;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25)
}

.process-img-tr {
     position: absolute;
     right: -38px;
     top: 40px;
     width: 181.47px;
     height: 204.3px;
     object-fit: cover;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25)
}

.process-content-text {
     margin-top: 14px
}

.process-content p {
     margin-bottom: 6px
}

.why-us {
     background: #fff
}

.why-stage {
     position: relative;
     margin: 0 auto;
     min-height: 698px;
     max-width: 100%;
     overflow: visible
}

.why-us-image {
     display: block;
     width: 100%;
     max-width: 930px;
     height: 698px;
     margin-left: auto;
     object-fit: cover;
     position: relative;
     z-index: 1
}

.why-us-items {
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     z-index: 3;
     width: 100%;
     max-width: 564px;
     background: transparent;
     display: flex;
     flex-direction: column;
     gap: 50px
}

.why-item {
     position: relative;
     width: 100%;
     max-width: 564px;
     height: 97px;
     padding: 0 110px 0 57px;
     border: 0;
     background: transparent;
     color: #121212;
     display: flex;
     align-items: center;
     box-shadow: none;
     cursor: pointer;
     font-family: inherit;
     text-align: left;
     overflow: visible;
     transition: transform 0.2s ease
}

.why-item.active {
     color: #ffffff
}

.why-item:hover {
     transform: translateX(4px)
}

.why-item-bg {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     background-repeat: no-repeat;
     background-position: center;
     background-size: 100% 100%;
     z-index: 0;
     pointer-events: none
}

.why-item:not(.active) .why-item-bg {
     background-image: url("../image/Rectangle 22.png");
     filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.25))
}

.why-item.active .why-item-bg {
     background-image: url("../image/Rectangle 21.png");
     filter: drop-shadow(0 13px 10px rgba(162, 86, 0, 0.4))
}

.why-item-title {
     position: relative;
     z-index: 1
}

.why-item-icon {
     position: absolute;
     z-index: 1;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     width: 27px;
     height: 27px;
     object-fit: contain;
     flex-shrink: 0;
     pointer-events: none
}

.why-item.active .why-item-icon {
     filter: brightness(0) invert(1)
}

.why-item.active .why-item-title {
     color: #ffffff
}

.why-item-title {
     font-family: var(--font-family);
     font-size: 24px;
     font-weight: 500;
     font-style: normal;
     line-height: 100%;
     letter-spacing: 0;
     color: #121212
}

.newsletter {
     height: clamp(268px, 25.64vw, 484px);
     margin: 0 16px 16px;
     position: relative;
     overflow: hidden;
     border-radius: 24px;
     background: #f5f5f5
}

.newsletter-inner {
     position: relative;
     height: 100%;
     margin: 0 auto;
     padding: 0 clamp(32px, 5vw, 92px) 0 clamp(18px, 2.2vw, 42px);
     display: flex;
     align-items: center;
     gap: clamp(28px, 3.5vw, 72px)
}

.newsletter-bg {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
     pointer-events: none
}

.newsletter-image {
     position: absolute;
     left: 0;
     bottom: 0;
     z-index: 2;
     flex-shrink: 0;
     width: auto;
     height: calc(100% + 24px);
     max-width: 42%;
     object-fit: contain;
     object-position: bottom left
}

.newsletter-content {
     position: relative;
     z-index: 2;
     min-width: 0;
     width: min(62%, 1040px);
     margin: 0 0 0 auto;
     padding: 12px 0;
     text-align: center
}

.newsletter-content .tiny-label {
     font-family: var(--font-family);
     font-size: clamp(12px, 1.15vw, 22px);
     font-weight: 400;
     font-style: normal;
     line-height: 1.45;
     letter-spacing: 0.02em;
     color: rgba(18, 18, 18, 0.9);
     margin: 0 auto 14px
}

.newsletter-content h2 {
     margin: 0 auto 28px
}

.newsletter-form {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     width: 100%;
     max-width: 1041px;
     margin: 0 auto;
     background: transparent;
     border: none;
     overflow: visible
}

.newsletter-form input {
     flex: 1 1 auto;
     min-width: 0;
     max-width: 829px;
     min-height: 48px;
     height: clamp(48px, 3.125vw, 60px);
     padding: 0 22px;
     border: 0.44px solid rgba(18, 18, 18, 0.4);
     border-radius: 10px;
     background: #ffffff;
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 400;
     line-height: 1.4;
     color: #121212;
     outline: none;
     -webkit-appearance: none;
     appearance: none
}

.newsletter-form input::placeholder {
     color: rgba(18, 18, 18, 0.5)
}

.newsletter-form button {
     flex: 0 0 auto;
     width: clamp(118px, 11.05vw, 212px);
     min-height: 48px;
     height: clamp(48px, 3.125vw, 60px);
     padding: 12px 24px;
     background: var(--orange-gradient);
     border: none;
     border-radius: 10px;
     box-shadow: inset 0 13px 10px rgba(162, 86, 0, 0.4);
     color: #ffffff;
     font-family: var(--font-family);
     font-size: clamp(12px, 0.94vw, 18px);
     font-weight: 500;
     letter-spacing: 0;
     cursor: pointer;
     white-space: nowrap;
     transition: opacity 0.2s, transform 0.2s
}

.newsletter-form button:hover {
     opacity: 0.92;
     transform: translateY(-1px)
}

/* Legacy footer markup only — shared site footer uses footer.footer below */
footer:not(.footer) {
     background: #1f1f1f;
     margin: 0 8px 12px;
     border-radius: 20px;
     padding: 52px clamp(28px, 14.58vw, 280px) 24px;
     color: #ffffff
}

.footer-top {
     display: grid;
     grid-template-columns: minmax(276px, 1.35fr) 0.85fr 1.1fr 1.5fr;
     gap: clamp(32px, 5vw, 80px);
     padding-bottom: 48px;
     max-width: var(--container-max);
     margin: 0 auto
}

.footer-brand-logo {
     width: 120.64px;
     height: 60px;
     object-fit: contain;
     object-position: left center;
     margin-bottom: 22px
}

.footer-brand p {
     font-family: var(--font-family);
     font-size: 17px;
     font-weight: 400;
     font-style: normal;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.5;
     letter-spacing: 0;
     max-width: 276px
}

.footer-col h4 {
     font-family: var(--font-family);
     font-size: 26px;
     font-weight: 500;
     font-style: normal;
     line-height: 1;
     letter-spacing: 0;
     color: rgba(255, 255, 255, 1);
     margin-bottom: 16px;
     text-transform: capitalize
}

.footer-col ul {
     display: flex;
     flex-direction: column;
     gap: 12px;
     list-style: none;
     padding-left: 0
}

.footer-col ul li {
     color: rgba(255, 255, 255, 0.7)
}

.footer-col ul li a {
     font-family: var(--font-family);
     font-size: 17px;
     font-weight: 400;
     font-style: normal;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.25;
     letter-spacing: 0;
     transition: color 0.2s
}

.footer-col ul li a:hover {
     color: #d7923c
}

.footer-bottom {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 24px;
     padding: 22px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.22);
     border-bottom: 1px solid rgba(255, 255, 255, 0.22);
     max-width: var(--container-max);
     margin: 0 auto
}

.footer-contacts {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: clamp(28px, 4vw, 56px);
     flex-wrap: wrap;
     flex: 1
}

.contact-item {
     display: flex;
     align-items: center;
     gap: 9px
}

.contact-icon {
     width: 37.2px;
     height: 36.98px;
     object-fit: contain;
     flex-shrink: 0
}

.contact-item div {
     display: flex;
     flex-direction: column;
     gap: 0;
     max-width: 280px
}

.contact-label {
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 400;
     font-style: normal;
     color: rgba(215, 146, 60, 1);
     line-height: 1.31;
     letter-spacing: 0
}

.contact-value {
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 500;
     font-style: normal;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.43;
     letter-spacing: 0;
     max-width: 280px
}

.footer-social {
     display: flex;
     align-items: center;
     gap: 12px;
     padding-left: clamp(16px, 3vw, 32px);
     border-left: 1px solid rgba(255, 255, 255, 0.25)
}

.social-icon {
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 5px;
     cursor: pointer;
     transition: border-color 0.2s, opacity 0.2s
}

.social-icon:hover {
     opacity: 0.85;
     border-color: #d7923c
}

.social-icon img {
     width: 100%;
     height: 100%;
     object-fit: contain
}

.footer-copy-bar {
     margin-top: 0;
     padding-top: 22px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 14px;
     max-width: var(--container-max);
     margin: 0 auto
}

.footer-copy-bar p {
     font-family: var(--font-family);
     font-size: 18px;
     font-weight: 400;
     font-style: normal;
     line-height: 1;
     letter-spacing: 0;
     color: rgba(255, 255, 255, 0.7);
     max-width: 580px
}

.footer-copy-links {
     display: flex;
     align-items: center;
     gap: 32px
}

.footer-copy-links a {
     font-family: var(--font-family);
     font-size: 18px;
     font-weight: 400;
     font-style: normal;
     line-height: 1;
     letter-spacing: 0;
     color: rgba(255, 255, 255, 0.7);
     white-space: nowrap;
     transition: color 0.2s
}

.footer-copy-links a:hover {
     color: #d7923c
}

@media (min-width:1101px) and (max-width:1400px) {
     .navbar {
          width: calc(100% - 72px);
          top: 26px
     }

     .navbar-bar {
          padding: 14px 34px;
          gap: 30px
     }

     .nav-links {
          gap: 22px
     }

     .nav-links a {
          font-size: 15px;
          line-height: 22px;
          letter-spacing: 0.04em
     }
}

@media (max-width:1100px) {
     .navbar {
          width: calc(100% - 48px);
          top: 24px
     }

     .navbar-bar {
          padding: 14px 32px;
          gap: 12px
     }

     .nav-links {
          gap: 28px
     }

     .nav-links a {
          font-size: 16px;
          line-height: 24px
     }

     .nav-logo img {
          width: 96px;
          height: auto
     }

     .hero-float {
          position: relative;
          bottom: auto;
          right: 0;
          left: 0;
          margin: 0 auto calc(-1 * var(--hero-card-overlap));
          width: min(394px, calc(100% - 40px));
          height: auto;
          flex-shrink: 0
     }

     section.hero {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
          height: auto;
          min-height: clamp(500px, 72vh, 620px);
          padding: 140px 16px 0
     }

     section.hero .hero-content {
          margin-top: 0;
          padding: 0 12px 28px;
          flex: 0 0 auto
     }

     section.hero.is-ready .hero-float {
          transform: translate3d(0, 20px, 0)
     }

     .hero-card {
          width: 100%;
          top: 0;
          margin: 0 auto
     }

     .hero-arrow {
          top: -82px;
          right: calc(var(--hero-side-margin) + 48px);
          width: 180px
     }

     .about {
          padding-top: var(--hero-card-overlap)
     }

     .why-stage {
          min-height: 580px
     }

     .why-us-image {
          max-width: 620px;
          height: 520px
     }

     .why-us-items {
          max-width: 480px;
          gap: 36px
     }

     .why-item {
          height: 82px;
          padding-right: 90px
     }

     .why-item-title {
          font-size: 20px
     }

     .newsletter-inner {
          padding: 0 32px 0 16px
     }

     .newsletter-image {
          width: auto;
          height: calc(100% + 18px)
     }

     .newsletter-content .tiny-label {
          font-size: clamp(12px, 1.15vw, 18px);
          line-height: 1.45
     }

     .newsletter-content h2 {
          font-size: clamp(18px, 1.56vw, 24px)
     }

     footer:not(.footer) {
          padding: 42px 48px 20px
     }

     .footer-top {
          grid-template-columns: 1fr 1fr
     }

     .footer-brand p {
          font-size: 18px;
          max-width: 100%
     }

     .footer-col h4 {
          font-size: 22px
     }

     .footer-col ul li a {
          font-size: 18px
     }

     .footer-copy-bar p,
     .footer-copy-links a {
          font-size: 16px
     }
}

@media (max-width:900px) {
     .navbar {
          width: calc(100% - 32px);
          top: 18px
     }

     .navbar-bar {
          grid-template-columns: 1fr auto;
          padding: 14px 20px;
          clip-path: none;
          border-radius: 10px
     }

     .nav-links--left,
     .nav-links--right {
          display: none
     }

     .nav-logo {
          grid-column: 1;
          justify-self: start
     }

     .nav-hamburger {
          display: flex;
          z-index: 1001
     }

     .nav-mobile-menu {
          display: none;
          position: absolute;
          top: calc(100% + 8px);
          left: 0;
          right: 0;
          background: rgba(18, 18, 18, 0.96);
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
          z-index: 1100;
          border: 1px solid rgba(255, 255, 255, 0.16);
          border-radius: 10px;
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
          padding: 14px 12px;
          max-height: calc(100vh - 110px);
          overflow-y: auto
     }

     .nav-mobile-menu a {
          font-family: var(--font-family);
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: #FFFFFF;
          text-transform: uppercase;
          transition: color 0.2s, background-color 0.2s;
          border-radius: 8px;
          padding: 10px 12px
     }

     .nav-mobile-menu a:hover,
     .nav-mobile-menu a.active {
          color: var(--orange);
          background: rgba(255, 255, 255, 0.08)
     }

     .navbar.open .nav-mobile-menu {
          display: flex
     }

     .navbar.scrolled .nav-mobile-menu {
          background: rgba(255, 255, 255, 0.98);
          border-color: rgba(18, 18, 18, 0.12)
     }

     .navbar.scrolled .nav-mobile-menu a {
          color: #121212
     }
}

@media (min-width:901px) and (max-width:1200px) {
     .process-grid {
          grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
          gap: 34px;
          align-items: start
     }

     .process-images {
          height: 500px
     }

     .process-img-main {
          left: 28px;
          width: min(100%, 390px);
          height: 470px
     }

     .process-img-tl {
          left: -8px;
          bottom: 34px;
          width: 150px;
          height: 170px
     }

     .process-img-tr {
          right: 0;
          top: 28px;
          width: 150px;
          height: 170px
     }

     .process-content .section-title {
          margin-bottom: 16px;
          word-break: normal;
          overflow-wrap: break-word
     }

     .process-content p {
          font-size: 18px;
          line-height: 1.7
     }
}

@media (max-width:900px) {

     .about-grid,
     .process-grid {
          grid-template-columns: 1fr;
          gap: 32px
     }

     .about-images {
          max-width: 540px;
          margin: 0 auto;
          width: 100%
     }

     .about-images-inner {
          display: flex;
          justify-content: center;
          align-items: flex-start;
          min-height: 380px;
          padding: 24px 20px 48px;
          overflow: visible
     }

     .about-img-frame {
          left: 50%;
          transform: translateX(-50%);
          width: min(58%, 280px)
     }

     .about-img-main {
          width: min(58%, 280px);
          height: auto;
          max-height: 360px;
          margin: 0 auto
     }

     .about-img-bl {
          width: 168px;
          height: 132px
     }

     .about-img-br {
          display: block;
          width: 160px;
          height: 130px;
          right: max(0px, calc(50% - 200px));
          bottom: 12px;
          border-radius: 8px
     }

     .process-images {
          height: auto;
          min-height: 320px;
          max-width: 520px;
          margin: 0 auto 12px;
          padding: 0 12px 36px;
          overflow: visible
     }

     .process-images[data-animate='fade-right'] {
          opacity: 1 !important;
          transform: none !important
     }

     .process-img-main {
          position: relative;
          left: auto;
          top: auto;
          transform: none;
          display: block;
          width: min(78%, 340px);
          height: auto;
          max-height: 320px;
          margin: 0 auto;
          object-fit: cover;
          z-index: 1
     }

     .process-img-tl,
     .process-img-tr {
          display: block;
          z-index: 2
     }

     .process-img-tl {
          left: 8px;
          bottom: 18px;
          width: 120px;
          height: 135px
     }

     .process-img-tr {
          right: 8px;
          top: 24px;
          width: 120px;
          height: 135px
     }

     .why-stage {
          min-height: auto;
          display: flex;
          flex-direction: column;
          gap: 24px
     }

     .why-us-image {
          max-width: 100%;
          height: 360px;
          margin-left: 0;
          order: 2
     }

     .why-us-items {
          position: static;
          transform: none;
          top: auto;
          max-width: 100%;
          order: 1;
          gap: 20px
     }

     .why-item {
          max-width: 100%;
          height: 72px;
          padding: 0 72px 0 48px
     }

     .why-item-title {
          font-size: 18px
     }

     .container-2 {
          padding-left: 24px;
          padding-right: 24px
     }

     .services-radial__grid {
          grid-template-columns: 1fr;
          grid-template-rows: auto;
          gap: 56px;
          max-width: 520px
     }

     .services-radial__arrows {
          display: none
     }

     .service-card--tl,
     .service-card--tr,
     .service-card--bl,
     .service-card--br {
          grid-column: 1;
          grid-row: auto;
          justify-self: stretch;
          width: 100%;
          margin-top: 0
     }

     .services-hub {
          grid-column: 1;
          grid-row: auto;
          order: 3
     }

     .service-card--tl {
          order: 1
     }

     .service-card--tr {
          order: 2
     }

     .service-card--bl {
          order: 4
     }

     .service-card--br {
          order: 5
     }

     .service-card-inner {
          padding: 24px 78px 24px 24px
     }

     .service-number {
          top: 50%;
          right: 0;
          left: auto;
          transform: translate(50%, -50%);
          width: 46px;
          height: 46px;
          font-size: 18px
     }

     .features-strip-inner {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          row-gap: 18px;
          justify-items: center
     }

     .feature-divider {
          display: none
     }

     .newsletter {
          height: auto;
          min-height: 0;
          overflow: visible
     }

     .newsletter-inner {
          height: auto;
          flex-direction: column;
          align-items: center;
          padding: 28px 28px 36px;
          gap: 20px
     }

     .newsletter-image {
          position: relative;
          top: auto;
          left: auto;
          bottom: auto;
          transform: none;
          width: min(320px, 88%);
          height: auto;
          max-width: 100%;
          max-height: 220px;
          margin: 0 auto;
          object-fit: contain;
          object-position: center bottom
     }

     .newsletter-content {
          width: 100%;
          max-width: 100%;
          margin: 0;
          padding: 0
     }

     .newsletter-content .tiny-label {
          font-size: 16px;
          line-height: 24px
     }

     .newsletter-content h2 {
          font-size: 20px;
          margin-bottom: 20px
     }

     .newsletter-form {
          flex-direction: column;
          align-items: stretch;
          height: auto;
          gap: 12px
     }

     .newsletter-form input,
     .newsletter-form button {
          flex: none;
          width: 100%;
          max-width: 100%;
          height: 52px;
          min-height: 52px
     }

     .footer-top {
          grid-template-columns: 1fr;
          gap: 28px
     }

     .footer-brand p {
          max-width: 100%
     }

     .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 28px
     }

     .footer-contacts {
          width: 100%;
          flex: none;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          gap: 20px
     }

     .contact-item {
          width: 100%;
          max-width: 100%
     }

     .contact-item div {
          max-width: none
     }

     .contact-value {
          max-width: none
     }

     .footer-social {
          padding-left: 0;
          border-left: none;
          align-self: flex-start
     }
}

@media (max-width:768px) {
     .container {
          padding: 0 20px
     }

     .navbar {
          width: calc(100% - 32px);
          top: 18px
     }

     .navbar-bar {
          grid-template-columns: 1fr auto;
          padding: 14px 20px;
          clip-path: none;
          border-radius: 10px
     }

     .nav-links--left,
     .nav-links--right {
          display: none
     }

     .nav-logo {
          grid-column: 1;
          justify-self: start
     }

     .nav-hamburger {
          display: flex;
          z-index: 1001
     }

     .nav-mobile-menu {
          display: none;
          position: absolute;
          top: calc(100% + 8px);
          left: 0;
          right: 0;
          background: rgba(18, 18, 18, 0.96);
          flex-direction: column;
          align-items: stretch;
          gap: 4px;
          z-index: 1100;
          border: 1px solid rgba(255, 255, 255, 0.16);
          border-radius: 10px;
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
          padding: 14px 12px;
          max-height: calc(100vh - 110px);
          overflow-y: auto
     }

     .nav-mobile-menu a {
          font-family: var(--font-family);
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          letter-spacing: 0.05em;
          color: #FFFFFF;
          text-transform: uppercase;
          transition: color 0.2s, background-color 0.2s;
          border-radius: 8px;
          padding: 10px 12px
     }

     .nav-mobile-menu a:hover,
     .nav-mobile-menu a.active {
          color: var(--orange);
          background: rgba(255, 255, 255, 0.08)
     }

     .navbar.open .nav-mobile-menu {
          display: flex
     }

     .navbar.scrolled .nav-mobile-menu {
          background: rgba(255, 255, 255, 0.98);
          border-color: rgba(18, 18, 18, 0.12)
     }

     .navbar.scrolled .nav-mobile-menu a {
          color: #121212
     }

     section.hero {
          min-height: 0;
          margin: 10px 10px 0;
          padding: 128px 12px 0
     }

     section.hero .hero-content {
          padding: 0 8px 22px
     }

     section.hero .hero-content h1 {
          font-size: clamp(24px, 6.8vw, 32px);
          line-height: 1.2;
          margin-bottom: 10px
     }

     section.hero .hero-subtitle {
          font-size: clamp(14px, 3.8vw, 18px);
          margin-bottom: 8px
     }

     section.hero .hero-description {
          font-size: 14px;
          line-height: 1.55;
          margin-bottom: 18px
     }

     .hero-arrow {
          display: none
     }

     .hero-float {
          width: min(360px, calc(100% - 24px));
          margin-bottom: calc(-1 * var(--hero-card-overlap))
     }

     .hero-card {
          width: 100%;
          height: auto;
          min-height: 200px;
          grid-template-columns: 110px 1fr;
          grid-template-rows: 1fr auto
     }

     .hero-card-icon {
          width: 100px;
          height: 100px;
          margin-top: 12px
     }

     .hero-card-body {
          padding: 16px 12px 0 0
     }

     .hero-card h3,
     .hero-card .hero-card-title {
          width: auto;
          font-size: clamp(22px, 6vw, 28px)
     }

     .hero-card p {
          width: auto;
          font-size: 13px;
          line-height: 1.3
     }

     .hero-card-btn {
          height: 40px;
          font-size: 14px;
          padding: 0 14px
     }

     .about {
          padding-top: var(--hero-card-overlap)
     }

     .section-title {
          margin-bottom: 30px
     }

     .process-content .section-title {
          text-align: left
     }

     .about-images-inner {
          min-height: 340px;
          padding: 20px 16px 44px;
          overflow: visible
     }

     .about-img-frame {
          width: min(72%, 260px);
          height: 68%
     }

     .about-img-main {
          width: min(72%, 260px);
          max-height: 320px;
          margin: 0 auto
     }

     .about-img-bl {
          width: 140px;
          height: 110px;
          left: 12px;
          bottom: 24px
     }

     .about-img-br {
          display: block;
          width: 130px;
          height: 105px;
          right: max(4px, calc(50% - 160px));
          bottom: 8px;
          border-radius: 8px
     }

     .process-images {
          min-height: 280px;
          max-width: 100%;
          padding: 0 8px 32px;
          margin-bottom: 8px
     }

     .process-img-main {
          width: min(82%, 300px);
          max-height: 280px
     }

     .process-img-tl {
          left: 4px;
          bottom: 12px;
          width: 100px;
          height: 112px
     }

     .process-img-tr {
          right: 4px;
          top: 18px;
          width: 100px;
          height: 112px
     }

     .services-radial {
          padding-left: 10px;
          padding-right: 10px
     }

     .services-radial__grid {
          gap: 48px
     }

     .service-card-inner {
          padding: 22px 58px 22px 18px
     }

     .service-number {
          width: 46px;
          height: 46px;
          font-size: 18px;
          right: 0;
          left: auto;
          box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px rgba(215, 146, 60, 0.36), 0 8px 18px rgba(141, 75, 0, 0.16)
     }

     .features-strip .container {
          padding-left: 16px;
          padding-right: 16px
     }

     .features-strip-inner {
          grid-template-columns: 1fr;
          gap: 4px;
          justify-items: center
     }

     .feature-divider {
          display: none
     }

     .feature-item {
          width: 100%;
          max-width: 360px;
          padding: 14px 16px
     }

     .feature-item span {
          text-align: center
     }

     .footer-top {
          gap: 30px
     }

     .footer-copy-bar {
          flex-direction: column;
          align-items: flex-start
     }

     .footer-contacts {
          gap: 18px
     }

     footer:not(.footer) {
          padding: 40px 24px 24px;
          margin: 12px 10px
     }

     .footer-brand-logo {
          width: 100px;
          height: 50px
     }

     .footer-brand p {
          font-size: 16px
     }

     .footer-col h4 {
          font-size: 20px
     }

     .footer-col ul li a {
          font-size: 16px
     }

     .contact-label,
     .contact-value {
          font-size: 14px
     }

     .contact-icon {
          width: 32px;
          height: 32px
     }

     .footer-copy-bar p,
     .footer-copy-links a {
          font-size: 14px
     }

     .newsletter {
          margin: 0 10px
     }

     .hero {
          border-radius: 20px
     }
}

@media (max-width:480px) {
     .navbar-bar {
          padding: 12px 16px
     }

     section.hero {
          padding: 118px 12px 0
     }

     .hero-float {
          width: calc(100% - 20px)
     }

     .hero-card {
          grid-template-columns: 92px 1fr;
          min-height: 188px
     }

     .hero-card-icon {
          width: 84px;
          height: 84px;
          margin-top: 10px
     }

     .hero-card-body {
          padding: 14px 10px 0 0
     }

     .hero-card h3,
     .hero-card .hero-card-title {
          font-size: 20px
     }

     .hero-card p {
          font-size: 12px
     }

     .hero-card-btn {
          height: 38px;
          font-size: 13px;
          padding: 0 12px
     }

     .nav-logo img {
          width: 96px
     }

     .about-stats {
          flex-direction: column;
          gap: 20px
     }

     .why-stage {
          gap: 20px
     }

     .why-us-image {
          height: 260px
     }

     .why-item {
          height: 60px;
          padding: 0 56px 0 40px
     }

     .why-item-title {
          font-size: 16px
     }

     .why-item-icon {
          width: 22px;
          height: 22px;
          left: 10px
     }

     .newsletter-inner {
          padding: 24px 16px 28px;
          gap: 16px
     }

     .newsletter-image {
          width: min(280px, 100%);
          max-height: 200px
     }

     .newsletter-content .tiny-label {
          font-size: 14px;
          line-height: 22px
     }

     .newsletter-content h2 {
          font-size: 18px
     }

     .newsletter-form input,
     .newsletter-form button {
          height: 48px;
          min-height: 48px;
          border-radius: 10px
     }

     .newsletter-form input {
          font-size: 16px;
          padding: 0 16px
     }

     .newsletter-form button {
          font-size: 16px
     }
}

:root {
     --font-family: 'Inter', 'Clash Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     --text-primary: #121212;
     --text-muted: rgba(18, 18, 18, 0.7);
     --text-soft: rgba(18, 18, 18, 0.9);
     --text-white: #ffffff;
     --text-brand: #D7923C;
     --orange: var(--text-brand);
     --orange-light: #F8B05E;
     --orange-dark: #8D4B00;
     --black: var(--text-primary);
     --ink: var(--text-primary);
     --ink-soft: var(--text-soft);
     --brand: #c17619;
     --brand-light: var(--text-brand);
     --tag-bg: rgba(248, 176, 94, 0.12);
     --tag-bg-strong: rgba(215, 146, 60, 0.18);
     --tag-bg-muted: rgba(141, 75, 0, 0.12);
     --tag-color: var(--orange-dark);
     --tag-color-accent: var(--orange-light);
     --tag-border: rgba(215, 146, 60, 0.22);
     --type-h1-size: clamp(28px, 3.5vw, 44px);
     --type-h1-weight: 600;
     --type-h1-lh: 1.3;
     --type-h1-ls: 1.2px;
     --type-h2-size: clamp(24px, 2.4vw, 34px);
     --type-h2-size-lg: 30px;
     --type-h2-weight: 500;
     --type-h2-lh: 1.2;
     --type-h2-ls: 0.02em;
     --type-h3-size: 18px;
     --type-h3-size-lg: 25px;
     --type-h3-weight: 600;
     --type-h3-weight-lg: 500;
     --type-h3-lh: 1.4;
     --type-body-size: 16px;
     --type-body-weight: 400;
     --type-body-lh: 1.75;
     --type-body-sm-size: clamp(14px, 1.5vw, 17px);
     --type-body-sm-lh: 1.7;
     --type-hero-sub-size: clamp(16px, 1.8vw, 22px);
     --type-hero-desc-size: clamp(14px, 1.5vw, 17px);
     --type-eyebrow-size: 26px;
     --type-eyebrow-weight: 600;
     --type-eyebrow-ls: 0.04em
}

body {
     font-family: var(--font-family);
     color: var(--text-primary)
}

.hero-content h1,
.page-hero h1,
.hms-hero h1,
.ai-hero-content h1,
.da-hero h1,
.au-page-title,
.blog-page-title {
     font-family: var(--font-family);
     font-size: var(--type-h1-size);
     font-weight: var(--type-h1-weight);
     line-height: var(--type-h1-lh);
     letter-spacing: var(--type-h1-ls);
     color: var(--text-white)
}

h2.section-title,
.truck-intro-heading,
.intro-copy h2,
.section-heading,
.center-title h2,
.expertise-text h2,
.services-heading-wrap h2,
.dark-experience-copy h2,
.truck-solution-copy h2,
.cta-box h2,
.hms-section-title,
.ai-section-title,
.da-title,
.au-about-heading,
.au-business-heading,
.blog-card-title,
.cu-form-title,
.pp-title,
.viqsa-product-cta__content h2,
.newsletter-content h2 {
     font-family: var(--font-family);
     font-size: var(--type-h2-size-lg);
     font-weight: var(--type-h2-weight);
     line-height: var(--type-h2-lh);
     letter-spacing: var(--type-h2-ls);
     color: var(--text-primary)
}

.why-us .section-title,
.process-content .section-title {
     font-size: var(--type-h2-size)
}

h2.section-title.light,
.hms-section-title.light,
.da-title.light,
.ai-section-title.light {
     color: var(--text-white)
}

.newsletter-content h2 {
     font-size: clamp(18px, 1.56vw, 30px);
     line-height: 1;
     letter-spacing: 0;
     color: var(--text-brand)
}

.service-card h3,
.field-card h3,
.solution-card h3,
.truck-service-card h3,
.truck-solution-card h3,
.hms-module-card h3,
.ai-service-card h3,
.ai-who-card h3,
.da-type-card h3,
.da-step h3,
.reach-col h3,
.crm-page .crm-mod-card h3 {
     font-family: var(--font-family);
     font-size: var(--type-h3-size);
     font-weight: var(--type-h3-weight);
     line-height: var(--type-h3-lh);
     color: var(--text-primary)
}

.hero-card h3,
.hero-card .hero-card-title {
     font-family: var(--font-family);
     font-size: var(--type-h3-size-lg);
     font-weight: var(--type-h3-weight-lg);
     line-height: 1.14;
     color: var(--text-white)
}

.vertical-title h3 {
     font-family: var(--font-family);
     font-size: clamp(24px, 2.5vw, 32px);
     font-weight: var(--type-h3-weight-lg);
     line-height: 1
}

.solution-card h3 {
     color: var(--brand)
}

.dark-experience-copy h2 {
     color: var(--text-white)
}

.dark-experience-copy p {
     font-family: var(--font-family);
     font-size: clamp(15px, 0.85vw, 16px);
     font-weight: var(--type-body-weight);
     line-height: 1.92;
     color: rgba(255, 255, 255, 0.88)
}

.dark-experience-copy p.experience-subtitle {
     font-style: italic;
     color: rgba(255, 255, 255, 0.75)
}

.dark-experience-copy strong {
     color: var(--text-white);
     font-weight: 500
}

.reach-col h3 {
     color: var(--brand)
}

.reach-col h3 span {
     color: var(--text-primary)
}

.truck-solution-card h3 {
     color: var(--text-white)
}

.reach-col .rich-text {
     font-size: clamp(15px, 0.85vw, 16px);
     line-height: 1.92
}

.about-content p,
.service-card p,
.rich-text,
.rich-text p,
.process-content p,
.feature-text,
.expertise-text .rich-text,
.reach-col .rich-text,
.truck-solution-copy p,
.au-about-text,
.da-sub,
.hms-section-sub,
.ai-section-sub,
.hms-module-card p,
.ai-who-card p,
.ai-service-card p,
.crm-page .crm-mod-card p,
.da-step p,
.da-type-card p,
.viqsa-product-cta__content p,
.pp-text,
.pp-list li {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     font-weight: var(--type-body-weight);
     line-height: var(--type-body-lh);
     color: var(--text-muted)
}

.pp-subtitle {
     font-size: var(--type-h3-size);
     line-height: 1.35;
     letter-spacing: 0.02em;
     color: var(--text-brand);
     font-weight: 600
}

.rich-text,
.process-content p,
.feature-text,
.au-about-text,
.da-sub {
     color: var(--text-soft)
}

.service-card p {
     line-height: 1.55
}

.process-content p {
     line-height: 1.8
}

.hms-section-sub.light,
.da-sub.light,
.ai-section-sub.light {
     color: rgba(255, 255, 255, 0.72)
}

.ai-section-dark .ai-service-card h3 {
     color: var(--text-white)
}

.ai-section-dark .ai-service-card p {
     color: rgba(255, 255, 255, 0.72);
     line-height: 1.7
}

.ai-why-visual h3 {
     color: var(--text-white)
}

.ai-why-grid .section-label {
     text-align: left
}

.ai-why-grid .ai-section-sub {
     margin-left: 0;
     margin-right: 0;
     text-align: left;
     max-width: none
}

.ai-section-sub-left {
     margin: 0;
     text-align: left;
     max-width: none
}

.hero-subtitle {
     font-family: var(--font-family);
     font-size: var(--type-hero-sub-size);
     font-weight: 500;
     color: var(--text-white);
     letter-spacing: 0.44px
}

.hero-description,
.hms-hero-desc,
.ai-hero-desc,
.da-hero-sub {
     font-family: var(--font-family);
     font-size: var(--type-hero-desc-size);
     font-weight: var(--type-body-weight);
     color: rgba(255, 255, 255, 0.9);
     letter-spacing: 0.48px;
     line-height: var(--type-body-sm-lh)
}

.hero-card p {
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 500;
     line-height: 1.14;
     color: var(--text-primary)
}

.section-header {
     margin-bottom: 25px
}

.section-header--center {
     text-align: center
}

.section-header--center .section-tag {
     display: block
}

.section-header--left {
     text-align: left
}

.section-header--left .section-tag {
     display: inline-block
}

.section-header .section-title {
     margin: 0
}

.section-tag,
.section-label,
div.section-title,
.da-label,
.hms-label,
.ai-label {
     font-family: var(--font-family);
     font-size: var(--type-eyebrow-size);
     font-weight: var(--type-eyebrow-weight);
     line-height: 1;
     letter-spacing: var(--type-eyebrow-ls);
     text-transform: uppercase
}

.section-tag,
.section-label {
     margin-bottom: 9px;
     background: none;
     -webkit-text-fill-color: unset;
     color: #8D4B00
}

.section-label {
     display: block;
     text-align: center
}

.da-center h2.section-title,
.hms-center h2.section-title,
.ai-center h2.section-title {
     margin-bottom: 16px
}

.da-center .section-label,
.hms-center .section-label,
.ai-center .section-label,
.ai-cta-inner .section-label {
     margin-bottom: 12px
}

div.section-title {
     color: var(--brand);
     margin-bottom: 12px
}

.why-us .section-header {
     margin-bottom: 44px
}

.process-content .section-header {
     margin-bottom: 14px
}

.da-label {
     display: inline-block;
     color: var(--brand);
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0.12em;
     margin-bottom: 12px
}

.da-label.light {
     color: var(--orange-light)
}

.hms-label,
.ai-label {
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.1em;
     color: var(--brand-light);
     margin-bottom: 12px
}

.hms-label-light,
.ai-label-light {
     color: var(--brand-light)
}

:root {
     --brand: #c17619;
     --brand-light: #d7923c;
     --ink: #121212;
     --dark: #1f1f1f;
     --container: 1300px;
     --page-banner-height: 660px;
     --page-banner-height-mobile: 520px
}

.site-header {
     position: absolute;
     z-index: 100;
     top: 0;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     overflow: visible
}

.header-shell {
     position: relative;
     width: calc(100% - 5rem);
     margin-top: 40px;
     padding: 8px 16px;
     overflow: visible;
     background: transparent;
     border: none;
     box-shadow: none;
     clip-path: none
}

.header-shell::before {
     content: "";
     position: absolute;
     inset: 0;
     z-index: 0;
     border-radius: 6px;
     background: rgba(255, 255, 255, 0.14);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
     clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 22px 100%);
     pointer-events: none
}

.header-inner {
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 64px;
     overflow: visible
}

.site-header .header-inner.container {
     width: 100%;
     max-width: var(--container-max, 1400px);
     margin-inline: auto;
     padding-inline: 40px
}

.desktop-nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     column-gap: 22px;
     flex-wrap: nowrap
}

.desktop-nav a {
     font-size: clamp(16px, 0.9375vw, 18px);
     font-weight: 500;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     color: #fff;
     white-space: nowrap;
     flex-shrink: 0;
     transition: color 0.25s ease
}

.desktop-nav a:hover,
.desktop-nav a.active {
     color: var(--brand-light)
}

.desktop-nav .logo-link {
     flex: 0 0 auto
}

.nav-dropdown {
     position: relative;
     z-index: 2;
     flex-shrink: 0
}

.nav-dropdown:hover,
.nav-dropdown.is-open {
     z-index: 20
}

.nav-dropdown-toggle {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 0;
     border: 0;
     background: none;
     font: inherit;
     font-size: clamp(16px, 0.9375vw, 18px);
     font-weight: 500;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     color: #fff;
     white-space: nowrap;
     flex-shrink: 0;
     cursor: pointer;
     transition: color 0.25s ease
}

.nav-dropdown-toggle::after {
     content: "";
     width: 0;
     height: 0;
     border-left: 4px solid transparent;
     border-right: 4px solid transparent;
     border-top: 5px solid currentColor;
     transition: transform 0.2s ease
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
     color: var(--brand-light)
}

.nav-dropdown.is-open .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
     transform: rotate(180deg)
}

.nav-dropdown-menu {
     position: absolute;
     top: calc(100% + 12px);
     left: 0;
     z-index: 200;
     min-width: 320px;
     padding: 10px 0;
     border: 1px solid rgba(255, 255, 255, 0.14);
     border-radius: 10px;
     background: rgba(24, 24, 24, 0.98);
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateY(6px);
     transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transform: translateY(0)
}

.nav-dropdown-menu::before {
     content: "";
     position: absolute;
     top: -14px;
     left: 0;
     right: 0;
     height: 14px
}

.nav-dropdown-menu a {
     display: block;
     padding: 12px 22px;
     font-size: 15px;
     font-weight: 500;
     line-height: 1.4;
     color: #fff;
     text-transform: none;
     letter-spacing: 0.01em;
     white-space: nowrap;
     transition: color 0.2s ease, background 0.2s ease
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
     color: var(--brand-light);
     background: rgba(193, 118, 25, 0.14)
}

.mobile-submenu {
     display: flex;
     flex-direction: column;
     align-items: stretch;
     width: 100%
}

.mobile-submenu-toggle {
     display: block;
     width: 100%;
     padding: 14px 16px;
     border: 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.06);
     background: none;
     font: inherit;
     font-size: clamp(16px, 4vw, 20px);
     font-weight: 500;
     letter-spacing: 0.04em;
     line-height: 1.35;
     text-align: center;
     text-transform: uppercase;
     color: #000;
     white-space: normal;
     overflow-wrap: break-word;
     cursor: pointer;
     transition: color 0.25s ease
}

.mobile-submenu-toggle::after {
     content: " +";
     font-weight: 400
}

.mobile-submenu.is-open .mobile-submenu-toggle::after {
     content: " −"
}

.mobile-submenu-panel {
     display: none;
     flex-direction: column;
     align-items: stretch;
     gap: 0;
     width: 100%;
     padding: 4px 0 8px;
     background: rgba(0, 0, 0, 0.03)
}

.mobile-submenu.is-open .mobile-submenu-panel {
     display: flex
}

.mobile-submenu-panel a {
     display: block;
     width: 100%;
     padding: 12px 20px;
     font-size: clamp(14px, 3.5vw, 17px);
     font-weight: 500;
     line-height: 1.4;
     text-align: center;
     text-transform: none;
     letter-spacing: 0.01em;
     color: #333;
     white-space: normal;
     overflow-wrap: break-word
}

.mobile-submenu-panel a:hover,
.mobile-submenu-panel a.active {
     color: var(--brand)
}

.site-header .logo {
     width: 170px;
     height: auto
}

.mobile-bar,
.mobile-toggle,
.mobile-menu {
     display: none
}

.product-page .da-hero,
.product-page .hms-hero,
.ai-page .ai-hero,
.product-page .page-hero {
     margin: 13px 16px 0;
     border-radius: 30px;
     z-index: 1
}

footer.footer {
     margin: 24px 0 0;
     border-radius: 24px 24px 0 0;
     padding: 0;
     background: var(--dark);
     color: rgba(255, 255, 255, 0.7);
     font-family: var(--font-family);
     font-weight: 400
}

.footer .footer-bottom {
     display: block;
     border-bottom: none;
     max-width: none;
     margin: 0;
     padding: 0
}

.footer-main {
     display: grid;
     grid-template-columns: 1.4fr 1fr 1fr;
     gap: 32px;
     padding: 64px 0 32px
}

.footer-logo {
     width: 160px;
     margin-bottom: 12px
}

.footer-main > div > p {
     margin: 0;
     max-width: 340px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 400;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.7)
}

.footer h4,
.footer h3 {
     margin-bottom: 16px;
     color: #fff;
     font-family: var(--font-family);
     font-size: 18px;
     font-weight: 500
}

.footer ul {
     margin: 0;
     padding-left: 20px
}

.footer li {
     margin-bottom: 8px
}

.footer a {
     color: #d1d5db;
     font-family: var(--font-family);
     font-weight: 400;
     transition: color 0.25s ease
}

.footer a:hover {
     color: var(--brand-light)
}

.footer-contact,
.footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.4)
}

.footer-contact-grid {
     display: grid;
     grid-template-columns: auto auto minmax(0, 1fr) max-content;
     gap: 28px;
     align-items: center;
     padding: 18px 0
}

.footer .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 400;
     line-height: 1.5
}

.footer .contact-item img {
     width: 38px;
     flex: 0 0 auto;
     margin-top: 4px
}

.footer .contact-item .label {
     color: var(--brand-light)
}

.footer .contact-item .contact-link {
     color: inherit;
     text-decoration: none;
     cursor: pointer;
     transition: color 0.2s ease
}

.footer .contact-item .contact-link:hover {
     color: var(--brand-light);
     text-decoration: underline
}

.footer .contact-item--address>span {
     white-space: normal
}

.footer .socials {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     flex-shrink: 0;
     gap: 14px;
     min-width: max-content;
     padding-left: 28px;
     border-left: 1px solid rgba(255, 255, 255, 0.4)
}

.footer .socials a {
     display: flex;
     flex: 0 0 auto;
     align-items: center;
     justify-content: center;
     width: 34px;
     height: 34px
}

.footer .socials img {
     width: 34px;
     height: 34px;
     max-width: none;
     object-fit: contain
}

.footer-bottom-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     padding: 28px 0;
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 400
}

.footer .legal {
     display: flex;
     gap: 24px
}

@media (min-width:1025px) and (max-width:1440px) {
     .header-shell {
          width: calc(100% - 2.5rem);
          padding-inline: 12px
     }

     .desktop-nav {
          column-gap: 14px
     }

     .desktop-nav a,
     .nav-dropdown-toggle {
          font-size: clamp(13px, 0.78vw, 16px);
          letter-spacing: 0.04em
     }

     .site-header .logo {
          width: 150px
     }
}

@media (max-width:1024px) {
     .header-shell {
          width: calc(100% - 60px);
          margin-top: 25px
     }

     .header-shell::before {
          clip-path: none;
          border-radius: 10px
     }

     .desktop-nav {
          display: none
     }

     .mobile-bar {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%
     }

     .mobile-bar .logo {
          width: 80px
     }

     .hamburger,
     .close-menu {
          display: grid;
          place-items: center;
          width: 42px;
          height: 42px;
          border: 0;
          background: transparent;
          color: #fff;
          cursor: pointer
     }

     .hamburger span,
     .hamburger span::before,
     .hamburger span::after {
          display: block;
          width: 30px;
          height: 2px;
          border-radius: 999px;
          background: currentColor
     }

     .hamburger span {
          position: relative
     }

     .hamburger span::before,
     .hamburger span::after {
          content: "";
          position: absolute;
          left: 0
     }

     .hamburger span::before {
          top: -9px
     }

     .hamburger span::after {
          top: 9px
     }

     .mobile-menu {
          position: fixed;
          z-index: 120;
          inset: 0;
          display: flex;
          width: 100%;
          max-width: 100%;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 0;
          padding: 72px 20px 32px;
          background: #fff;
          overflow-x: hidden;
          overflow-y: auto;
          -webkit-overflow-scrolling: touch;
          transform: translateX(-100%);
          transition: transform 0.32s ease;
          box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12)
     }

     .mobile-menu a {
          display: block;
          width: 100%;
          max-width: 100%;
          padding: 14px 16px;
          color: #000;
          font-size: clamp(16px, 4vw, 20px);
          font-weight: 500;
          letter-spacing: 0.04em;
          line-height: 1.35;
          text-align: center;
          text-transform: uppercase;
          white-space: normal;
          overflow-wrap: break-word;
          flex-shrink: 1;
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);
          transition: color 0.25s ease, background 0.25s ease
     }

     .mobile-menu a:hover,
     .mobile-menu a.active {
          color: var(--brand);
          background: rgba(193, 118, 25, 0.06)
     }

     .close-menu {
          position: fixed;
          z-index: 130;
          top: 20px;
          right: 20px;
          display: grid;
          place-items: center;
          width: 44px;
          height: 44px;
          color: #000;
          font-size: 36px;
          line-height: 1;
          border-radius: 8px;
          background: rgba(0, 0, 0, 0.04);
          cursor: pointer;
          transition: background 0.2s ease
     }

     .close-menu:hover {
          background: rgba(0, 0, 0, 0.08)
     }

     .mobile-toggle:checked~.mobile-menu {
          transform: translateX(0)
     }

     .footer-main,
     .footer-contact-grid {
          grid-template-columns: 1fr
     }

     .footer .contact-item--address>span {
          white-space: normal
     }

     .footer .socials {
          border-left: 0;
          justify-content: flex-start;
          padding-left: 0
     }
}

@media (max-width:768px) {
     :root {
          --page-banner-height: var(--page-banner-height-mobile)
     }

     .site-header .header-inner.container {
          padding-inline: 20px
     }

     .mobile-menu {
          padding: 68px 16px 28px
     }

     .mobile-menu a,
     .mobile-submenu-toggle {
          padding: 13px 12px;
          font-size: clamp(15px, 4.2vw, 18px)
     }

     .mobile-submenu-panel a {
          padding: 11px 16px;
          font-size: clamp(13px, 3.8vw, 16px)
     }

     .close-menu {
          top: 16px;
          right: 16px;
          width: 40px;
          height: 40px;
          font-size: 32px
     }

     .product-page .da-hero,
     .product-page .hms-hero,
     .ai-page .ai-hero,
     .product-page .page-hero {
          margin: 10px 10px 0;
          border-radius: 20px
     }

     .footer-bottom-row {
          flex-direction: column;
          text-align: center
     }

     .footer .legal {
          flex-wrap: wrap;
          justify-content: center
     }
}

@media (prefers-reduced-motion:reduce) {

     .hero-content>*,
     .hero.is-ready .hero-float {
          opacity: 1 !important;
          transform: none !important;
          animation: none !important
     }

     *,
     *::before,
     *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important
     }

     .hero-blob,
     [data-animate],
     .animate-on-scroll {
          opacity: 1 !important;
          transform: none !important
     }
}

:root {
     --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
     --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
     --anim-duration: 0.85s;
     --anim-stagger: 0.12s
}

html.lenis,
html.lenis body {
     height: auto
}

.lenis.lenis-smooth {
     scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
     overscroll-behavior: contain
}

.lenis.lenis-stopped {
     overflow: hidden
}

[data-animate] {
     will-change: transform, opacity
}

[data-animate]:not(.is-visible) {
     opacity: 0;
     transition: opacity var(--anim-duration) var(--ease-out-expo), transform var(--anim-duration) var(--ease-out-expo);
     transition-delay: var(--anim-delay, 0ms)
}

[data-animate].is-visible {
     opacity: 1;
     transform: none !important
}

[data-animate="fade-up"]:not(.is-visible) {
     transform: translate3d(0, 48px, 0)
}

[data-animate="fade-left"]:not(.is-visible) {
     transform: translate3d(-56px, 0, 0)
}

[data-animate="fade-right"]:not(.is-visible) {
     transform: translate3d(56px, 0, 0)
}

[data-animate="zoom-in"]:not(.is-visible) {
     transform: scale3d(0.88, 0.88, 1)
}

[data-animate="reveal"]:not(.is-visible) {
     transform: translate3d(0, 100%, 0);
     clip-path: inset(0 0 100% 0)
}

[data-animate="reveal"].is-visible {
     clip-path: inset(0 0 0 0)
}

[data-animate-stagger]>* {
     opacity: 0;
     transform: translate3d(0, 32px, 0);
     transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
     transition-delay: calc(var(--anim-stagger) * var(--stagger-index, 0))
}

[data-animate-stagger].is-visible>* {
     opacity: 1;
     transform: translate3d(0, 0, 0)
}

.hero {
     isolation: isolate
}

@keyframes heroGradientShift {

     0%,
     100% {
          background-position: 0% 50%
     }

     50% {
          background-position: 100% 50%
     }
}

.hero-blobs {
     position: absolute;
     inset: 0;
     z-index: 1;
     overflow: hidden;
     border-radius: inherit;
     pointer-events: none
}

.hero-blob {
     position: absolute;
     border-radius: 50%;
     filter: blur(60px);
     opacity: 0.45;
     animation: blobFloat 18s ease-in-out infinite
}

.hero-blob--1 {
     width: 320px;
     height: 320px;
     top: 10%;
     left: 8%;
     background: rgba(248, 176, 94, 0.5);
     animation-delay: 0s
}

.hero-blob--2 {
     width: 240px;
     height: 240px;
     bottom: 20%;
     right: 15%;
     background: rgba(141, 75, 0, 0.4);
     animation-delay: -6s
}

.hero-blob--3 {
     width: 180px;
     height: 180px;
     top: 50%;
     left: 45%;
     background: rgba(255, 255, 255, 0.15);
     animation-delay: -12s
}

@keyframes blobFloat {

     0%,
     100% {
          transform: translate3d(0, 0, 0) scale(1)
     }

     33% {
          transform: translate3d(24px, -20px, 0) scale(1.05)
     }

     66% {
          transform: translate3d(-16px, 12px, 0) scale(0.95)
     }
}

.hero-bg {
     animation: none !important;
     transform: none !important;
     transition: none !important;
     opacity: 1 !important
}

.page-hero::before,
.page-hero::after,
.da-hero-bg,
.da-hero-bg::after,
.hms-hero-bg,
.hms-hero-bg::after,
.ai-hero-bg,
.ai-hero-bg::after {
     animation: none !important;
     transform: none !important;
     transition: none !important;
     opacity: 1 !important
}

.pm-hero,
.au-hero,
.blog-hero {
     animation: none !important;
     transition: none !important
}

html:not(.has-animations) .hero-content>* {
     opacity: 1;
     transform: none
}

.hero-content>* {
     opacity: 0;
     transform: translate3d(0, 28px, 0)
}

.hero.is-ready .hero-content>* {
     animation: heroEntrance 0.9s var(--ease-out-expo) forwards
}

.hero.is-ready .hero-content h1 {
     animation-delay: 0.1s
}

.hero.is-ready .hero-content .hero-subtitle {
     animation-delay: 0.25s
}

.hero.is-ready .hero-content .hero-description {
     animation-delay: 0.4s
}

.hero.is-ready .hero-content .hero-btn {
     animation-delay: 0.55s
}

.page-hero .hero-content>* {
     opacity: 1;
     transform: none;
     animation: none
}

@keyframes heroEntrance {
     to {
          opacity: 1;
          transform: translate3d(0, 0, 0)
     }
}

.hero.is-ready .hero-float {
     animation: heroCardEntrance 1s var(--ease-out-expo) 0.65s forwards;
     opacity: 0;
     transform: translate3d(40px, 20px, 0)
}

@keyframes heroCardEntrance {
     to {
          opacity: 1;
          transform: translate3d(0, 0, 0)
     }
}

.hero-subtitle .typing-text {
     border-right: 2px solid rgba(255, 255, 255, 0.85);
     padding-right: 2px;
     animation: typingCaret 0.8s step-end infinite
}

@keyframes typingCaret {
     50% {
          border-color: transparent
     }
}

.word-reveal .word {
     display: inline-block;
     overflow: hidden;
     vertical-align: top
}

.word-reveal .word-inner {
     display: inline-block;
     transform: translate3d(0, 110%, 0);
     transition: transform 0.65s var(--ease-out-expo);
     transition-delay: calc(0.04s * var(--word-index, 0))
}

.word-reveal.is-visible .word-inner {
     transform: translate3d(0, 0, 0)
}

.navbar {
     transition: top 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo)
}

.navbar.is-sticky-compact {
     top: 12px
}

.navbar-bar {
     transition: background 0.45s var(--ease-out-expo), border-color 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), backdrop-filter 0.45s var(--ease-out-expo)
}

.nav-links a {
     position: relative
}

@media (max-width:768px) {
     .nav-mobile-menu a {
          opacity: 0;
          transform: translate3d(-12px, 0, 0);
          transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), color 0.2s, background-color 0.2s;
          transition-delay: calc(0.06s * var(--link-index, 0))
     }

     .navbar.open .nav-mobile-menu a {
          opacity: 1;
          transform: translate3d(0, 0, 0)
     }
}

.tilt-3d {
     transform-style: preserve-3d;
     transition: transform 0.15s ease-out, box-shadow 0.35s var(--ease-out-expo);
     will-change: transform
}

.tilt-3d-inner {
     transform: translateZ(24px)
}

.hover-glow:hover {
     box-shadow: 0 20px 50px rgba(215, 146, 60, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12)
}

.hover-scale {
     transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo)
}

.hover-scale:hover {
     transform: scale3d(1.03, 1.03, 1)
}

.anim-float {
     animation: gentleFloat 5s ease-in-out infinite
}

.anim-float-slow {
     animation: gentleFloat 7s ease-in-out infinite;
     animation-delay: -2s
}

@keyframes gentleFloat {

     0%,
     100% {
          transform: translate3d(0, 0, 0)
     }

     50% {
          transform: translate3d(0, -14px, 0)
     }
}

.anim-rotate-slow {
     animation: slowRotate 24s linear infinite
}

@keyframes slowRotate {
     from {
          transform: rotate(0deg)
     }

     to {
          transform: rotate(360deg)
     }
}

.img-reveal {
     position: relative;
     overflow: hidden
}

.img-reveal::after {
     content: '';
     position: absolute;
     inset: 0;
     background: var(--cream, #f5ebde);
     transform: scaleX(1);
     transform-origin: right center;
     transition: transform 1s var(--ease-out-expo);
     z-index: 2;
     pointer-events: none
}

.img-reveal.is-visible::after {
     transform: scaleX(0)
}

.img-reveal img,
.img-reveal .about-img-main {
     transition: transform 0.6s var(--ease-out-expo)
}

.img-hover-zoom:hover img,
.about-images-inner:hover .about-img-main {
     transform: scale3d(1.04, 1.04, 1)
}

[data-parallax] {
     will-change: transform
}

.hero-btn,
.hero-card-btn,
.about-btn,
.newsletter-form button {
     position: relative;
     overflow: hidden;
     transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.25s, opacity 0.25s
}

.hero-btn::before,
.about-btn::before,
.newsletter-form button::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
     transform: translateX(-120%);
     transition: transform 0.6s var(--ease-out-expo);
     pointer-events: none
}

.hero-btn:hover::before,
.about-btn:hover::before,
.newsletter-form button:hover::before {
     transform: translateX(120%)
}

.hero-btn:hover,
.about-btn:hover {
     transform: translate3d(0, -3px, 0);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.35)
}

.service-card {
     transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo)
}

.service-card:hover {
     transform: translate3d(0, -6px, 0);
     box-shadow: 0 24px 48px rgba(18, 18, 18, 0.12)
}

.feature-item {
     transition: transform 0.35s var(--ease-out-expo)
}

.feature-item:hover {
     transform: translate3d(0, -4px, 0)
}

.feature-item:hover img {
     transform: scale3d(1.08, 1.08, 1);
     transition: transform 0.35s var(--ease-out-expo)
}

.newsletter-bg,
.newsletter-image {
     will-change: transform
}

.mouse-spotlight {
     position: fixed;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(248, 176, 94, 0.08) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
     transform: translate(-50%, -50%);
     opacity: 0;
     transition: opacity 0.4s
}

body.animations-ready .mouse-spotlight {
     opacity: 1
}

.about-stats .stat-icon {
     animation: none !important;
     transform: none !important
}

.stat-number.is-counted {
     animation: statPop 0.5s var(--ease-out-expo)
}

@keyframes statPop {
     0% {
          transform: scale3d(0.9, 0.9, 1)
     }

     60% {
          transform: scale3d(1.05, 1.05, 1)
     }

     100% {
          transform: scale3d(1, 1, 1)
     }
}

.why-item[data-animate='why-item']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(-36px, 0, 0)
}

.why-item[data-animate='why-item'].is-visible {
     opacity: 1;
     transform: none
}

.why-item[data-animate='why-item'].is-visible:hover {
     transform: translate3d(4px, 0, 0)
}

.why-us-image[data-animate='why-image']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(32px, 0, 0)
}

.why-us-image[data-animate='why-image'].is-visible {
     opacity: 1;
     transform: none
}

.why-item .why-item-bg {
     transition: filter 0.4s var(--ease-out-expo), opacity 0.35s ease
}

.why-item .why-item-title,
.why-item .why-item-icon {
     transition: color 0.35s var(--ease-out-expo), filter 0.35s var(--ease-out-expo)
}

@media (max-width:900px) {
     .why-item[data-animate='why-item']:not(.is-visible) {
          transform: translate3d(0, 20px, 0)
     }

     .why-item[data-animate='why-item'].is-visible:hover {
          transform: none
     }

     .why-us-image[data-animate='why-image']:not(.is-visible) {
          transform: translate3d(0, 24px, 0)
     }
}

@media (prefers-reduced-motion:reduce) {

     .why-item[data-animate='why-item'],
     .why-us-image[data-animate='why-image'] {
          opacity: 1 !important;
          transform: none !important
     }
}

.pm-hero {
     isolation: isolate
}

.pm-hero-overlay {
     border-radius: inherit;
     z-index: 1
}

.pm-hero .hero-blobs {
     z-index: 1
}

html:not(.has-animations) .pm-hero-body>* {
     opacity: 1;
     transform: none
}

.pm-hero .pm-hero-body>* {
     opacity: 0;
     transform: translate3d(0, 24px, 0)
}

.pm-hero.is-ready .pm-hero-body>* {
     animation: heroEntrance 0.85s var(--ease-out-expo) forwards
}

.pm-hero.is-ready .pm-breadcrumb {
     animation-delay: 0.1s
}

.pm-hero.is-ready .pm-page-title {
     animation-delay: 0.28s
}

[data-animate='pm-card']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(0, 28px, 0)
}

[data-animate='pm-card'].is-visible {
     opacity: 1;
     transform: none
}

.pm-service-card[data-animate='pm-card'].is-visible:hover,
.pm-feature-card[data-animate='pm-card'].is-visible:hover,
.pm-re-card[data-animate='pm-card'].is-visible:hover,
.pm-integration-card[data-animate='pm-card'].is-visible:hover,
.pm-choosing-card[data-animate='pm-card'].is-visible:hover {
     transform: translate3d(0, -4px, 0)
}

.pm-btn-cta,
.pm-contact-submit {
     transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), opacity 0.25s
}

.pm-btn-cta:hover,
.pm-contact-submit:hover {
     transform: translate3d(0, -3px, 0);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.3)
}

.pm-how-step[data-animate='pm-card'].is-visible:hover {
     transform: none
}

.pm-benefit-item-main[data-animate='pm-card'].is-visible:hover,
.pm-benefit-item-main-2[data-animate='pm-card'].is-visible:hover {
     transform: none
}

@media (prefers-reduced-motion:reduce) {
     .pm-hero .pm-hero-body>* {
          opacity: 1 !important;
          transform: none !important;
          animation: none !important
     }

     [data-animate='pm-card'] {
          opacity: 1 !important;
          transform: none !important
     }
}

.blog-hero {
     isolation: isolate
}

.blog-hero-overlay {
     border-radius: inherit;
     z-index: 1
}

.blog-hero .hero-blobs {
     z-index: 1
}

html:not(.has-animations) .blog-hero-body>* {
     opacity: 1;
     transform: none
}

.blog-hero .blog-hero-body>* {
     opacity: 0;
     transform: translate3d(0, 24px, 0)
}

.blog-hero.is-ready .blog-hero-body>* {
     animation: heroEntrance 0.85s var(--ease-out-expo) forwards
}

.blog-hero.is-ready .blog-breadcrumb {
     animation-delay: 0.1s
}

.blog-hero.is-ready .blog-page-title {
     animation-delay: 0.28s
}

.blog-page-title .typing-text {
     border-right: 2px solid rgba(255, 255, 255, 0.85);
     padding-right: 2px;
     animation: typingCaret 0.8s step-end infinite
}

.blog-page-title .typing-text--done {
     border-right: none;
     animation: none
}

[data-animate='blog-card']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(0, 36px, 0)
}

[data-animate='blog-card'].is-visible {
     opacity: 1;
     transform: none
}

.blog-card[data-animate='blog-card'].is-visible:hover {
     transform: translate3d(0, -6px, 0)
}

.blog-card .blog-img.img-reveal {
     position: relative;
     overflow: hidden
}

.blog-card .blog-img.img-reveal::after {
     border-radius: 0
}

.blog-card .blog-img.img-hover-zoom {
     transition: transform 0.55s var(--ease-out-expo)
}

.blog-card:hover .blog-img.img-hover-zoom {
     transform: scale3d(1.04, 1.04, 1)
}

.blog-explore-link {
     transition: transform 0.3s var(--ease-out-expo), opacity 0.25s
}

.blog-explore-link:hover {
     transform: translate3d(4px, 0, 0)
}

.blog-s-card {
     transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo)
}

.blog-s-card.is-visible:hover {
     transform: translate3d(-3px, 0, 0);
     box-shadow: -6px 6px 32px rgba(154, 154, 154, 0.14)
}

.blog-news-item {
     transition: transform 0.3s var(--ease-out-expo)
}

.blog-news-item.is-visible:hover {
     transform: translate3d(4px, 0, 0)
}

.blog-tag.is-visible {
     transition: transform 0.3s var(--ease-out-expo), background 0.2s
}

.blog-tag.is-visible:hover {
     transform: scale3d(1.05, 1.05, 1)
}

.blog-detail-card[data-animate='blog-card'].is-visible:hover {
     transform: translate3d(0, -4px, 0)
}

.blog-detail-hero-img.img-reveal {
     position: relative;
     overflow: hidden;
     display: block
}

.blog-detail-hero-img.img-hover-zoom {
     transition: transform 0.55s var(--ease-out-expo)
}

.blog-detail-card:hover .blog-detail-hero-img.img-hover-zoom {
     transform: scale3d(1.03, 1.03, 1)
}

.blog-comment[data-animate='fade-left']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(-32px, 0, 0)
}

.blog-comment[data-animate='fade-left'].is-visible {
     opacity: 1;
     transform: none
}

.blog-comment.is-visible:hover {
     transform: translate3d(6px, 0, 0);
     transition: transform 0.35s var(--ease-out-expo)
}

.blog-reply-form button.hover-scale:hover {
     transform: translate3d(0, -3px, 0);
     box-shadow: 0 10px 28px rgba(215, 146, 60, 0.32)
}

.blog-detail-share a.hover-scale:hover,
.blog-detail-tags a.hover-scale:hover {
     transform: scale3d(1.08, 1.08, 1);
     display: inline-block
}

@media (prefers-reduced-motion:reduce) {
     .blog-hero .blog-hero-body>* {
          opacity: 1 !important;
          transform: none !important;
          animation: none !important
     }

     [data-animate='blog-card'],
     .blog-comment[data-animate='fade-left'] {
          opacity: 1 !important;
          transform: none !important
     }

     .blog-page-title .typing-text {
          border-right: none
     }
}

.au-hero {
     isolation: isolate
}

.au-hero-overlay {
     border-radius: inherit;
     z-index: 1
}

.au-hero .hero-blobs {
     z-index: 1
}

html:not(.has-animations) .au-hero-body>* {
     opacity: 1;
     transform: none
}

.au-hero .au-hero-body>* {
     opacity: 0;
     transform: translate3d(0, 24px, 0)
}

.au-hero.is-ready .au-hero-body>* {
     animation: heroEntrance 0.85s var(--ease-out-expo) forwards
}

.au-hero.is-ready .au-breadcrumb {
     animation-delay: 0.1s
}

.au-hero.is-ready .au-page-title {
     animation-delay: 0.28s
}

.au-about-cta.hover-scale {
     transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), opacity 0.25s
}

.au-about-cta.hover-scale:hover {
     transform: translate3d(0, -3px, 0);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.35);
     opacity: 1
}

.au-about-badge-img.anim-badge-spin {
     transform-origin: center center;
     animation: auBadgeSpin 28s linear infinite;
     will-change: transform
}

@keyframes auBadgeSpin {
     from {
          transform: rotate(0deg)
     }

     to {
          transform: rotate(360deg)
     }
}

.au-feature-icon {
     animation: none !important;
     transform: none !important
}

.au-tab-btn {
     transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.2s, border-color 0.2s
}

.au-tab-btn.is-visible:hover:not(.active) {
     transform: translate3d(0, -2px, 0)
}

.au-tab-btn.active.is-visible {
     box-shadow: 0 8px 24px rgba(216, 147, 66, 0.2)
}

.au-tab-panel.au-panel-animate {
     animation: auPanelIn 0.55s var(--ease-out-expo) forwards
}

@keyframes auPanelIn {
     from {
          opacity: 0;
          transform: translate3d(0, 16px, 0)
     }

     to {
          opacity: 1;
          transform: translate3d(0, 0, 0)
     }
}

.au-mission-sidebar[data-animate].is-visible .au-mission-label {
     transform: rotate(-90deg)
}

.au-mission-sidebar[data-animate='fade-right']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(-40px, 0, 0)
}

.au-mission-sidebar[data-animate='fade-right'].is-visible {
     opacity: 1;
     transform: none
}

.au-mission-sidebar[data-animate='fade-right'].is-visible .au-mission-label {
     transform: rotate(-90deg)
}

@media (prefers-reduced-motion:reduce) {
     .au-hero .au-hero-body>* {
          opacity: 1 !important;
          transform: none !important;
          animation: none !important
     }

     .au-about-badge-img.anim-badge-spin {
          animation: none !important;
          transform: none !important
     }

     .au-tab-panel.au-panel-animate {
          animation: none !important
     }

     .au-mission-sidebar[data-animate='fade-right'] {
          opacity: 1 !important;
          transform: none !important
     }

     .au-mission-sidebar .au-mission-label {
          transform: rotate(-90deg)
     }
}

.cu-info-photo.cu-photo-reveal:not(.is-visible) {
     opacity: 0;
     transform: scale3d(1.04, 1.04, 1)
}

.cu-info-photo.cu-photo-reveal.is-visible {
     opacity: 1;
     transform: none;
     transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo)
}

.cu-info-visual:hover .cu-info-photo.cu-photo-reveal.is-visible {
     transform: scale3d(1.02, 1.02, 1)
}

.cu-submit.hover-scale {
     transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), opacity 0.2s
}

.cu-submit.hover-scale:hover {
     transform: translate3d(0, -3px, 0);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.35);
     opacity: 1
}

.cu-submit.hover-scale:active {
     transform: translate3d(0, -1px, 0) scale3d(0.98, 0.98, 1)
}

.cu-icon-hover {
     transition: transform 0.35s var(--ease-out-expo), background 0.25s
}

.cu-info-list li.is-visible:hover .cu-icon-hover {
     transform: scale3d(1.08, 1.08, 1)
}

.cu-info[data-animate='fade-right']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(40px, 0, 0)
}

.cu-info[data-animate='fade-right'].is-visible {
     opacity: 1;
     transform: none
}

.cu-form-wrap[data-animate='fade-left']:not(.is-visible) {
     opacity: 0;
     transform: translate3d(-40px, 0, 0)
}

.cu-form-wrap[data-animate='fade-left'].is-visible {
     opacity: 1;
     transform: none;
}

@media (prefers-reduced-motion:reduce) {

     .cu-info-photo.cu-photo-reveal,
     .cu-info[data-animate='fade-right'],
     .cu-form-wrap[data-animate='fade-left'] {
          opacity: 1 !important;
          transform: none !important
     }
}

.pp-block[data-animate='fade-up'].is-visible .pp-title,
.pp-block[data-animate='fade-up'].is-visible .pp-subtitle {
     transition: color 0.3s ease
}

.deal-analyzer-page {
     --da-brand: var(--orange);
     --da-brand-dark: var(--orange-dark);
     --da-brand-light: var(--orange-light);
     --da-accent: var(--orange-light);
     --da-dark: #1a1d2b;
     --da-cream: var(--cream);
     --da-ink: #121212;
     --da-muted: rgba(18, 18, 18, 0.7);
     --da-border: rgba(215, 146, 60, 0.22);
     --da-grad: linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #6b3a00 100%);
     --da-grad-accent: linear-gradient(135deg, #8D4B00, #F8B05E);
     --da-header-offset: 132px
}

.da-hero {
     position: relative;
     height: var(--page-banner-height, 660px);
     min-height: var(--page-banner-height, 660px);
     display: flex;
     align-items: center;
     background: var(--da-dark);
     overflow: hidden
}

.da-hero-bg {
     position: absolute;
     inset: 0;
     border-radius: inherit;
     background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(215, 146, 60, 0.22) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 5% 90%, rgba(248, 176, 94, 0.1) 0%, transparent 60%), linear-gradient(160deg, #1a1d2b 0%, #1f1f1f 55%, #141820 100%)
}

.da-hero-bg::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.88) 0%, rgba(12, 14, 22, 0.62) 50%, rgba(12, 14, 22, 0.78) 100%);
     pointer-events: none
}

.deal-analyzer-page .da-hero-bg {
     background: none;
     overflow: hidden
}

.deal-analyzer-page .da-hero-bg::before {
     content: "";
     position: absolute;
     inset: -28px;
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%), var(--hero-bg-url);
     background-size: 100% 100%, cover;
     background-position: center, center;
     background-repeat: no-repeat, no-repeat;
     filter: blur(10px);
     transform: scale(1.06);
     z-index: 0
}

.deal-analyzer-page .da-hero-bg::after {
     z-index: 1;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.55) 0%, rgba(12, 14, 22, 0.25) 50%, rgba(12, 14, 22, 0.4) 100%)
}

.deal-analyzer-page .da-grid-bg {
     display: none
}

.da-grid-bg {
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(215, 146, 60, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 146, 60, 0.08) 1px, transparent 1px);
     background-size: 60px 60px
}

.da-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
     animation: da-float 8s ease-in-out infinite
}

.da-orb-1 {
     width: 500px;
     height: 500px;
     top: -100px;
     right: -100px;
     background: rgba(215, 146, 60, 0.18);
     animation-delay: 0s
}

.da-orb-2 {
     width: 300px;
     height: 300px;
     bottom: 0;
     left: 10%;
     background: rgba(248, 176, 94, 0.12);
     animation-delay: 3s
}

@keyframes da-float {

     0%,
     100% {
          transform: translateY(0) scale(1)
     }

     50% {
          transform: translateY(-30px) scale(1.05)
     }
}

.da-hero-inner {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--da-header-offset) 40px 36px;
     width: 100%;
     height: 100%;
     box-sizing: border-box
}

.da-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     border: 1px solid rgba(248, 176, 94, 0.5);
     border-radius: 100px;
     background: rgba(248, 176, 94, 0.18);
     color: #fff;
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 16px
}

.da-badge .dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--da-accent);
     animation: da-pulse 2s infinite
}

@keyframes da-pulse {

     0%,
     100% {
          opacity: 1;
          transform: scale(1)
     }

     50% {
          opacity: .5;
          transform: scale(1.4)
     }
}

.da-hero h1 {
     margin-bottom: 16px;
     font-size: clamp(26px, 2.8vw, 38px);
     line-height: 1.2;
     color: #fff;
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35)
}

.da-hero h1 em {
     font-style: normal;
     color: var(--da-brand-light);
     background: none;
     -webkit-text-fill-color: currentColor
}

.da-hero-sub {
     max-width: 520px;
     margin-bottom: 24px;
     font-size: 15px;
     line-height: 1.55;
     color: rgba(255, 255, 255, 0.95);
     text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2)
}

.da-hero-cta {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     margin-bottom: 20px
}

.btn-da-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 8px;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand-light));
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
     transition: transform .2s, box-shadow .2s
}

.btn-da-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 16px 40px rgba(215, 146, 60, 0.5)
}

.btn-da-outline {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 28px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.22);
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     transition: border-color .2s, background .2s
}

.btn-da-outline:hover {
     border-color: var(--da-accent);
     background: rgba(248, 176, 94, 0.1)
}

.da-trust-row {
     display: flex;
     align-items: center;
     gap: 20px;
     flex-wrap: wrap
}

.da-trust-item {
     display: flex;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.82);
     font-size: 15px
}

.da-trust-item::before {
     content: "\2713";
     color: var(--da-accent);
     font-weight: 700;
     font-size: 14px;
     line-height: 1
}

.da-hero-card-wrap {
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-width: 0;
     max-width: 100%
}

.da-metrics-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(248, 176, 94, 0.22);
     border-radius: 18px;
     padding: 20px 22px;
     backdrop-filter: blur(16px);
     min-width: 0;
     max-width: 100%;
     box-sizing: border-box
}

.da-metrics-card-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
     margin-bottom: 20px;
     flex-wrap: wrap
}

.da-metrics-card-header span {
     color: rgba(255, 255, 255, 0.5);
     font-size: 15px
}

.da-metrics-card-title {
     color: #fff;
     font-size: 14px;
     font-weight: 600;
     min-width: 0;
     overflow-wrap: anywhere
}

.da-live-dot {
     display: flex;
     align-items: center;
     gap: 6px;
     color: var(--da-accent);
     font-size: 11px;
     font-weight: 600
}

.da-live-dot::before {
     content: "";
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--da-accent);
     animation: da-pulse 1.5s infinite
}

.da-kpi-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px
}

.da-kpi {
     background: rgba(215, 146, 60, 0.15);
     border: 1px solid rgba(248, 176, 94, 0.18);
     border-radius: 10px;
     padding: 10px 8px;
     text-align: center
}

.da-kpi .val {
     font-size: 18px;
     font-weight: 700;
     color: #fff;
     line-height: 1
}

.da-kpi .val.pos {
     color: #F8B05E
}

.da-kpi .val.neg {
     color: var(--orange-light);
     opacity: 0.85
}

.da-kpi .lbl {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.45);
     margin-top: 4px
}

.da-deal-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.da-deal-row:last-child {
     border-bottom: none;
     padding-bottom: 0
}

.da-deal-row .name {
     color: rgba(255, 255, 255, 0.65);
     font-size: 13px
}

.da-deal-row .amount {
     color: #fff;
     font-size: 13px;
     font-weight: 600
}

.da-deal-row .badge-g {
     color: var(--tag-color-accent);
     font-size: 11px;
     font-weight: 700;
     background: var(--tag-bg-strong);
     padding: 2px 8px;
     border-radius: 4px
}

.da-deal-row .badge-r {
     color: var(--tag-color);
     font-size: 11px;
     font-weight: 700;
     background: var(--tag-bg-muted);
     padding: 2px 8px;
     border-radius: 4px
}

.da-score-card {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(248, 176, 94, 0.28);
     border-radius: 14px;
     padding: 18px 22px;
     display: flex;
     align-items: center;
     gap: 16px
}

.da-score-circle {
     flex-shrink: 0;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     border: 3px solid var(--da-brand);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     font-weight: 700;
     color: var(--da-brand-light)
}

.da-score-text h4 {
     color: #fff;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 2px
}

.da-score-text p {
     color: rgba(255, 255, 255, 0.45);
     font-size: 12px;
     margin: 0
}

.da-hero-score {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-top: 14px;
     padding-top: 14px;
     border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.da-hero-score .da-score-circle {
     width: 44px;
     height: 44px;
     font-size: 15px;
     border-width: 2px;
     flex-shrink: 0
}

.da-hero-score .da-score-text h4 {
     font-size: 16px;
     margin-bottom: 2px
}

.da-hero-score .da-score-text p {
     font-size: 15px;
     line-height: 1.4
}

.da-section {
     padding: 0
}

.da-section-white {
     background: #fff
}

.da-section-cream {
     background: var(--da-cream)
}

.da-section-dark {
     background: var(--da-dark)
}

.da-section-dark .section-label {
     background: none;
     -webkit-text-fill-color: #F8B05E;
     color: #F8B05E
}

.da-section-brand {
     background: var(--da-brand-dark)
}

.da-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px
}

.da-label {
     display: inline-block;
     color: var(--da-brand);
     font-size: 18px;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     margin-bottom: 12px
}

.da-label.light {
     color: #F8B05E
}

.da-title {
     line-height: 1.15;
     margin-bottom: 14px
}

.da-title.light {
     color: #fff
}

.da-sub {
     max-width: 660px
}

.da-sub.light {
     color: rgba(255, 255, 255, 0.6)
}

.da-center {
     text-align: center
}

.da-center .da-sub {
     margin: 0 auto
}

.da-metrics-bar {
     background: var(--da-brand-dark);
     padding: 14px 0;
     overflow: hidden
}

.da-ticker {
     display: flex;
     gap: 0;
     align-items: center;
     animation: da-ticker 28s linear infinite;
     white-space: nowrap
}

@keyframes da-ticker {
     from {
          transform: translateX(0)
     }

     to {
          transform: translateX(-50%)
     }
}

.da-ticker-item {
     display: inline-flex;
     align-items: center;
     gap: 20px;
     padding: 0 40px;
     color: rgba(255, 255, 255, 0.85);
     font-size: 14px;
     font-weight: 500;
     border-right: 1px solid rgba(255, 255, 255, 0.2)
}

.da-ticker-item .metric-name {
     color: rgba(255, 255, 255, 0.55)
}

.da-ticker-item .metric-val {
     color: #fff;
     font-weight: 700
}

.da-ticker-item .metric-up {
     color: #F8B05E;
     font-size: 12px
}

.da-ticker-item .metric-down {
     color: var(--orange-light);
     opacity: 0.8;
     font-size: 12px
}

.da-steps {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: clamp(12px, 2vw, 24px);
     margin-top: 56px;
     position: relative;
     isolation: isolate
}

.da-steps::before {
     content: "";
     position: absolute;
     top: 40px;
     left: 12.5%;
     right: 12.5%;
     height: 3px;
     transform: translateY(-50%);
     background: linear-gradient(90deg, rgba(248, 176, 94, 0.45) 0%, #D7923C 18%, #F8B05E 50%, #D7923C 82%, rgba(248, 176, 94, 0.45) 100%);
     border-radius: 999px;
     z-index: 0;
     box-shadow: 0 1px 6px rgba(215, 146, 60, 0.3)
}

.da-step {
     text-align: center;
     position: relative;
     z-index: 1;
     padding: 0 clamp(4px, 1vw, 10px)
}

.da-step-num {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     font-weight: 700;
     color: #fff;
     position: relative;
     z-index: 2;
     background: linear-gradient(160deg, #F8B05E 0%, #D7923C 48%, #8D4B00 100%);
     border: 4px solid #fff;
     box-shadow: 0 0 0 1px rgba(215, 146, 60, 0.22), 0 10px 24px rgba(141, 75, 0, 0.26)
}

.da-step h3 {
     margin-bottom: 8px
}

.da-step p {
     margin-inline: auto
}

.da-types-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 52px
}

.da-type-card {
     padding: 18px 16px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: transform .25s, box-shadow .25s, border-color .25s;
     cursor: default
}

.da-type-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 48px rgba(215, 146, 60, 0.1);
     border-color: var(--da-accent)
}

.da-type-icon {
     width: 42px;
     height: 42px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: var(--da-brand-dark);
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.12), rgba(248, 176, 94, 0.08));
     border: 1px solid rgba(248, 176, 94, 0.22);
     margin-bottom: 16px
}

.da-type-card h3 {
     margin-bottom: 8px
}

.da-type-card p {
     line-height: 1.65
}

.da-type-tag {
     display: inline-block;
     margin-top: 14px;
     padding: 4px 12px;
     border-radius: 100px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: .06em;
     text-transform: uppercase
}

.tag-re,
.tag-biz,
.tag-ai {
     background: var(--tag-bg);
     color: var(--tag-color)
}

.da-metrics-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 52px
}

.da-metric-card {
     padding: 28px 22px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(248, 176, 94, 0.18);
     text-align: center;
     transition: border-color .2s, background .2s
}

.da-metric-card:hover {
     border-color: rgba(248, 176, 94, 0.45);
     background: rgba(248, 176, 94, 0.08)
}

.da-metric-card .formula {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.35);
     font-family: monospace;
     margin-bottom: 12px;
     background: rgba(255, 255, 255, 0.04);
     padding: 5px 8px;
     border-radius: 4px
}

.da-metric-card h4 {
     font-size: 15px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 6px
}

.da-metric-card p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.55;
     margin: 0
}

.da-features-split {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     margin-top: 16px;
     min-width: 0
}

.da-features-split>* {
     min-width: 0;
     max-width: 100%
}

.da-features-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
     min-width: 0
}

.da-feat-item {
     display: flex;
     gap: 14px;
     align-items: center;
     min-height: 72px;
     padding: 14px 16px;
     border-radius: 12px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: box-shadow .2s, border-color .2s
}

.da-feat-item:hover {
     box-shadow: 0 6px 24px rgba(215, 146, 60, 0.09);
     border-color: var(--da-accent)
}

.da-feat-icon {
     flex: 0 0 40px;
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.12), rgba(248, 176, 94, 0.08));
     border: 1px solid rgba(248, 176, 94, 0.22);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: var(--da-brand-dark)
}

.da-feat-body {
     flex: 1;
     min-width: 0
}

.da-feat-body h4 {
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink);
     margin: 0 0 4px;
     line-height: 1.35;
     overflow-wrap: anywhere
}

.da-feat-body p {
     font-size: 13px;
     color: var(--da-muted);
     line-height: 1.4;
     margin: 0;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     overflow: hidden
}

.da-feat-item h4 {
     font-size: 15px;
     font-weight: 600;
     color: var(--da-ink);
     margin-bottom: 4px
}

.da-feat-item p {
     font-size: 13px;
     color: var(--da-muted);
     line-height: 1.6;
     margin: 0
}

.da-visual-panel {
     background: var(--da-ink);
     border-radius: 20px;
     padding: 32px;
     border: 1px solid rgba(248, 176, 94, 0.22);
     min-width: 0;
     max-width: 100%;
     width: 100%;
     box-sizing: border-box
}

.da-vp-title {
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: .1em;
     margin-bottom: 20px
}

.da-report-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.da-report-row:last-child {
     border-bottom: none
}

.da-report-row .r-label {
     color: rgba(255, 255, 255, 0.55);
     font-size: 13px
}

.da-report-row .r-value {
     font-size: 14px;
     font-weight: 600;
     color: #fff
}

.da-report-row .r-badge {
     font-size: 11px;
     padding: 2px 8px;
     border-radius: 4px
}

.r-green,
.r-amber,
.r-red {
     color: var(--tag-color-accent);
     background: var(--tag-bg)
}

.da-vp-divider {
     height: 1px;
     background: rgba(255, 255, 255, 0.06);
     margin: 12px 0
}

.da-vp-score {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 16px;
     padding: 14px 16px;
     border-radius: 10px;
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.28), rgba(248, 176, 94, 0.12));
     border: 1px solid rgba(248, 176, 94, 0.3)
}

.da-vp-score .score-lbl {
     color: rgba(255, 255, 255, 0.6);
     font-size: 13px
}

.da-vp-score .score-num {
     font-size: 24px;
     font-weight: 700;
     color: #F8B05E
}

.da-modeling-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 52px
}

.da-modeling-card {
     padding: 24px 22px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: transform .25s, box-shadow .25s, border-color .25s
}

.da-modeling-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 48px rgba(215, 146, 60, 0.1);
     border-color: var(--da-accent)
}

.da-modeling-icon {
     width: 42px;
     height: 42px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: var(--da-brand-dark);
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.12), rgba(248, 176, 94, 0.08));
     border: 1px solid rgba(248, 176, 94, 0.22);
     margin-bottom: 16px
}

.da-modeling-card h3 {
     margin-bottom: 10px
}

.da-modeling-card p {
     font-size: 16px;
     line-height: 1.65;
     color: var(--da-muted);
     margin: 0 0 14px
}

.da-modeling-tag {
     display: inline-block;
     padding: 4px 12px;
     border-radius: 100px;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.02em;
     color: var(--da-brand-dark);
     background: rgba(215, 146, 60, 0.1);
     border: 1px solid rgba(248, 176, 94, 0.25)
}

.da-modeling-visuals {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 24px;
     margin-top: 40px;
     min-width: 0
}

.da-modeling-panel {
     padding: 24px;
     min-width: 0;
     max-width: 100%;
     width: 100%;
     box-sizing: border-box;
     overflow: hidden
}

.da-projection-table-wrap {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     margin: 0;
     padding: 0;
     max-width: 100%
}

.da-projection-table,
.da-amort-table {
     width: max-content;
     min-width: 100%;
     border-collapse: collapse;
     font-size: 12px;
     font-variant-numeric: tabular-nums
}

.da-projection-table th,
.da-projection-table td,
.da-amort-table th,
.da-amort-table td {
     padding: 8px 10px;
     text-align: right;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     white-space: nowrap
}

.da-projection-table th:first-child,
.da-projection-table td:first-child,
.da-amort-table th:first-child,
.da-amort-table td:first-child {
     text-align: left
}

.da-projection-table thead th,
.da-amort-table thead th {
     color: rgba(255, 255, 255, 0.45);
     font-size: 14px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     border-bottom: 1px solid rgba(248, 176, 94, 0.25)
}

.da-projection-table tbody th {
     color: rgba(255, 255, 255, 0.55);
     font-weight: 500;
     font-size: 14px
}

.da-projection-table tbody td,
.da-amort-table tbody td {
     color: #fff;
     font-weight: 500;
     font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
     font-size: 14px
}

.da-proj-highlight td,
.da-proj-highlight th {
     color: #F8B05E !important;
     font-weight: 600
}

.da-proj-accent td,
.da-proj-accent th {
     color: #F8B05E !important;
     font-weight: 700
}

.da-projection-note {
     margin: 14px 0 0;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.4);
     line-height: 1.4
}

.da-badge-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 16px
}

.da-badge-desktop {
     border-color: rgba(255, 255, 255, 0.35);
     background: rgba(255, 255, 255, 0.08)
}

.da-badge-desktop .dot {
     background: #fff
}

.da-demo-split {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     gap: 48px;
     align-items: center;
     min-width: 0
}

.da-demo-split>* {
     min-width: 0;
     max-width: 100%
}

.da-demo-list {
     margin: 20px 0 24px;
     padding: 0;
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px
}

.da-demo-list li {
     font-size: 14px;
     color: var(--da-muted);
     padding-left: 22px;
     position: relative;
     line-height: 1.5
}

.da-demo-list li::before {
     content: "\2713";
     position: absolute;
     left: 0;
     color: var(--da-brand);
     font-weight: 700
}

.da-demo-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 16px;
     align-items: center
}

.btn-da-sm {
     padding: 12px 24px;
     font-size: 14px
}

.btn-da-text {
     color: var(--da-brand-dark);
     font-weight: 600;
     font-size: 14px;
     text-decoration: none
}

.btn-da-text:hover {
     color: var(--da-brand)
}

.da-app-window {
     border-radius: 14px;
     overflow: hidden;
     border: 1px solid rgba(248, 176, 94, 0.28);
     box-shadow: 0 24px 64px rgba(26, 29, 43, 0.18);
     background: #1a1d2b;
     min-width: 0;
     max-width: 100%;
     width: 100%;
     box-sizing: border-box
}

.da-app-titlebar {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 10px 14px;
     background: #12141c;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.da-app-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.15)
}

.da-app-dot:first-child {
     background: #ff5f57
}

.da-app-dot:nth-child(2) {
     background: #febc2e
}

.da-app-dot:nth-child(3) {
     background: #28c840
}

.da-app-title {
     flex: 1;
     text-align: center;
     font-size: 11px;
     color: rgba(255, 255, 255, 0.45);
     margin-right: 38px
}

.da-app-body {
     padding: 16px;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     max-width: 100%
}

.da-app-content {
     min-width: 0;
     width: 100%
}

.da-app-tabs {
     display: flex;
     gap: 6px;
     margin-bottom: 14px
}

.da-app-tab {
     padding: 6px 12px;
     border-radius: 6px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: transparent;
     color: rgba(255, 255, 255, 0.5);
     font-size: 11px;
     font-weight: 600;
     cursor: pointer;
     font-family: inherit
}

.da-app-tab.is-active {
     background: rgba(215, 146, 60, 0.2);
     border-color: rgba(248, 176, 94, 0.35);
     color: #F8B05E
}

.da-app-row {
     display: grid;
     grid-template-columns: 1.2fr repeat(4, 1fr);
     gap: 8px;
     padding: 7px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     font-size: 11px;
     color: rgba(255, 255, 255, 0.75);
     font-variant-numeric: tabular-nums
}

.da-app-row span {
     min-width: 0;
     overflow-wrap: anywhere;
     word-break: break-word
}

.da-app-row-head {
     color: rgba(255, 255, 255, 0.4);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     font-size: 10px
}

.da-app-row-accent span:last-child,
.da-app-row-accent span:nth-child(n+2) {
     color: #F8B05E;
     font-weight: 600
}

.da-app-row span:first-child {
     color: rgba(255, 255, 255, 0.5)
}

.da-app-chat {
     display: flex;
     flex-direction: column;
     gap: 10px;
     min-height: 180px
}

.da-chat-msg {
     padding: 10px 12px;
     border-radius: 10px;
     font-size: 12px;
     line-height: 1.55;
     max-width: 92%
}

.da-chat-user {
     align-self: flex-end;
     background: rgba(215, 146, 60, 0.25);
     color: #fff;
     border: 1px solid rgba(248, 176, 94, 0.3)
}

.da-chat-bot {
     align-self: flex-start;
     background: rgba(255, 255, 255, 0.06);
     color: rgba(255, 255, 255, 0.75);
     border: 1px solid rgba(255, 255, 255, 0.08)
}

.da-compare-wrap {
     margin-top: 48px
}

.da-compare-table {
     width: 100%;
     border-collapse: collapse;
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid var(--da-border)
}

.da-compare-table th,
.da-compare-table td {
     padding: 14px 16px;
     text-align: center;
     border-bottom: 1px solid var(--da-border);
     font-size: 15px
}

.da-compare-table th:first-child,
.da-compare-table tbody th {
     text-align: left;
     font-weight: 600
}

.da-compare-table thead th {
     background: var(--da-dark);
     color: #fff;
     font-size: 15px;
     font-weight: 600
}

.da-compare-highlight {
     background: rgba(215, 146, 60, 0.08)
}

.da-compare-table thead .da-compare-highlight {
     background: var(--da-brand-dark);
     color: #fff
}

.da-compare-yes {
     color: #2d7a4f;
     font-weight: 600
}

.da-compare-no {
     color: #b45309;
     font-weight: 500
}

.da-compare-partial {
     color: var(--da-muted);
     font-weight: 500
}

.da-compare-cards {
     display: none
}

.da-compare-card {
     padding: 18px;
     border-radius: 12px;
     border: 1px solid var(--da-border);
     background: #fff;
     margin-bottom: 12px
}

.da-compare-card h4 {
     margin-bottom: 10px;
     font-size: 15px
}

.da-compare-card p {
     font-size: 13px;
     color: var(--da-muted);
     margin: 4px 0
}

.da-compare-win {
     color: var(--da-brand-dark) !important;
     font-weight: 600
}

.da-type-output {
     margin-top: 14px;
     padding-top: 12px;
     border-top: 1px solid var(--da-border);
     display: flex;
     flex-direction: column;
     gap: 6px
}

.da-type-output-row {
     display: flex;
     justify-content: space-between;
     font-size: 12px;
     gap: 8px
}

.da-type-output-row span:first-child {
     color: var(--da-muted)
}

.da-type-output-row span:last-child {
     font-weight: 600;
     color: var(--da-brand-dark);
     font-variant-numeric: tabular-nums
}

.da-modeling-card-dark {
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(248, 176, 94, 0.18)
}

.da-modeling-card-dark h3 {
     color: #fff
}

.da-modeling-card-dark p {
     color: rgba(255, 255, 255, 0.55)
}

.da-modeling-card-dark .da-modeling-tag {
     color: #F8B05E;
     background: rgba(215, 146, 60, 0.15);
     border-color: rgba(248, 176, 94, 0.3)
}

.da-anchor {
     display: block;
     position: relative;
     top: calc(-1 * var(--da-header-offset));
     height: 0;
     overflow: hidden
}

.da-financing-grid {
     display: flex;
     flex-direction: column;
     gap: 10px
}

.da-financing-item {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 14px;
     color: var(--da-ink);
     padding: 10px 14px;
     border-radius: 10px;
     border: 1px solid var(--da-border);
     background: #fff
}

.da-financing-check {
     color: var(--da-brand);
     font-weight: 700;
     flex-shrink: 0
}

.da-copilot-chat {
     background: var(--da-ink);
     border-radius: 16px;
     border: 1px solid rgba(248, 176, 94, 0.22);
     padding: 20px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     min-height: 320px
}

.da-copilot-header {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 4px
}

.da-copilot-input {
     margin-top: auto;
     padding: 12px 14px;
     border-radius: 10px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(255, 255, 255, 0.04);
     color: rgba(255, 255, 255, 0.35);
     font-size: 13px
}

.da-soon-badge {
     display: inline-block;
     padding: 2px 8px;
     border-radius: 100px;
     font-size: 10px;
     font-weight: 600;
     color: var(--da-brand-dark);
     background: rgba(215, 146, 60, 0.12);
     border: 1px solid rgba(248, 176, 94, 0.25);
     vertical-align: middle
}

.da-os-badges {
     display: flex;
     justify-content: center;
     gap: 12px;
     flex-wrap: wrap;
     margin: 28px 0 36px
}

.da-os-badge {
     padding: 8px 20px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 600;
     color: var(--da-brand-dark);
     background: rgba(215, 146, 60, 0.1);
     border: 1px solid rgba(248, 176, 94, 0.28)
}

.da-desktop-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 20px
}

.da-desktop-card {
     padding: 16px 16px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: border-color .2s, box-shadow .2s
}

.da-desktop-card:hover {
     border-color: var(--da-accent);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.08)
}

.da-desktop-icon {
     color: var(--da-brand);
     font-size: 14px;
     margin-bottom: 10px
}

.da-desktop-card h4 {
     margin-bottom: 6px;
     font-size: 15px
}

.da-desktop-card p {
     font-size: 15px;
     color: var(--da-muted);
     line-height: 1.55;
     margin: 0
}

.da-faq-section {
     position: relative;
     overflow: hidden
}

.da-faq-header {
     margin-bottom: 40px
}

.da-faq-accordion {
     display: flex;
     flex-direction: column;
     gap: 14px;
     max-width: 860px;
     margin: 0 auto
}

.deal-analyzer-page .da-faq-panel,
.deal-analyzer-page .ai-faq-panel {
     position: relative;
     background: #fff;
     border: 1px solid var(--da-border);
     border-radius: 16px;
     overflow: hidden;
     transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.deal-analyzer-page .da-faq-panel::before,
.deal-analyzer-page .ai-faq-panel::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, var(--da-brand-light), var(--da-brand));
     transform: scaleY(0);
     transform-origin: top;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.deal-analyzer-page .da-faq-panel.is-open,
.deal-analyzer-page .ai-faq-panel.is-open {
     border-color: rgba(248, 176, 94, 0.45);
     box-shadow: 0 12px 40px rgba(215, 146, 60, 0.12);
     transform: translateY(-2px)
}

.deal-analyzer-page .da-faq-panel.is-open::before,
.deal-analyzer-page .ai-faq-panel.is-open::before {
     transform: scaleY(1)
}

.deal-analyzer-page .da-faq-trigger,
.deal-analyzer-page .ai-faq-trigger {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 20px 22px;
     border: none;
     outline: none;
     background: transparent;
     cursor: pointer;
     text-align: left;
     font-family: inherit;
     -webkit-appearance: none;
     appearance: none;
     transition: background 0.3s ease
}

.deal-analyzer-page .da-faq-trigger:hover,
.deal-analyzer-page .ai-faq-trigger:hover {
     background: rgba(215, 146, 60, 0.04)
}

.deal-analyzer-page .da-faq-trigger-main,
.deal-analyzer-page .ai-faq-trigger-main {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     flex: 1;
     min-width: 0
}

.deal-analyzer-page .da-faq-index,
.deal-analyzer-page .ai-faq-index {
     flex-shrink: 0;
     width: 36px;
     height: 36px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: var(--da-brand-dark);
     background: rgba(215, 146, 60, 0.12);
     border: 1px solid rgba(248, 176, 94, 0.22);
     transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-index,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-index {
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand-light));
     color: #fff;
     border-color: transparent;
     transform: scale(1.05)
}

.deal-analyzer-page .da-faq-question,
.deal-analyzer-page .ai-faq-question {
     flex: 1;
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 500;
     color: var(--da-ink);
     line-height: 1.4;
     padding-top: 6px;
     transition: color 0.35s ease
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-question,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-question {
     color: var(--da-brand-dark)
}

.deal-analyzer-page .da-faq-icon,
.deal-analyzer-page .ai-faq-icon {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--da-brand-dark);
     background: rgba(215, 146, 60, 0.1);
     transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.deal-analyzer-page .da-faq-icon svg,
.deal-analyzer-page .ai-faq-icon svg {
     width: 18px;
     height: 18px
}

.deal-analyzer-page .da-faq-icon-v,
.deal-analyzer-page .ai-faq-icon-v {
     transform-origin: center;
     transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-icon,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-icon {
     background: var(--da-brand-dark);
     color: #fff;
     transform: rotate(90deg)
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-icon-v,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-icon-v {
     transform: scaleY(0);
     opacity: 0
}

.deal-analyzer-page .da-faq-body,
.deal-analyzer-page .ai-faq-body {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1)
}

.deal-analyzer-page .da-faq-body[hidden],
.deal-analyzer-page .ai-faq-body[hidden] {
     display: none
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-body,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-body {
     display: grid;
     grid-template-rows: 1fr
}

.deal-analyzer-page .da-faq-body-inner,
.deal-analyzer-page .ai-faq-body-inner {
     overflow: hidden;
     min-height: 0;
     padding: 0 22px 0 74px;
     opacity: 0;
     transform: translateY(-8px);
     transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.55s cubic-bezier(0.16, 1, 0.3, 1)
}

.deal-analyzer-page .da-faq-panel.is-open .da-faq-body-inner,
.deal-analyzer-page .ai-faq-panel.is-open .ai-faq-body-inner {
     padding: 0 22px 22px 74px;
     opacity: 1;
     transform: translateY(0)
}

.deal-analyzer-page .da-faq-body-inner p,
.deal-analyzer-page .ai-faq-body-inner p {
     margin: 0;
     font-size: 14px;
     line-height: 1.65;
     color: var(--da-muted)
}

.da-stat-text {
     font-size: clamp(28px, 2.5vw, 40px) !important
}

.da-testi-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px
}

.da-testi-date {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.04em;
     color: var(--da-muted);
     text-transform: uppercase
}

.da-testi-meta .da-stars {
     margin-bottom: 0
}

.da-pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px;
     align-items: start
}

.da-price-card {
     border-radius: 20px;
     padding: 36px 30px;
     border: 1px solid rgba(215, 146, 60, 0.15);
     background: #fff;
     position: relative
}

.da-price-card.featured {
     background: var(--da-grad);
     border-color: var(--da-accent)
}

.da-popular-badge {
     position: absolute;
     top: -14px;
     left: 50%;
     transform: translateX(-50%);
     padding: 4px 18px;
     background: var(--da-grad-accent);
     border-radius: 100px;
     color: var(--da-dark);
     font-size: 11px;
     font-weight: 700;
     letter-spacing: .06em;
     text-transform: uppercase;
     white-space: nowrap
}

.da-price-card h3 {
     font-size: 20px;
     font-weight: 600;
     color: var(--da-ink);
     margin-bottom: 6px
}

.da-price-card.featured h3 {
     color: #fff
}

.da-price-card .plan-desc {
     font-size: 13px;
     color: var(--da-muted);
     margin-bottom: 16px
}

.da-price-card.featured .plan-desc {
     color: rgba(255, 255, 255, 0.55)
}

.da-amount {
     font-size: 44px;
     font-weight: 700;
     color: var(--da-ink);
     line-height: 1
}

.da-price-card.featured .da-amount {
     color: #fff
}

.da-amount sup {
     font-size: 22px;
     vertical-align: super;
     font-weight: 500
}

.da-per {
     font-size: 13px;
     color: var(--da-muted);
     margin-bottom: 24px
}

.da-price-card.featured .da-per {
     color: rgba(255, 255, 255, 0.5)
}

.da-price-ul {
     list-style: none;
     padding: 0;
     margin: 0 0 28px;
     display: flex;
     flex-direction: column;
     gap: 11px
}

.da-price-ul li {
     font-size: 14px;
     display: flex;
     gap: 10px;
     align-items: flex-start;
     color: var(--da-muted)
}

.da-price-ul li::before {
     content: "✓";
     color: var(--da-accent);
     font-weight: 700;
     flex-shrink: 0
}

.da-price-card.featured .da-price-ul li {
     color: rgba(255, 255, 255, 0.8)
}

.da-price-card.featured .da-price-ul li::before {
     color: #F8B05E
}

.btn-da-plan {
     display: block;
     text-align: center;
     padding: 13px;
     border-radius: 10px;
     font-weight: 600;
     font-size: 15px;
     text-decoration: none;
     transition: transform .2s
}

.btn-da-plan:hover {
     transform: translateY(-2px)
}

.btn-plan-outline {
     border: 1px solid rgba(215, 146, 60, 0.22);
     color: var(--da-brand-dark)
}

.btn-plan-outline:hover {
     background: var(--da-cream)
}

.btn-plan-white {
     background: #fff;
     color: var(--da-brand-dark)
}

.btn-plan-white:hover {
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15)
}

.da-stats-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-top: 52px
}

.da-stat-box {
     text-align: center;
     padding: 32px 20px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(248, 176, 94, 0.18)
}

.da-stat-box .big {
     font-size: clamp(32px, 3vw, 48px);
     font-weight: 700;
     color: #fff;
     line-height: 1
}

.da-stat-box .big span {
     color: var(--da-accent);
     font-size: 0.55em
}

.da-stat-box .lbl {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.5);
     margin-top: 6px
}

.da-testi-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px
}

.da-testi-card {
     padding: 28px;
     border-radius: 16px;
     background: #fff;
     border: 1px solid var(--da-border)
}

.da-stars {
     color: var(--tag-color-accent);
     font-size: 14px;
     margin-bottom: 14px;
     letter-spacing: 0.12em
}

.da-testi-card blockquote {
     font-size: 14px;
     line-height: 1.7;
     color: var(--da-muted);
     margin: 0 0 18px;
     font-style: italic
}

.da-testi-author {
     display: flex;
     align-items: center;
     gap: 12px
}

.da-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-accent));
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: 14px;
     flex-shrink: 0
}

.da-testi-author h5 {
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink);
     margin: 0
}

.da-testi-author span {
     font-size: 12px;
     color: var(--da-muted)
}

@media (max-width:1200px) {
     .da-steps .da-step-num {
          width: 68px;
          height: 68px;
          font-size: 24px;
          border-width: 3px
     }

     .da-steps::before {
          top: 34px
     }
}

@media (max-width:1024px) {
     .da-container {
          padding-left: 24px;
          padding-right: 24px
     }

     .da-hero {
          height: auto;
          min-height: 0
     }

     .da-hero-inner {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: var(--da-header-offset) 24px 40px
     }

     .da-hero-card-wrap {
          display: flex;
          width: 100%;
          max-width: 620px;
          margin: 0 auto
     }

     .da-hero h1 {
          font-size: clamp(24px, 4.5vw, 34px)
     }

     .da-hero-sub {
          max-width: none
     }

     .da-steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 28px 20px
     }

     .da-steps::before {
          display: none
     }

     .da-steps .da-step-num {
          width: 72px;
          height: 72px;
          font-size: 26px
     }

     .da-types-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .da-modeling-grid {
          grid-template-columns: 1fr;
          max-width: 520px;
          margin-inline: auto
     }

     .da-modeling-visuals {
          grid-template-columns: 1fr;
          gap: 20px
     }

     .da-demo-split {
          grid-template-columns: 1fr;
          gap: 36px
     }

     .da-desktop-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .da-metrics-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .da-features-split {
          grid-template-columns: 1fr;
          gap: 36px
     }

     .da-pricing-grid {
          grid-template-columns: 1fr;
          max-width: 440px;
          margin-inline: auto
     }

     .da-stats-row {
          grid-template-columns: repeat(2, 1fr)
     }

     .da-testi-grid {
          grid-template-columns: 1fr;
          max-width: 520px;
          margin-inline: auto
     }

     .da-compare-table {
          display: none
     }

     .da-compare-cards {
          display: block
     }

     .da-app-content {
          min-width: 300px
     }
}

@media (max-width:768px) {
     .deal-analyzer-page {
          --da-header-offset: 112px
     }

     .da-container {
          padding-left: 20px;
          padding-right: 20px
     }

     .da-hero-inner {
          padding: var(--da-header-offset) 20px 32px;
          gap: 28px
     }

     .da-hero-cta {
          flex-direction: column;
          align-items: stretch
     }

     .da-hero-cta .btn-da-primary,
     .da-hero-cta .btn-da-outline {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .da-trust-row {
          gap: 12px 16px
     }

     .da-trust-item {
          font-size: 14px
     }

     .da-metrics-card {
          padding: 16px 18px
     }

     .da-kpi-grid {
          gap: 10px
     }

     .da-visual-panel {
          padding: 22px 18px
     }

     .da-app-title {
          font-size: 10px;
          margin-right: 0
     }

     .da-app-row {
          gap: 4px;
          font-size: 9px;
          padding: 6px 0
     }

     .da-demo-actions {
          flex-direction: column;
          align-items: stretch
     }

     .da-demo-actions .btn-da-primary,
     .da-demo-actions .btn-da-text {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .deal-analyzer-page .da-container {
          padding-left: 20px;
          padding-right: 20px
     }

     .deal-analyzer-page .da-hero-inner {
          padding: var(--da-header-offset) 20px 32px;
          gap: 28px
     }

     .deal-analyzer-page .da-hero h1 {
          font-size: clamp(22px, 6.2vw, 32px);
          overflow-wrap: anywhere;
          word-break: break-word
     }

     .deal-analyzer-page .da-hero-sub {
          max-width: none;
          font-size: 15px;
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-hero-cta {
          flex-direction: column;
          align-items: stretch
     }

     .deal-analyzer-page .da-hero-cta .btn-da-primary,
     .deal-analyzer-page .da-hero-cta .btn-da-outline {
          width: 100%;
          justify-content: center;
          text-align: center;
          box-sizing: border-box;
          white-space: normal;
          padding-left: 18px;
          padding-right: 18px
     }

     .deal-analyzer-page .da-trust-row {
          gap: 12px 16px
     }

     .deal-analyzer-page .da-trust-item {
          font-size: 14px;
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-metrics-card {
          padding: 16px 18px
     }

     .deal-analyzer-page .da-kpi-grid {
          gap: 10px
     }

     .deal-analyzer-page .da-kpi .lbl {
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-hero-score {
          gap: 14px
     }

     .deal-analyzer-page .da-score-text h4,
     .deal-analyzer-page .da-score-text p {
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-visual-panel {
          padding: 22px 16px
     }

     .deal-analyzer-page .da-modeling-panel {
          padding: 18px 14px
     }

     .deal-analyzer-page .da-vp-title {
          font-size: 12px;
          letter-spacing: 0.06em;
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-projection-note {
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-app-title {
          font-size: 10px;
          margin-right: 0;
          text-align: left;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis
     }

     .deal-analyzer-page .da-app-titlebar {
          gap: 6px;
          padding: 10px 12px
     }

     .deal-analyzer-page .da-app-body {
          padding: 12px;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch
     }

     .deal-analyzer-page .da-app-tabs {
          flex-wrap: wrap
     }

     .deal-analyzer-page .da-app-row {
          gap: 6px;
          font-size: 10px;
          padding: 8px 0
     }

     .deal-analyzer-page .da-app-content {
          min-width: 260px;
          width: max-content;
          max-width: none
     }

     .deal-analyzer-page .da-chat-msg {
          max-width: 100%;
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-demo-split,
     .deal-analyzer-page .da-features-split {
          gap: 28px
     }

     .deal-analyzer-page .da-feat-item {
          align-items: flex-start;
          min-height: 0
     }

     .deal-analyzer-page .da-feat-body p {
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-demo-actions {
          flex-direction: column;
          align-items: stretch
     }

     .deal-analyzer-page .da-demo-actions .btn-da-primary,
     .deal-analyzer-page .da-demo-actions .btn-da-text {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .deal-analyzer-page .section-title,
     .deal-analyzer-page .da-sub,
     .deal-analyzer-page .da-type-card h3,
     .deal-analyzer-page .da-type-card p {
          overflow-wrap: anywhere
     }
}

@media (max-width:640px) {
     .da-types-grid {
          grid-template-columns: 1fr
     }

     .da-stats-row {
          grid-template-columns: 1fr 1fr
     }

     .da-steps {
          grid-template-columns: 1fr;
          gap: 24px
     }

     .da-desktop-grid {
          grid-template-columns: 1fr
     }

     .da-badge-row {
          flex-direction: column;
          align-items: flex-start
     }

     .da-badge {
          white-space: normal;
          line-height: 1.35;
          text-align: left
     }

     .da-steps .da-step {
          display: grid;
          grid-template-columns: 56px 1fr;
          gap: 0 14px;
          text-align: left;
          align-items: start;
          padding: 16px;
          border: 1px solid var(--da-border);
          border-radius: 14px;
          background: #fff
     }

     .da-steps .da-step-num {
          width: 56px;
          height: 56px;
          font-size: 22px;
          margin: 0;
          grid-row: span 2;
          align-self: center
     }

     .da-steps .da-step h3 {
          margin-bottom: 4px;
          align-self: end;
          font-size: 17px
     }

     .da-steps .da-step>p {
          max-width: none;
          margin: 0;
          align-self: start;
          font-size: 14px
     }

     .deal-analyzer-page .da-faq-body-inner,
     .deal-analyzer-page .ai-faq-body-inner {
          padding: 0 16px 0 16px
     }

     .deal-analyzer-page .da-faq-panel.is-open .da-faq-body-inner,
     .deal-analyzer-page .ai-faq-panel.is-open .ai-faq-body-inner {
          padding: 0 16px 18px 16px
     }

     .deal-analyzer-page .da-badge {
          display: flex;
          max-width: 100%;
          box-sizing: border-box;
          overflow-wrap: anywhere
     }

     .deal-analyzer-page .da-modeling-visuals {
          grid-template-columns: 1fr;
          gap: 16px
     }

     .deal-analyzer-page .da-hero-card-wrap {
          max-width: 100%
     }

     .deal-analyzer-page .da-feat-item {
          padding: 14px 12px
     }

     .deal-analyzer-page .da-faq-trigger,
     .deal-analyzer-page .ai-faq-trigger {
          gap: 12px;
          padding: 16px 14px
     }

     .deal-analyzer-page .da-faq-index,
     .deal-analyzer-page .ai-faq-index {
          width: 32px;
          height: 32px;
          font-size: 11px
     }

     .deal-analyzer-page .da-faq-icon,
     .deal-analyzer-page .ai-faq-icon {
          width: 34px;
          height: 34px
     }

     .deal-analyzer-page .da-faq-question,
     .deal-analyzer-page .ai-faq-question {
          font-size: 14px;
          padding-top: 4px;
          overflow-wrap: anywhere
     }
}

@media (max-width:480px) {
     .da-stats-row {
          grid-template-columns: 1fr
     }

     .da-kpi-grid {
          grid-template-columns: 1fr 1fr
     }

     .da-hero-score {
          flex-direction: column;
          text-align: center
     }

     .deal-analyzer-page .da-container {
          padding-left: 16px;
          padding-right: 16px
     }

     .deal-analyzer-page .da-hero-inner {
          padding: var(--da-header-offset) 16px 28px
     }

     .deal-analyzer-page .da-trust-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px
     }

     .deal-analyzer-page .da-kpi-grid {
          grid-template-columns: 1fr 1fr
     }

     .deal-analyzer-page .da-kpi .val {
          font-size: 16px
     }

     .deal-analyzer-page .da-kpi .lbl {
          font-size: 10px
     }

     .deal-analyzer-page .da-app-body {
          padding: 10px
     }

     .deal-analyzer-page .da-app-content {
          min-width: 240px
     }

     .deal-analyzer-page .da-app-row {
          font-size: 9px;
          gap: 4px
     }

     .deal-analyzer-page .da-visual-panel,
     .deal-analyzer-page .da-modeling-panel {
          padding: 18px 14px
     }

     .deal-analyzer-page .da-projection-table th,
     .deal-analyzer-page .da-projection-table td,
     .deal-analyzer-page .da-amort-table th,
     .deal-analyzer-page .da-amort-table td {
          padding: 6px 8px;
          font-size: 11px
     }

     .deal-analyzer-page .da-projection-table thead th,
     .deal-analyzer-page .da-amort-table thead th {
          font-size: 11px
     }

     .deal-analyzer-page .da-projection-table tbody th,
     .deal-analyzer-page .da-projection-table tbody td,
     .deal-analyzer-page .da-amort-table tbody td {
          font-size: 11px
     }

     .deal-analyzer-page .da-feat-item {
          padding: 12px 10px;
          gap: 10px
     }

     .deal-analyzer-page .da-feat-icon {
          flex: 0 0 36px;
          width: 36px;
          height: 36px
     }
}

@media (max-width:360px) {
     .deal-analyzer-page .da-container {
          padding-left: 12px;
          padding-right: 12px
     }

     .deal-analyzer-page .da-hero-inner {
          padding: var(--da-header-offset) 12px 24px
     }

     .deal-analyzer-page .da-hero h1 {
          font-size: clamp(20px, 7vw, 26px);
          letter-spacing: -0.01em
     }

     .deal-analyzer-page .da-badge {
          font-size: 10px;
          letter-spacing: 0.06em;
          padding: 6px 10px
     }

     .deal-analyzer-page .da-app-title {
          font-size: 9px
     }

     .deal-analyzer-page .da-kpi-grid {
          grid-template-columns: 1fr
     }

     .deal-analyzer-page .da-metrics-card {
          padding: 14px 12px
     }
}

.deal-analyzer-page main {
     overflow-x: clip;
     overflow-y: visible
}
.truck-page .container,
.field-worker-page .container {
     /* width: min(var(--container), calc(100% - 32px)); */
     margin-inline: auto
}

.page-hero {
     position: relative;
     margin: 13px 16px 0;
     min-height: 320px;
     overflow: hidden;
     border-radius: 30px;
     display: grid;
     place-items: center;
     z-index: 1
}

.page-hero::before,
.page-hero::after {
     content: "";
     position: absolute;
     inset: 0;
     background-position: center;
     background-size: cover
}

.page-hero::before {
     background-image: url("../image/about_header.png")
}

.page-hero::after {
     background-image: url("../image/aboutbggrad.png")
}

.page-hero .hero-content {
     position: relative;
     z-index: 2;
     padding: 130px 16px 56px;
     color: #fff;
     text-align: center;
     animation: none
}

.breadcrumb {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 8px;
     font-size: clamp(16px, 1.4vw, 23px);
     font-weight: 500
}

.breadcrumb a {
     color: inherit
}

.breadcrumb a:hover {
     color: var(--brand-light)
}

.page-hero h1 {
     margin-top: 8px
}

.section {
     padding: clamp(0px, 7vw, 0px) 0;
     background: #fff
}

.section-tight {
     padding-top: 0
}

.section-title {
     margin-bottom: 12px
}

.our-solution {
     text-align: left !important
}

.intro-grid,
.services-lead,
.feature-row,
.truck-intro-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     align-items: center;
     gap: clamp(32px, 4vw, 56px)
}

.intro-copy h2 {
     max-width: 620px;
     margin-bottom: 36px
}

.rich-text {
     display: grid;
     gap: 24px
}

.rich-text strong,
.rich-text .strong,
.service-card strong {
     color: #000;
     font-weight: 500
}

.image-stack {
     position: relative;
     min-height: 360px
}

.image-stack::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 280px;
     height: 135px;
     background: url("../image/doted.png") center / contain no-repeat
}

.intro-image {
     position: relative;
     z-index: 1;
     width: calc(100% - 44px);
     margin-left: auto;
     padding-top: 56px
}

.intro-image img {
     width: 100%;
     aspect-ratio: 556 / 674;
     object-fit: cover
}

.badge-image {
     position: absolute;
     z-index: 2;
     bottom: -36px;
     left: -18px;
     width: 190px;
     animation: float-soft 4.5s ease-in-out infinite
}

.center-title {
     max-width: 970px;
     margin: 0 auto 58px;
     text-align: center
}

.center-title .section-title {
     text-align: center
}

.why-section .center-title {
     max-width: none;
     margin-inline: 0;
     text-align: left
}

.why-section .center-title .section-title {}

.feature-list {
     display: grid;
     gap: 80px
}

.feature-row {
     gap: 32px
}

.feature-row.reverse .feature-visual {
     order: 2
}

.feature-row.reverse .feature-text {
     order: 1
}

.feature-visual {
     display: grid;
     grid-template-columns: minmax(92px, 1fr) 2fr;
     align-items: stretch;
     gap: 24px
}

.vertical-title {
     display: grid;
     place-items: center;
     border-left: 1px solid var(--brand);
     border-right: 1px solid var(--brand)
}

.vertical-title h3 {
     min-width: 280px;
     text-align: center;
     transform: rotate(-90deg)
}

.feature-row.reverse .vertical-title h3 {
     transform: rotate(90deg)
}

.feature-photo img {
     width: 100%;
     aspect-ratio: 456 / 568;
     object-fit: cover;
     border-radius: 50%;
     box-shadow: var(--shadow)
}

.feature-text {
     display: grid;
     gap: 16px;
     text-align: center
}

.expertise-band {
     padding: 0 0 36px;
     border-radius: 30px;
     background: var(--cream)
}

.expertise-icon,
.solution-icon {
     position: relative;
     width: min(340px, 70vw);
     margin: 0 auto
}

.expertise-icon {
     transform: translateY(-86px);
     margin-bottom: -54px
}

.expertise-icon .center,
.solution-icon .center {
     position: absolute;
     inset: 0;
     display: grid;
     place-items: center;
     padding: 28px;
     animation: pulse-soft 4s ease-in-out infinite
}

.expertise-text {
     text-align: center
}

.expertise-text h2 {
     margin-bottom: 20px
}

.services-lead {
     gap: 24px
}

.services-main-image img {
     width: 100%;
     aspect-ratio: 961 / 582;
     object-fit: cover
}

.services-heading-wrap {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     padding-right: 18px
}

.services-heading-wrap h2 {
     max-width: 620px
}

.services-heading-wrap img {
     width: 150px;
     flex: 0 0 auto
}

.field-service-grid {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: repeat(5, minmax(0, 1fr));
     gap: 24px;
     margin: -118px 40px 0
}

.field-card {
     min-height: 100%;
     padding: 44px 24px 26px;
     border-radius: 0 0 20px 20px;
     background: rgba(255, 255, 255, 0.92);
     box-shadow: 0 14px 34px rgba(18, 18, 18, 0.16);
     transition: transform 0.25s ease, box-shadow 0.25s ease
}

.field-card:hover,
.truck-service-card:hover,
.solution-card:hover,
.truck-solution-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 26px 56px rgba(18, 18, 18, 0.16)
}

.field-card img {
     width: 56px;
     height: 56px;
     object-fit: contain;
     margin-bottom: 20px
}

.field-card h3 {
     margin-bottom: 12px
}

.solution-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 32px;
     margin-top: 96px
}

.solution-card {
     padding: 0 32px 32px;
     border-radius: 30px;
     background: var(--cream);
     text-align: center;
     transition: transform 0.25s ease, box-shadow 0.25s ease
}

.solution-icon {
     transform: translateY(-90px);
     margin-bottom: -60px
}

.solution-card h3 {
     margin-bottom: 14px
}

.cta {
     overflow: hidden;
     margin-bottom: 24px;
     border-radius: 30px;
     background: linear-gradient(90deg, #f3f3f3, #f3f3f3, #f5ebde)
}

.cta-wrap {
     position: relative;
     min-height: 360px
}

.cta-bg {
     width: 100%;
     min-height: 360px;
     object-fit: cover;
     object-position: top
}

.cta-person {
     position: absolute;
     left: 0;
     bottom: 0;
     width: min(38%, 520px);
     height: 100%;
     object-fit: cover;
     object-position: bottom
}

.cta-content {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center
}

.cta-box {
     width: min(70%, 820px);
     margin-left: auto;
     text-align: center
}

.cta-box h2 {
     margin-bottom: 16px
}

.cta-box p {
     color: var(--brand-light);
     font-size: clamp(24px, 2.6vw, 32px);
     font-weight: 500;
     line-height: 1.22
}

.subscribe {
     position: relative;
     margin-top: 34px
}

.subscribe input {
     width: 100%;
     height: 56px;
     padding: 0 220px 0 20px;
     border: 1px solid rgba(18, 18, 18, 0.4);
     border-radius: 10px;
     background: var(--paper);
     color: var(--ink);
     font: inherit;
     outline: none
}

.btn,
.subscribe button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 56px;
     padding: 0 32px;
     border: 0;
     border-radius: 10px;
     background: linear-gradient(359.26deg, #8d4b00 -24.88%, #f8b05e 124.51%);
     box-shadow: inset 0 13px 10px rgba(162, 86, 0, 0.4);
     color: #fff;
     font: inherit;
     font-size: 20px;
     cursor: pointer;
     transition: filter 0.25s ease, transform 0.25s ease
}

.subscribe button {
     position: absolute;
     top: 0;
     right: 0
}

.btn:hover,
.subscribe button:hover {
     filter: brightness(1.08);
     transform: translateY(-1px)
}
.field-services .services-heading-wrap h2 {
     text-transform: capitalize
}

.product-page main {
     overflow-x: clip
}

.product-page .page-hero {
     margin: 13px 16px 0;
     border-radius: 30px
}

.product-page .hero-content {
     padding-top: 100px
}
.truck-page .page-hero,
.field-worker-page .page-hero {
     min-height: clamp(250px, 20vw, 390px)
}

.truck-page .hero-content,
.field-worker-page .hero-content {
     padding-top: clamp(106px, 9.5vw, 160px);
     padding-bottom: clamp(34px, 4vw, 72px)
}

.truck-page .intro-head {
     max-width: 720px;
     margin: 0 auto 22px;
     text-align: center
}

.truck-intro-heading {
     color: var(--ink)
}

.truck-image img {
     width: 100%;
     aspect-ratio: 655 / 613;
     object-fit: cover
}

.truck-copy {
     color: var(--text-soft);
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     font-weight: var(--type-body-weight);
     line-height: var(--type-body-lh)
}

.dark-experience .container {
     width: 100%;
     max-width: none;
     padding: 0
}

.dark-experience-box {
     position: relative;
     display: flex;
     min-height: clamp(480px, 30vw, 572px);
     overflow: hidden;
     border-radius: 8px;
     background: linear-gradient(180deg, #1f1f1f 34.9%, rgba(18, 18, 18, 0.8) 100%)
}

.dark-experience-box::after {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     width: min(54%, 700px);
     height: 100%;
     background: url("../image/Truck/ExperienceBg.png") top right / contain no-repeat;
     pointer-events: none
}

.dark-experience-grid {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: minmax(320px, 507px) minmax(0, 660px);
     gap: clamp(32px, 4vw, 50px);
     align-items: center;
     justify-content: center;
     width: min(1268px, calc(100% - 48px));
     min-height: inherit;
     margin: 0 auto;
     padding: 40px 0
}

.dark-experience-image img {
     display: block;
     width: 100%;
     height: clamp(380px, 25.7vw, 492px);
     aspect-ratio: 507 / 492;
     object-fit: cover;
     object-position: right
}

.dark-experience-copy {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 0;
     color: #fff
}

.dark-experience-copy h2 {
     margin-bottom: 52px
}

.experience-subtitle {
     margin-bottom: 14px;
     font-style: italic
}

.reach-grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) minmax(0, 1fr);
     gap: clamp(28px, 3vw, 44px);
     align-items: start
}

.reach-col {
     padding-top: 24px
}

.reach-left {
     text-align: right
}

.reach-right {
     text-align: left
}

.reach-col h3 {
     margin-bottom: 22px
}

.reach-col .rich-text {
     gap: 20px
}

.reach-image {
     display: grid;
     place-items: center
}

.reach-image img {
     width: min(100%, 420px);
     animation: float-soft 5s ease-in-out infinite
}

.truck-services .center-title {
     max-width: 1040px
}

.truck-services .center-title p {
     max-width: 820px;
     margin: 16px auto 0;
     color: rgba(18, 18, 18, 0.7);
     font-size: clamp(16px, 1.3vw, 18px);
     line-height: 1.7
}

.truck-services-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 28px
}

.truck-service-card {
     display: flex;
     gap: 24px;
     height: 100%;
     padding: 32px;
     border: 1px solid var(--line);
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.4);
     transition: transform 0.25s ease, box-shadow 0.25s ease
}

.truck-service-card:nth-child(odd) {
     background: var(--paper)
}

.truck-service-icon {
     display: grid;
     place-items: center;
     flex: 0 0 96px;
     width: 96px;
     height: 96px;
     padding: 18px;
     border: 1px solid var(--brand-light);
     border-radius: 10px;
     background: #fff;
     box-shadow: 0 15px 32px rgba(0, 0, 0, 0.1)
}

.truck-solution-grid {
     display: grid;
     grid-template-columns: minmax(320px, 480px) minmax(620px, 760px);
     gap: clamp(40px, 6vw, 80px);
     align-items: center
}

.truck-solution-copy {
     max-width: 480px;
     opacity: 1 !important
}

.truck-solution-cards {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 40px;
     max-width: none;
     margin: 0;
     width: 100%
}

.truck-solution-copy h2 {
     margin-bottom: 18px
}

.truck-solution-card {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     opacity: 1 !important
}

.truck-solution-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(0deg, #000 6.02%, rgba(0, 0, 0, 0) 75.46%)
}

.truck-solution-card img {
     display: block;
     width: 100%;
     aspect-ratio: 361 / 389;
     object-fit: cover
}

.truck-solution-card h3 {
     position: absolute;
     z-index: 1;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 28px
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
     opacity: 0;
     animation-duration: 0.8s;
     animation-fill-mode: both;
     animation-timing-function: ease;
     animation-timeline: view();
     animation-range: entry 8% cover 32%
}

.reveal {
     animation-name: fade-up
}

.reveal-left {
     animation-name: fade-left
}

.reveal-right {
     animation-name: fade-right
}

.reveal-scale {
     animation-name: scale-in
}

.delay-1 {
     animation-delay: 0.08s
}

.delay-2 {
     animation-delay: 0.16s
}

.delay-3 {
     animation-delay: 0.24s
}

@keyframes fade-up {
     from {
          opacity: 0;
          transform: translateY(42px)
     }

     to {
          opacity: 1;
          transform: translateY(0)
     }
}

@keyframes fade-left {
     from {
          opacity: 0;
          transform: translateX(-48px)
     }

     to {
          opacity: 1;
          transform: translateX(0)
     }
}

@keyframes fade-right {
     from {
          opacity: 0;
          transform: translateX(48px)
     }

     to {
          opacity: 1;
          transform: translateX(0)
     }
}

@keyframes scale-in {
     from {
          opacity: 0;
          transform: scale(0.92)
     }

     to {
          opacity: 1;
          transform: scale(1)
     }
}

@keyframes float-soft {

     0%,
     100% {
          transform: translateY(0)
     }

     50% {
          transform: translateY(-12px)
     }
}

@keyframes pulse-soft {

     0%,
     100% {
          transform: scale(1)
     }

     50% {
          transform: scale(1.035)
     }
}

@media (max-width:1180px) {
     .field-service-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
          margin: 32px 16px 0
     }

     .services-heading-wrap img {
          display: none
     }

     .truck-solution-grid {
          grid-template-columns: minmax(300px, 420px) minmax(520px, 1fr);
          gap: 40px
     }
}

@media (max-width:1024px) {

     .intro-grid,
     .services-lead,
     .feature-row,
     .truck-intro-grid,
     .dark-experience-grid,
     .truck-solution-grid,
     .reach-grid {
          grid-template-columns: 1fr
     }

     .dark-experience-box {
          min-height: auto
     }

     .dark-experience-grid {
          width: min(760px, calc(100% - 32px));
          padding: 32px 0
     }

     .dark-experience-image img {
          height: auto;
          aspect-ratio: 16 / 11;
          object-position: center
     }

     .dark-experience-copy h2 {
          margin-bottom: 20px
     }

     .experience-subtitle {
          text-align: center
     }

     .truck-solution-copy {
          max-width: 720px;
          margin: 0 auto;
          text-align: center
     }

     .truck-solution-cards {
          max-width: 760px;
          margin: 0 auto
     }

     .reach-col {
          padding-top: 0
     }

     .intro-copy,
     .intro-copy h2,
     .rich-text,
     .section-title {
          text-align: center
     }

     .image-stack::before {
          display: none
     }

     .intro-image {
          width: 100%;
          padding-top: 0
     }

     .intro-image img {
          aspect-ratio: 16 / 10;
          border-radius: 12px
     }

     .badge-image {
          left: 12px;
          width: 150px
     }

     .why-section .center-title,
     .why-section .center-title .section-title {
          text-align: center
     }

     .feature-row.reverse .feature-visual,
     .feature-row.reverse .feature-text {
          order: initial
     }

     .feature-visual {
          grid-template-columns: 1fr
     }

     .vertical-title {
          border: 1px solid var(--brand);
          border-left: 0;
          border-right: 0;
          padding: 18px
     }

     .vertical-title h3,
     .feature-row.reverse .vertical-title h3 {
          min-width: auto;
          transform: none
     }

     .feature-photo img {
          border-radius: 30px
     }

     .field-service-grid,
     .solution-grid,
     .truck-services-grid,
     .truck-solution-cards {
          grid-template-columns: 1fr
     }

     .expertise-icon {
          transform: translateY(-56px);
          margin-bottom: -34px
     }

     .solution-grid {
          gap: 92px
     }

     .cta-wrap {
          min-height: auto
     }

     .cta-bg {
          min-height: 320px
     }

     .cta-person {
          left: 50%;
          width: auto;
          max-width: none;
          height: 320px;
          transform: translateX(-50%)
     }

     .cta-content {
          position: relative;
          padding: 32px 0
     }

     .cta-box {
          width: 100%;
          margin: 0 auto
     }

     .footer-main,
     .footer-contact-grid {
          grid-template-columns: 1fr 1fr
     }

     .socials {
          justify-content: flex-start;
          border-left: 0;
          padding-left: 0
     }

     .reach-left,
     .reach-right {
          text-align: center
     }

     .dark-experience-box::after {
          opacity: 0.45
     }
}

@media (max-width:640px) {
     .container {
          width: min(var(--container), calc(100% - 24px))
     }

     h1,
     h2,
     h3,
     h4,
     p,
     strong,
     a {
          overflow-wrap: anywhere
     }

     .reveal-left,
     .reveal-right {
          animation-name: fade-up
     }

     .page-hero {
          margin: 10px 10px 0;
          border-radius: 20px;
          min-height: 275px
     }

     .page-hero .hero-content {
          padding-top: 108px
     }

     .page-hero h1 {
          font-size: 34px
     }

     .intro-copy h2 {
          margin-bottom: 24px
     }

     .intro-copy,
     .truck-copy,
     .intro-head,
     .rich-text {
          width: 100%;
          min-width: 0
     }

     .intro-copy h2,
     .truck-intro-heading {
          font-size: 26px;
          line-height: 1.22
     }

     .badge-image {
          display: none
     }

     .feature-list {
          gap: 58px
     }

     .feature-text {
          font-size: 17px
     }

     .field-service-grid {
          margin-inline: 0
     }

     .field-card,
     .truck-service-card {
          padding: 24px
     }

     .truck-service-card {
          flex-direction: column
     }

     .truck-service-icon {
          flex-basis: 64px;
          width: 64px;
          height: 64px;
          padding: 12px
     }

     .solution-card {
          padding: 0 22px 28px
     }

     .solution-icon {
          transform: translateY(-70px);
          margin-bottom: -48px
     }

     .subscribe {
          display: grid;
          gap: 12px
     }

     .subscribe input {
          padding-right: 20px
     }

     .subscribe button {
          position: static;
          width: 100%
     }

     .footer-main,
     .footer-contact-grid {
          grid-template-columns: 1fr
     }

     .footer-bottom-row {
          flex-direction: column;
          text-align: center
     }

     .legal {
          flex-wrap: wrap;
          justify-content: center
     }
}

@media (prefers-reduced-motion:reduce) {

     *,
     *::before,
     *::after {
          scroll-behavior: auto !important;
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important
     }
}

@supports not (animation-timeline:view()) {

     .reveal,
     .reveal-left,
     .reveal-right,
     .reveal-scale {
          opacity: 1;
          animation-name: none
     }
}

.home-tech,
.home-roadmap,
.home-faq,
.home-ceo {
     --home-brand: #D7923C;
     --home-brand-dark: #8D4B00;
     --home-brand-light: #F8B05E;
     margin-top: var(--section-spacing);
     margin-bottom: var(--section-spacing)
}

.why-us+.home-tech,
.home-tech+.home-roadmap,
.home-roadmap+.home-faq,
.home-faq+.home-ceo {
     margin-top: 0
}

.home-tech {
     background: #fff
}

.home-tech-tabs-wrap {
     width: 100%;
     margin-top: 40px
}

.home-tech-tabs {
     display: flex;
     flex-wrap: nowrap;
     justify-content: stretch;
     align-items: stretch;
     gap: 12px;
     width: 100%;
     margin-bottom: 48px
}

.home-tech-tab {
     flex: 1 1 0;
     min-width: 0;
     padding: 12px 16px;
     border-radius: 6px;
     border: 1.5px solid var(--home-brand-dark);
     background: #fff;
     color: var(--home-brand-dark);
     font-family: var(--font-family);
     font-size: clamp(12px, 1.05vw, 15px);
     font-weight: 600;
     line-height: 1.25;
     text-align: center;
     cursor: pointer;
     white-space: nowrap;
     transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease
}

.home-tech-tab:hover:not(.is-active) {
     background: rgba(248, 176, 94, 0.12);
     transform: translateY(-1px)
}

.home-tech-tab.is-active,
.home-tech-tab[aria-selected="true"] {
     background: var(--orange-gradient);
     border-color: transparent;
     color: #fff;
     box-shadow: 0 6px 20px rgba(215, 146, 60, 0.35)
}

.home-tech-panels {
     position: relative;
     width: 100%;
     min-height: 0
}

.home-tech-panel {
     opacity: 0;
     transform: translateY(18px);
     pointer-events: none;
     transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), transform 0.42s cubic-bezier(0.16, 1, 0.3, 1)
}

.home-tech-panel.is-active {
     display: block
}

.home-tech-panel:not(.is-active) {
     display: none
}

.home-tech-panel.is-active.is-visible {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto
}

.home-tech-logos {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-evenly;
     align-items: flex-start;
     gap: 32px 24px;
     width: 100%;
     margin: 0;
     padding: 0
}

.home-tech-item {
     --tech-item-index: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 14px;
     flex: 0 1 auto;
     min-width: 100px;
     opacity: 0;
     transform: translateY(16px) scale(0.92);
     transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
     transition-delay: calc(var(--tech-item-index) * 55ms)
}

.home-tech-item.is-shown {
     opacity: 1;
     transform: translateY(0) scale(1)
}

.home-tech-item img {
     width: 72px;
     height: 72px;
     object-fit: contain;
     transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.home-tech-item:hover img {
     transform: scale(1.08) translateY(-4px)
}

.home-tech-item span {
     font-size: 15px;
     font-weight: 500;
     color: var(--text-primary);
     text-align: center;
     line-height: 1.3;
     max-width: 130px
}

@media (prefers-reduced-motion:reduce) {

     .home-tech-tab,
     .home-tech-panel,
     .home-tech-item,
     .home-tech-item img {
          transition: none !important
     }

     .home-tech-panel.is-active,
     .home-tech-item.is-shown,
     .home-tech-item {
          opacity: 1;
          transform: none
     }
}

.home-roadmap {
     background: #fff
}

.home-roadmap-intro {
     max-width: 680px;
     margin: 0 auto;
     text-align: center;
     font-size: var(--type-body-sm-size);
     color: var(--text-muted);
     line-height: var(--type-body-sm-lh)
}

.home-roadmap-steps {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     margin-top: 40px;
     position: relative
}

.home-roadmap-steps::before {
     content: "";
     position: absolute;
     top: 40px;
     left: calc(12.5% + 20px);
     right: calc(12.5% + 20px);
     height: 2px;
     background: linear-gradient(90deg, var(--home-brand-dark), var(--home-brand-light), var(--home-brand-dark));
     opacity: 0.35;
     z-index: 0
}

.home-roadmap-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 18px;
     position: relative;
     z-index: 1
}

.home-roadmap-num {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: var(--orange-gradient);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 22px;
     box-shadow: 0 4px 20px rgba(215, 146, 60, 0.35);
     flex-shrink: 0
}

.home-roadmap-step h4,
.home-roadmap-step h3 {
     font-size: var(--type-h3-size);
     font-weight: var(--type-h3-weight);
     color: var(--text-primary);
     margin-bottom: 10px
}

.home-roadmap-step p {
     font-size: 15px;
     color: var(--text-muted);
     line-height: 1.65;
     margin: 0
}

.home-roadmap-badge {
     display: inline-block;
     margin-top: 12px;
     padding: 4px 12px;
     border-radius: 999px;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     background: var(--tag-bg-strong);
     color: var(--home-brand-dark);
     border: 1px solid var(--tag-border)
}

.home-faq {
     --ai-brand: var(--home-brand);
     --ai-brand-dark: var(--home-brand-dark);
     --ai-brand-light: var(--home-brand-light);
     background: #fff
}

.home-faq-header {
     margin-bottom: 36px
}

.home-faq-header .section-title {
     margin-bottom: 10px
}

.home-faq-sub {
     max-width: 640px;
     margin: 0 auto;
     font-size: var(--type-body-sm-size);
     color: var(--text-muted);
     line-height: var(--type-body-sm-lh);
     text-align: center
}

.home-faq-accordion,
.home-faq .ai-faq-accordion {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
     max-width: 860px;
     margin: 0 auto
}

.home-faq .ai-faq-panel {
     position: relative;
     background: #fff;
     border: 1px solid rgba(215, 146, 60, 0.16);
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 2px 12px rgba(18, 18, 18, 0.04);
     transition: border-color 0.35s ease, box-shadow 0.35s ease
}

.home-faq .ai-faq-panel::before {
     display: none
}

.home-faq .ai-faq-panel.is-open {
     border-color: rgba(215, 146, 60, 0.38);
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.1);
     transform: none
}

.home-faq .ai-faq-trigger {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 18px 24px;
     background: transparent;
     border: none;
     cursor: pointer;
     text-align: left;
     font-family: var(--font-family);
     transition: background 0.25s ease
}

.home-faq .ai-faq-trigger:hover {
     background: rgba(248, 176, 94, 0.06)
}

.home-faq .ai-faq-trigger-main {
     display: flex;
     align-items: center;
     gap: 18px;
     flex: 1;
     min-width: 0
}

.home-faq .ai-faq-index {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 13px;
     font-weight: 700;
     color: var(--home-brand-dark);
     background: rgba(248, 176, 94, 0.14);
     border: 1px solid rgba(215, 146, 60, 0.2);
     transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease
}

.home-faq .ai-faq-panel.is-open .ai-faq-index {
     background: var(--orange-gradient);
     color: #fff;
     border-color: transparent;
     transform: none
}

.home-faq .ai-faq-question {
     flex: 1;
     font-size: clamp(15px, 1.2vw, 17px);
     font-weight: 600;
     color: var(--text-primary);
     line-height: 1.45;
     transition: color 0.3s ease
}

.home-faq .ai-faq-panel.is-open .ai-faq-question {
     color: var(--home-brand-dark)
}

.home-faq .ai-faq-icon {
     flex-shrink: 0;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(248, 176, 94, 0.16);
     color: var(--home-brand-dark);
     transition: background 0.35s ease, color 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.home-faq .ai-faq-icon svg {
     width: 16px;
     height: 16px
}

.home-faq .ai-faq-icon-v {
     transform-origin: center;
     transition: transform 0.35s ease, opacity 0.3s ease
}

.home-faq .ai-faq-panel.is-open .ai-faq-icon {
     background: var(--home-brand-dark);
     color: #fff;
     transform: rotate(45deg)
}

.home-faq .ai-faq-panel.is-open .ai-faq-icon-v {
     transform: scaleY(0);
     opacity: 0
}

.home-faq .ai-faq-body {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.home-faq .ai-faq-body[hidden] {
     display: none
}

.home-faq .ai-faq-panel.is-open .ai-faq-body {
     display: grid;
     grid-template-rows: 1fr
}

.home-faq .ai-faq-body-inner {
     overflow: hidden;
     min-height: 0;
     padding: 0 24px 0 82px;
     opacity: 0;
     transform: translateY(-4px);
     transition: opacity 0.35s ease, transform 0.35s ease, padding 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.home-faq .ai-faq-panel.is-open .ai-faq-body-inner {
     padding: 0 24px 20px 82px;
     opacity: 1;
     transform: translateY(0)
}

.home-faq .ai-faq-body-inner p {
     margin: 0;
     font-size: 15px;
     color: var(--text-muted);
     line-height: 1.75;
     max-width: 900px
}

.home-ceo {
     background: #fff
}

.home-ceo-grid {
     display: grid;
     grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
     gap: 56px;
     align-items: center;
     margin-top: 8px
}

.home-ceo-visual {
     position: relative
}

.home-ceo-frame {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     padding: 6px;
     background: linear-gradient(161deg, rgba(255, 236, 215, 0.5) 35%, #ffe3c0 98%);
     box-shadow: 0 18px 48px rgba(141, 75, 0, 0.12)
}

.home-ceo-frame img {
     width: 100%;
     height: auto;
     min-height: 360px;
     object-fit: cover;
     border-radius: 12px
}

.home-ceo-badge {
     position: absolute;
     bottom: -18px;
     right: 24px;
     background: linear-gradient(135deg, var(--home-brand-dark), var(--home-brand));
     color: #fff;
     padding: 14px 20px;
     border-radius: 12px;
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.35);
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.04em;
     text-transform: uppercase
}

.home-ceo-content .section-tag {
     display: inline-block;
     margin-bottom: 10px
}

.home-ceo-name {
     font-size: clamp(28px, 3vw, 36px);
     font-weight: 600;
     color: var(--text-primary);
     margin: 8px 0 4px;
     line-height: 1.2
}

.home-ceo-role {
     font-size: 17px;
     font-weight: 500;
     color: var(--home-brand);
     margin-bottom: 20px
}

.home-ceo-quote {
     position: relative;
     margin: 0 0 20px;
     padding: 20px 20px 20px 24px;
     background: var(--cream);
     border-left: 4px solid var(--home-brand);
     border-radius: 0 12px 12px 0;
     font-size: 17px;
     font-style: italic;
     color: var(--text-soft);
     line-height: 1.65
}

.home-ceo-bio {
     font-size: 16px;
     color: var(--text-muted);
     line-height: 1.75;
     margin-bottom: 28px
}

.home-ceo-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     margin-bottom: 28px
}

.home-ceo-meta-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     color: var(--text-muted)
}

.home-ceo-meta-item strong {
     color: var(--home-brand-dark);
     font-weight: 600
}

.home-ceo-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 28px;
     border: none;
     border-radius: 8px;
     background: var(--orange-gradient);
     color: #fff;
     font-family: var(--font-family);
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: opacity 0.2s ease, transform 0.2s ease
}

.home-ceo-btn:hover {
     opacity: 0.92;
     transform: translateY(-1px)
}

@media (max-width:1100px) {
     .home-roadmap-steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 36px 24px
     }

     .home-roadmap-steps::before {
          display: none
     }
}

@media (max-width:900px) {
     .home-tech-tabs {
          flex-wrap: nowrap;
          justify-content: flex-start;
          overflow-x: auto;
          padding-bottom: 8px;
          margin-bottom: 36px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: thin
     }

     .home-tech-tab {
          flex: 0 0 auto;
          min-width: max-content;
          font-size: 14px;
          padding: 10px 16px
     }

     .home-tech-logos {
          justify-content: space-evenly;
          gap: 28px 20px
     }

     .home-tech-item img {
          width: 60px;
          height: 60px
     }
}

@media (max-width:768px) {
     .home-roadmap-steps {
          grid-template-columns: 1fr;
          gap: 32px
     }

     .home-ceo-grid {
          grid-template-columns: 1fr;
          gap: 40px
     }

     .home-ceo-badge {
          right: 16px;
          bottom: -14px;
          padding: 10px 16px;
          font-size: 11px
     }

     .home-faq .ai-faq-trigger {
          padding: 16px 18px;
          gap: 12px
     }

     .home-faq .ai-faq-trigger-main {
          gap: 12px
     }

     .home-faq .ai-faq-index {
          width: 36px;
          height: 36px;
          font-size: 12px
     }

     .home-faq .ai-faq-body-inner,
     .home-faq .ai-faq-panel.is-open .ai-faq-body-inner {
          padding-left: 18px;
          padding-right: 18px
     }
}

@media (max-width:480px) {
     .home-tech-logos {
          gap: 24px 16px
     }

     .home-tech-item span {
          font-size: 13px
     }
}

.au-hero {
     position: relative;
     margin: 13px 16px 0;
     border-radius: 30px;
     overflow: hidden;
     height: 440px;
     background: url('https://cdn.codia.ai/figma/CjSKfsvHxed5WQZqe4sla3/img-fdda43c98d45c028.png') center/cover no-repeat;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 1
}

.au-hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     border-radius: 30px
}

.au-hero-body {
     position: relative;
     z-index: 2;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 12px;
     padding: 80px 20px 40px;
     text-align: center
}

.au-breadcrumb {
     font-family: var(--font-family);
     font-size: 20px;
     font-weight: 500;
     color: #ffffff;
     letter-spacing: 0.6px
}

.au-breadcrumb a {
     color: #ffffff;
     transition: color 0.2s
}

.au-breadcrumb a:hover {
     color: var(--orange)
}

.au-page-content {
     margin: 0 auto;
     padding: 0 40px
}

.au-about-section {
     padding: 0;
     display: flex;
     align-items: flex-start;
     gap: 80px
}

.au-about-left {
     flex: 1;
     min-width: 0
}

.au-about-right {
     flex: 0 0 566px;
     position: relative
}

.au-about-tag {
     font-family: var(--font-family);
     font-size: 20px;
     font-weight: 700;
     letter-spacing: 1.04px;
     text-transform: uppercase;
     background: var(--orange-gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 8px;
     display: inline-block
}

.au-about-heading {
     margin-bottom: 13px;
     letter-spacing: 0.8px
}

.au-about-text {
     margin-bottom: 20px;
     letter-spacing: 0.44px
}

.au-about-cta {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 24px;
     background: var(--orange-gradient);
     border-radius: 10px;
     color: #ffffff;
     font-family: var(--font-family);
     font-size: 19px;
     font-weight: 500;
     letter-spacing: 0.66px;
     text-decoration: none;
     margin-top: 10px;
     transition: opacity 0.2s
}

.au-about-cta:hover {
     opacity: 0.9
}

.au-about-features {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: clamp(20px, 4vw, 60px);
     width: 100%;
     margin-top: 48px
}

.au-about-feature {
     display: flex;
     flex-direction: column;
     gap: 8px;
     min-width: 0;
     width: 100%
}

.au-feature-divider {
     width: 100%;
     max-width: 240px;
     height: 1px;
     background: rgba(177, 159, 111, 0.6);
     margin-bottom: 7px
}

.au-feature-icon {
     height: 52px;
     width: 52px;
     height: 52px;
     object-fit: contain;
     margin-bottom: 8px
}

.au-feature-label {
     font-family: var(--font-family);
     font-size: 17px;
     font-weight: 400;
     line-height: 1.65;
     letter-spacing: 0.44px;
     color: rgba(18, 18, 18, 0.9)
}

.au-about-image-wrap {
     position: relative;
     width: 566px;
     height: 680px;
     max-width: 100%
}

.au-about-dots-img {
     position: absolute;
     top: 0;
     left: -40px;
     width: 260px;
     height: 130px;
     object-fit: contain;
     z-index: 1;
     opacity: 0.8
}

.au-about-main-img {
     position: absolute;
     top: 30px;
     left: 0;
     width: 566px;
     max-width: 100%;
     height: 640px;
     object-fit: cover;
     border-radius: 10px;
     z-index: 2
}

.au-about-badge-img {
     position: absolute;
     bottom: -17px;
     left: -59px;
     width: 200px;
     height: 200px;
     object-fit: contain;
     z-index: 3;
     filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25))
}

.au-business-section {
     padding: 0;
     text-align: center
}

.au-business-tag {
     font-family: var(--font-family);
     font-size: 22px;
     font-weight: 700;
     letter-spacing: 1.04px;
     text-transform: uppercase;
     background: var(--orange-gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 12px;
     display: inline-block
}

.au-business-heading {
     margin-bottom: 48px;
     letter-spacing: 0.8px
}

.au-business-tabs {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: clamp(8px, 2vw, 28px);
     width: 100%;
     max-width: 960px;
     margin: 0 auto 60px;
     overflow: visible
}

.au-tab-btn {
     box-sizing: border-box;
     width: 100%;
     min-width: 0;
     height: 55px;
     padding: 0 clamp(6px, 1.5vw, 16px);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-family);
     font-size: clamp(13px, 1.6vw, 19px);
     font-weight: 400;
     line-height: 1.2;
     white-space: nowrap;
     color: rgba(18, 18, 18, 0.8);
     background: rgba(18, 18, 18, 0.01);
     border: 0.44px solid rgba(18, 18, 18, 0.4);
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.2s
}

.au-tab-btn.active {
     background: #fff9f2;
     border-color: rgba(216, 147, 66, 0.4);
     font-weight: 600;
     color: #121212
}

.au-tab-btn:hover:not(.active) {
     background: rgba(18, 18, 18, 0.04)
}

.au-tab-panel {
     display: none
}

.au-tab-panel.active {
     display: block
}

.au-mission-area {
     display: flex;
     align-items: center;
     gap: 40px
}

.au-mission-area--centered {
     justify-content: center;
     text-align: center
}

.au-mission-sidebar {
     flex: 0 0 auto;
     min-width: 78px;
     display: flex;
     align-items: center;
     justify-content: center
}

.au-mission-label-box {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 100px 0;
     border-left: 1px solid rgba(193, 118, 25, 1);
     border-right: 1px solid rgba(193, 118, 25, 1)
}

.au-mission-label {
     display: block;
     white-space: nowrap;
     transform: rotate(-90deg);
     font-family: var(--font-family);
     font-weight: 500;
     font-size: 32px;
     line-height: 100%;
     letter-spacing: 0;
     text-align: center;
     color: rgba(18, 18, 18, 1)
}

.au-mission-center {
     flex: 0 0 440px
}

.au-mission-circle-img {
     width: 440px;
     max-width: 100%;
     aspect-ratio: 1;
     height: auto;
     border-radius: 50%;
     object-fit: cover;
     object-position: center;
     display: block
}

.au-mission-right {
     flex: 1;
     text-align: center;
     padding: 0 20px
}

.au-mission-right--narrow {
     max-width: 800px;
     margin: 0 auto
}

.au-mission-text {
     font-family: var(--font-family);
     font-size: 19px;
     font-weight: 400;
     line-height: 1.6;
     letter-spacing: 0.44px;
     color: rgba(18, 18, 18, 0.9)
}

@media (max-width:1100px) {
     .au-about-section {
          flex-direction: column;
          gap: 40px
     }

     .au-about-left,
     .au-about-right {
          flex: none;
          width: 100%;
          max-width: 100%
     }

     .au-about-image-wrap {
          width: 100%;
          height: 420px;
          overflow: visible;
          margin-bottom: 24px
     }

     .au-about-main-img {
          position: relative;
          top: 0;
          left: 0;
          width: 100%;
          height: 400px
     }

     .au-about-badge-img {
          bottom: -16px;
          left: auto;
          right: 12px;
          width: 150px;
          height: 150px
     }

     .au-about-dots-img {
          display: none
     }

     .au-about-features {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 24px;
          margin-top: 36px
     }

     .au-feature-divider {
          max-width: 100%
     }

     .au-mission-area {
          flex-wrap: wrap;
          justify-content: center
     }

     .au-mission-center {
          flex: 0 0 320px
     }

     .au-mission-circle-img {
          width: 320px;
          height: auto;
          aspect-ratio: 1
     }
}

@media (max-width:768px) {
     .au-hero {
          margin: 10px 10px 0;
          height: 300px;
          border-radius: 20px
     }

     .au-breadcrumb {
          font-size: 16px
     }

     .au-page-content {
          padding: 0 20px
     }

     .au-about-features {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 16px;
          margin-top: 28px
     }

     .au-feature-label {
          font-size: 14px
     }

     .au-business-tabs {
          gap: 10px;
          margin-bottom: 40px
     }

     .au-tab-btn {
          height: 48px;
          font-size: clamp(12px, 3.2vw, 15px);
          padding: 0 8px
     }
}

.visually-hidden {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0
}

.au-page-title {
     letter-spacing: 1.38px
}

.cu-section {
     padding: 0 16px
}

.cu-inner {
     max-width: 1110px;
     margin: 0 auto;
     padding: 0
}

.cu-panel {
     display: grid;
     grid-template-columns: 415px minmax(420px, 1fr);
     gap: 42px;
     align-items: start
}

.cu-info {
     position: relative;
     min-height: 544px
}

.cu-info-frame {
     position: absolute;
     top: -22px;
     left: -22px;
     width: 425px;
     height: 544px;
     background: var(--cream);
     border-radius: 0;
     z-index: 0
}

.cu-info-visual {
     position: relative;
     z-index: 1;
     width: 415px;
     height: 544px;
     border-radius: 0;
     overflow: hidden;
     background: #121212
}

.cu-info-photo {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center
}

.cu-info-dark {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.78;
     z-index: 1;
     pointer-events: none
}

.cu-info-overlay {
     position: absolute;
     inset: 0;
     z-index: 2;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 200px 20px 0;
     background: linear-gradient(90deg, rgba(18, 18, 18, 0.28), rgba(18, 18, 18, 0.04))
}

.cu-info-title {
     font-family: var(--font-family);
     font-size: 40px;
     font-weight: 600;
     font-style: normal;
     color: var(--white);
     line-height: 100%;
     letter-spacing: 0;
     margin-bottom: 28px;
     max-width: 280px
}

.cu-info-list {
     display: flex;
     flex-direction: column;
     gap: 20px
}

.cu-info-list li {
     display: flex;
     align-items: center;
     gap: 16px;
     font-family: var(--font-family);
     font-weight: 500;
     font-style: normal;
     line-height: 100%;
     letter-spacing: 0.02em;
     color: var(--white)
}

.cu-info-list li:nth-child(1),
.cu-info-list li:nth-child(2) {
     font-size: 24px;
     text-align: center
}

.cu-info-list li:nth-child(3) {
     font-size: 21px
}

.cu-info-list a,
.cu-info-list li span {
     color: var(--white)
}

.cu-info-list a {
     transition: color 0.2s;
     text-align: center
}

.cu-info-list a:hover {
     color: var(--orange-light)
}

.cu-info-icon {
     flex-shrink: 0;
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.12);
     border: 0;
     border-radius: 2px
}

.cu-info-icon img {
     width: 22px;
     height: 22px;
     object-fit: contain;
     filter: brightness(0) invert(1)
}

.cu-form-wrap {
     display: flex;
     flex-direction: column;
     width: 100%;
     max-width: 100%;
     padding: 0;
     box-sizing: border-box
}

.cu-form-title {
     margin-bottom: 34px
}

.cu-form {
     display: flex;
     flex-direction: column;
     width: 100%;
     max-width: 100%;
     gap: 28px
}

.cu-form-row {
     display: grid;
     gap: 31px
}

.cu-form-row--2 {
     grid-template-columns: 1fr 1fr
}

.cu-field {
     display: block
}

.cu-field input,
.cu-field select,
.cu-field textarea {
     width: 100%;
     box-sizing: border-box;
     font-family: var(--font-family);
     font-size: 18px;
     font-weight: 400;
     color: var(--black);
     background: #fff9f2;
     border: 1px solid rgba(141, 75, 0, 0.18);
     border-radius: 5px;
     padding: 0 17px;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s
}

.cu-field input,
.cu-field select {
     height: 56px
}

.cu-field select {
     appearance: none;
     cursor: pointer;
     padding-right: 44px;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23121212' stroke-opacity='0.45' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 17px center
}

.cu-field select:invalid,
.cu-field select option[value=''] {
     color: rgba(18, 18, 18, 0.45)
}

.cu-field select option {
     color: var(--black)
}

.cu-field textarea {
     resize: vertical;
     min-height: 136px;
     padding-top: 15px;
     line-height: 100%
}

.cu-field input::placeholder,
.cu-field textarea::placeholder {
     font-family: var(--font-family);
     font-size: 18px;
     font-weight: 400;
     font-style: normal;
     line-height: 100%;
     letter-spacing: 0.02em;
     text-align: start;
     text-transform: capitalize;
     color: rgba(18, 18, 18, 0.45)
}

.cu-field input:focus,
.cu-field select:focus,
.cu-field textarea:focus {
     border-color: rgba(216, 147, 66, 0.55);
     box-shadow: 0 0 0 3px rgba(216, 147, 66, 0.12)
}

.cu-submit {
     flex-shrink: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     width: auto;
     min-width: 237px;
     height: 59.9px;
     min-height: 59.9px;
     padding: 12px 28px 15px;
     border: none;
     border-radius: 10px;
     background: linear-gradient(359.26deg, #8D4B00 -24.88%, #F8B05E 124.51%);
     box-shadow: inset 0 13px 10px rgba(162, 86, 0, 0.4);
     color: var(--white);
     font-family: var(--font-family);
     font-size: 22px;
     font-weight: 500;
     font-style: normal;
     line-height: 32px;
     letter-spacing: 0.03em;
     text-align: center;
     white-space: nowrap;
     cursor: pointer;
     transition: opacity 0.2s, transform 0.15s
}

.cu-submit:hover {
     opacity: 0.92
}

.cu-submit:active {
     transform: scale(0.98)
}

.cu-submit-arrow {
     font-size: 20px;
     line-height: 1
}

.cu-form-actions {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap
}

.cu-captcha-wrap {
     display: flex;
     flex-direction: column;
     gap: 10px;
     flex: 1;
     min-width: 0
}

.cu-captcha-wrap .g-recaptcha[aria-invalid='true'] {
     outline: 2px solid #c62828;
     outline-offset: 4px;
     border-radius: 4px
}

.cu-captcha-error {
     margin: 0;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 500;
     line-height: 1.4;
     color: #c62828
}

.cu-toast-container {
     position: fixed;
     top: 24px;
     right: 24px;
     z-index: 10000;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 12px;
     pointer-events: none
}

.cu-toast {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     min-width: 280px;
     max-width: min(420px, calc(100vw - 48px));
     padding: 16px 18px;
     border-radius: 12px;
     background: #ffffff;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
     border-left: 4px solid var(--orange);
     font-family: var(--font-family);
     pointer-events: auto;
     opacity: 0;
     transform: translateX(24px);
     transition: opacity 0.3s ease, transform 0.3s ease
}

.cu-toast--visible {
     opacity: 1;
     transform: translateX(0)
}

.cu-toast--hiding {
     opacity: 0;
     transform: translateX(24px)
}

.cu-toast--success {
     border-left-color: #2e7d32
}

.cu-toast--error {
     border-left-color: #c62828
}

.cu-toast__icon {
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 28px;
     height: 28px;
     border-radius: 50%;
     font-size: 14px;
     font-weight: 700;
     line-height: 1;
     color: #ffffff
}

.cu-toast--success .cu-toast__icon {
     background: #2e7d32
}

.cu-toast--error .cu-toast__icon {
     background: #c62828
}

.cu-toast__message {
     flex: 1;
     margin: 4px 0 0;
     font-size: 15px;
     font-weight: 500;
     line-height: 1.45;
     color: #1a1a1a
}

.cu-toast__close {
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 28px;
     height: 28px;
     margin: -4px -4px 0 0;
     padding: 0;
     border: none;
     border-radius: 6px;
     background: transparent;
     color: #666666;
     font-size: 22px;
     line-height: 1;
     cursor: pointer;
     transition: background 0.2s, color 0.2s
}

.cu-toast__close:hover {
     background: rgba(0, 0, 0, 0.06);
     color: #1a1a1a
}

.cu-toast__close:focus-visible {
     outline: 2px solid var(--orange);
     outline-offset: 2px
}

@media (max-width:768px) {
     .cu-toast-container {
          top: 16px;
          right: 16px;
          left: 16px;
          align-items: stretch
     }

     .cu-toast {
          min-width: 0;
          max-width: none
     }
}

@media (max-width:1100px) {
     .cu-inner {
          max-width: 900px
     }

     .cu-panel {
          grid-template-columns: 360px minmax(360px, 1fr);
          gap: 34px
     }

     .cu-info,
     .cu-info-visual {
          width: 360px;
          min-height: 472px;
          height: 472px
     }

     .cu-info-frame {
          width: 368px;
          height: 472px
     }

     .cu-form-actions {
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          gap: 20px
     }

     .cu-captcha-wrap {
          flex: none;
          width: 100%;
          max-width: 304px
     }

     .cu-submit {
          width: 100%;
          max-width: 280px;
          min-width: 0
     }
}

@media (max-width:900px) {
     .cu-panel {
          grid-template-columns: 1fr;
          gap: 36px
     }

     .cu-info {
          width: 100%;
          max-width: 520px;
          margin-inline: auto;
          min-height: 0;
          padding: 0;
          background: transparent;
          box-sizing: border-box;
          overflow: hidden
     }

     .cu-info-frame {
          display: none
     }

     .cu-info-visual {
          width: 100%;
          height: auto;
          min-height: 0;
          aspect-ratio: 4 / 5;
          max-height: 480px
     }

     .cu-info-overlay {
          justify-content: flex-end;
          padding: 36px 24px 28px;
          background: linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(18, 18, 18, 0.72) 100%)
     }

     .cu-info-list li {
          align-items: flex-start;
          line-height: 1.35;
          text-align: left
     }

     .cu-info-list a,
     .cu-info-list li span {
          text-align: left
     }
}

@media (max-width:768px) {
     .cu-section {
          padding: 0 18px;
          overflow-x: clip
     }

     .cu-inner {
          max-width: 100%
     }

     .cu-panel {
          grid-template-columns: 1fr;
          gap: 32px
     }

     .cu-info {
          width: 100%;
          max-width: none;
          margin-inline: 0;
          min-height: 0;
          padding: 0;
          background: transparent;
          box-sizing: border-box;
          overflow: hidden
     }

     .cu-info-frame {
          display: none
     }

     .cu-info-visual {
          width: 100%;
          height: auto;
          min-height: 0;
          aspect-ratio: 4 / 5;
          max-height: 460px
     }

     .cu-info-overlay {
          justify-content: flex-end;
          padding: 32px 24px 28px;
          background: linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(18, 18, 18, 0.72) 100%)
     }

     .cu-info-title {
          font-size: clamp(28px, 7vw, 36px);
          line-height: 1.1;
          margin-bottom: 22px;
          max-width: none
     }

     .cu-info-list {
          gap: 18px
     }

     .cu-info-list li {
          align-items: flex-start;
          gap: 14px;
          line-height: 1.35;
          text-align: left
     }

     .cu-info-list li:nth-child(1),
     .cu-info-list li:nth-child(2) {
          font-size: clamp(17px, 4.2vw, 22px);
          text-align: left
     }

     .cu-info-list li:nth-child(3) {
          font-size: clamp(15px, 3.8vw, 19px);
          line-height: 1.4
     }

     .cu-info-list a {
          text-align: left
     }

     .cu-info-list li span {
          text-align: left
     }

     .cu-form-wrap {
          width: 100%;
          max-width: 100%;
          padding: 0;
          margin-top: 0;
          box-sizing: border-box
     }

     .cu-form-title {
          margin-top: 0;
          margin-bottom: 18px
     }

     .cu-form {
          width: 100%;
          max-width: 100%;
          gap: 18px
     }

     .cu-form-row,
     .cu-form-row--2 {
          width: 100%;
          max-width: 100%
     }

     .cu-field {
          width: 100%;
          max-width: 100%
     }

     .cu-field input,
     .cu-field select,
     .cu-field textarea {
          box-sizing: border-box;
          max-width: 100%
     }

     .cu-form-row--2 {
          grid-template-columns: 1fr;
          gap: 16px
     }

     .cu-form-row {
          gap: 16px
     }

     .cu-field input,
     .cu-field select {
          height: 48px;
          font-size: 16px;
          padding: 0 14px
     }

     .cu-field select {
          padding-right: 38px;
          background-position: right 14px center
     }

     .cu-field textarea {
          min-height: 112px;
          padding: 12px 14px;
          font-size: 16px;
          line-height: 1.4
     }

     .cu-field input::placeholder,
     .cu-field textarea::placeholder {
          font-size: 15px
     }

     .cu-form-actions {
          flex-direction: column;
          align-items: flex-start;
          gap: 20px
     }

     .cu-submit {
          width: auto;
          min-width: 200px;
          max-width: 100%;
          justify-content: center;
          white-space: nowrap
     }
}

@media (max-width:480px) {

     .cu-section {
          padding: 0 16px
     }

     .cu-info {
          height: auto;
          min-height: 0;
          padding: 0;
          background: transparent
     }

     .cu-info-visual {
          height: auto;
          min-height: 0;
          aspect-ratio: 4 / 5;
          max-height: 380px
     }

     .cu-panel {
          gap: 16px
     }

     .cu-form-title {
          margin-top: 0;
          margin-bottom: 16px;
          font-size: clamp(22px, 6.5vw, 28px)
     }

     .cu-info-list {
          gap: 16px
     }

     .cu-info-list li:nth-child(1),
     .cu-info-list li:nth-child(2) {
          font-size: 17px
     }

     .cu-info-list li:nth-child(3) {
          font-size: 15px
     }

     .cu-info-icon {
          width: 36px;
          height: 36px;
          flex: 0 0 36px
     }

     .cu-info-overlay {
          padding: 28px 18px 24px
     }

     .cu-info-title {
          font-size: 28px;
          margin-bottom: 18px
     }

     .cu-form {
          gap: 14px
     }

     .cu-form-row,
     .cu-form-row--2 {
          gap: 12px
     }

     .cu-field input,
     .cu-field select {
          height: 44px;
          font-size: 15px;
          padding: 0 12px
     }

     .cu-field select {
          padding-right: 34px;
          background-position: right 12px center
     }

     .cu-field textarea {
          min-height: 96px;
          padding: 10px 12px;
          font-size: 15px
     }

     .cu-field input::placeholder,
     .cu-field textarea::placeholder {
          font-size: 14px
     }

     .cu-submit {
          min-width: 0;
          width: 100%;
          height: 46px;
          font-size: 16px;
          padding: 0 18px
     }
}

@media (max-width:360px) {
     .cu-section {
          padding: 0 14px
     }

     .cu-info {
          height: auto;
          min-height: 0;
          padding: 0;
          background: transparent
     }

     .cu-info-visual {
          height: auto;
          min-height: 0;
          aspect-ratio: 4 / 5;
          max-height: 340px
     }

     .cu-panel {
          gap: 14px
     }

     .cu-info-overlay {
          padding: 24px 14px 20px
     }

     .cu-info-title {
          font-size: 24px
     }

     .cu-info-list li:nth-child(1),
     .cu-info-list li:nth-child(2) {
          font-size: 15px
     }

     .cu-info-list li:nth-child(3) {
          font-size: 14px
     }

     .cu-form-wrap {
          padding-inline: 0
     }

     .cu-field input,
     .cu-field select {
          height: 42px;
          font-size: 14px
     }

     .cu-field textarea {
          min-height: 88px;
          font-size: 14px
     }

     .cu-field input::placeholder,
     .cu-field textarea::placeholder {
          font-size: 13px
     }
}

.blog-hero {
     position: relative;
     margin: 13px 16px 0;
     border-radius: 30px;
     overflow: hidden;
     height: 440px;
     background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(102, 102, 102, 0) 100%), url('https://cdn.codia.ai/figma/CjSKfsvHxed5WQZqe4sla3/img-e1d25baa74b184a8.png');
     background-size: cover;
     background-position: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 1
}

.blog-hero-body {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 80px 20px 40px;
     text-align: center
}

.blog-breadcrumb {
     font-family: var(--font-family);
     font-size: 20px;
     font-weight: 500;
     color: #ffffff;
     letter-spacing: 0.6px
}

.blog-breadcrumb a {
     color: #ffffff;
     transition: color 0.2s
}

.blog-breadcrumb a:hover {
     color: var(--orange)
}

.blog-page-title {
     letter-spacing: 1.4px
}

.blog-page-layout {
     max-width: 1560px;
     margin: 0 auto;
     padding: 50px 40px 40px;
     display: flex;
     gap: 28px;
     align-items: flex-start
}

.blog-sidebar {
     width: 360px;
     flex-shrink: 0;
     display: flex;
     flex-direction: column;
     gap: 18px
}

.blog-search-bar {
     background: #fff9f2;
     border: 0.44px solid rgba(18, 18, 18, 0.4);
     border-radius: 10px;
     padding: 14px 18px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px
}

.blog-search-bar input {
     background: transparent;
     border: none;
     outline: none;
     font-family: var(--font-family);
     font-size: 15px;
     color: rgba(18, 18, 18, 0.6);
     letter-spacing: 0.36px;
     flex: 1
}

.blog-search-bar input::placeholder {
     color: rgba(18, 18, 18, 0.6)
}

.blog-search-bar .blog-search-icon {
     width: 18px;
     height: 18px;
     object-fit: contain;
     flex-shrink: 0;
     opacity: 0.7
}

.blog-s-card {
     border: 0.9px solid rgba(216, 147, 66, 0.35);
     border-radius: 10px;
     box-shadow: -4.37px 4.37px 27.3px 0 rgba(154, 154, 154, 0.09);
     background: #ffffff;
     padding: 24px 28px
}

.blog-s-card-title {
     font-family: var(--font-family);
     font-size: 20px;
     font-weight: 600;
     color: #121212;
     margin-bottom: 14px;
     padding-bottom: 14px;
     border-bottom: 1px solid rgba(18, 18, 18, 0.1)
}

.blog-cat-list {
     list-style: none
}

.blog-cat-list li {
     padding: 10px 0;
     border-bottom: 1px solid rgba(18, 18, 18, 0.1);
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 500;
     color: #121212;
     cursor: pointer;
     transition: color 0.2s
}

.blog-cat-list li:last-child {
     border-bottom: none;
     padding-bottom: 4px
}

.blog-cat-list li:hover {
     color: var(--orange)
}

.blog-news-item {
     display: flex;
     gap: 12px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(18, 18, 18, 0.1);
     align-items: flex-start
}

.blog-news-item:last-child {
     border-bottom: none;
     padding-bottom: 0
}

.blog-news-thumb {
     width: 76px;
     height: 76px;
     border-radius: 6px;
     object-fit: cover;
     flex-shrink: 0
}

.blog-news-info {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 5px
}

.blog-news-meta {
     display: flex;
     align-items: center;
     gap: 6px;
     font-family: var(--font-family);
     font-size: 11px;
     color: #121212
}

.blog-news-meta img {
     width: 14px;
     height: 14px;
     object-fit: contain
}

.blog-news-headline {
     font-family: var(--font-family);
     font-size: 13px;
     font-weight: 500;
     color: #121212;
     line-height: 1.5
}

.blog-tags-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 6px
}

.blog-tag {
     background: #fff9f2;
     border: 0.44px solid rgba(216, 147, 66, 0.4);
     border-radius: 8px;
     padding: 7px 16px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 400;
     color: rgba(18, 18, 18, 0.9);
     cursor: pointer;
     transition: background 0.2s
}

.blog-tag:hover {
     background: #ffe8cc
}

.blog-list {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 24px;
     min-width: 0
}

.blog-card {
     border-radius: 10px;
     box-shadow: -4.83px 4.83px 30.16px 0 rgba(154, 154, 154, 0.09);
     border: 0.6px solid rgba(216, 147, 66, 0.2);
     overflow: hidden;
     background: #fff9f2
}

.blog-card.alt {
     background: rgba(255, 255, 255, 0.6);
     border-width: 0.9px
}

.blog-card .blog-img {
     width: 100%;
     height: 320px;
     object-fit: cover;
     display: block
}

.blog-card-body {
     padding: 20px 26px 26px
}

.blog-meta {
     display: flex;
     align-items: center;
     gap: 9px;
     margin-bottom: 12px
}

.blog-meta img {
     width: 20px;
     height: 22px;
     object-fit: contain
}

.blog-meta span {
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 400;
     color: #121212
}

.blog-card-title {
     margin-bottom: 8px;
     line-height: 1.45
}

.blog-desc {
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 400;
     color: rgba(18, 18, 18, 0.9);
     line-height: 1.65;
     margin-bottom: 16px
}

.blog-explore-link {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 0.8px;
     text-decoration: none;
     background: var(--orange-gradient);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     transition: opacity 0.2s
}

.blog-explore-link:hover {
     opacity: 0.75
}

.blog-explore-link img {
     width: 24px;
     height: 24px;
     object-fit: contain;
     flex-shrink: 0
}

.blog-detail-layout {
     align-items: flex-start
}

.blog-search-symbol {
     font-size: 18px;
     color: rgba(18, 18, 18, 0.55);
     line-height: 1
}

.blog-detail-main {
     flex: 1;
     min-width: 0
}

.blog-detail-card {
     background: #ffffff;
     border: 0.9px solid rgba(216, 147, 66, 0.22);
     border-radius: 10px;
     padding: 0 0 18px;
     overflow: hidden;
     box-shadow: -4.83px 4.83px 30.16px rgba(154, 154, 154, 0.09)
}

.blog-detail-hero-img {
     width: 100%;
     height: 390px;
     object-fit: cover;
     display: block
}

.blog-detail-meta {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 17px 24px 0;
     font-family: var(--font-family);
     font-size: 13px;
     color: rgba(18, 18, 18, 0.78)
}

.blog-detail-meta span:first-child {
     color: var(--orange);
     font-size: 14px
}

.blog-detail-card h1,
.blog-detail-card h2 {
     padding: 6px 24px 0;
     font-family: var(--font-family);
     font-size: clamp(22px, 2.1vw, 34px);
     font-weight: 600;
     line-height: 1.25;
     color: #121212
}

.blog-detail-card p {
     padding: 0 24px;
     margin-top: 14px;
     font-family: var(--font-family);
     font-size: 15px;
     line-height: 1.72;
     color: rgba(18, 18, 18, 0.82)
}

.blog-detail-lead {
     color: rgba(18, 18, 18, 0.92) !important
}

.blog-detail-footer {
     margin: 22px 24px 0;
     padding: 15px 0 0;
     border-top: 1px solid rgba(18, 18, 18, 0.12);
     display: flex;
     justify-content: space-between;
     gap: 18px;
     flex-wrap: wrap;
     font-family: var(--font-family);
     font-size: 14px
}

.blog-detail-tags,
.blog-detail-share {
     display: flex;
     align-items: center;
     gap: 10px
}

.blog-detail-tags a,
.blog-detail-share a {
     color: rgba(18, 18, 18, 0.85);
     transition: color 0.2s
}

.blog-detail-tags a:hover,
.blog-detail-share a:hover {
     color: var(--orange)
}

.blog-comments,
.blog-reply {
     margin-top: 30px
}

.blog-comments h3,
.blog-reply h3 {
     font-family: var(--font-family);
     font-size: 22px;
     font-weight: 600;
     color: #121212;
     margin-bottom: 18px
}

.blog-comment {
     display: grid;
     grid-template-columns: 82px 1fr;
     gap: 18px;
     padding: 18px 0;
     border-bottom: 1px solid rgba(18, 18, 18, 0.12)
}

.blog-comment img {
     width: 72px;
     height: 72px;
     border-radius: 6px;
     object-fit: cover
}

.blog-comment h4 {
     font-family: var(--font-family);
     font-size: 17px;
     font-weight: 600;
     color: #121212;
     margin-bottom: 6px
}

.blog-comment p,
.blog-reply p {
     font-family: var(--font-family);
     font-size: 14px;
     line-height: 1.65;
     color: rgba(18, 18, 18, 0.78)
}

.blog-comment a {
     display: inline-block;
     margin-top: 8px;
     font-family: var(--font-family);
     font-size: 13px;
     font-weight: 600;
     color: var(--orange)
}

.blog-reply p {
     margin-bottom: 14px
}

.blog-reply-form {
     display: flex;
     flex-direction: column;
     gap: 14px
}

.blog-reply-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px
}

.blog-reply-form input,
.blog-reply-form textarea {
     width: 100%;
     border: 1px solid rgba(216, 147, 66, 0.22);
     border-radius: 6px;
     background: #fff9f2;
     padding: 13px 16px;
     font-family: var(--font-family);
     font-size: 14px;
     color: #121212;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s
}

.blog-reply-form input:focus,
.blog-reply-form textarea:focus {
     border-color: rgba(216, 147, 66, 0.65);
     box-shadow: 0 0 0 3px rgba(216, 147, 66, 0.12)
}

.blog-reply-form textarea {
     min-height: 170px;
     resize: vertical
}

.blog-reply-form button {
     align-self: flex-start;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     min-height: 44px;
     padding: 0 22px;
     border: none;
     border-radius: 6px;
     background: var(--orange-gradient);
     color: #ffffff;
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 500;
     cursor: pointer;
     transition: opacity 0.2s
}

.blog-reply-form button:hover {
     opacity: 0.9
}

.visually-hidden {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0
}

@media (max-width:1200px) {
     .blog-page-layout {
          flex-direction: column;
          padding: 32px 20px
     }

     .blog-sidebar {
          width: 100%
     }

     .blog-detail-hero-img {
          height: 340px
     }
}

@media (max-width:768px) {
     .blog-hero {
          margin: 10px 10px 0;
          height: 280px;
          border-radius: 20px
     }

     .blog-breadcrumb {
          font-size: 16px
     }

     .blog-card .blog-img {
          height: 220px
     }

     .blog-detail-hero-img {
          height: 240px
     }

     .blog-detail-card h1,
     .blog-detail-card h2,
     .blog-detail-card p,
     .blog-detail-meta {
          padding-left: 18px;
          padding-right: 18px
     }

     .blog-detail-footer {
          margin-left: 18px;
          margin-right: 18px
     }

     .blog-comment {
          grid-template-columns: 58px 1fr;
          gap: 14px
     }

     .blog-comment img {
          width: 54px;
          height: 54px
     }

     .blog-reply-row {
          grid-template-columns: 1fr
     }

     .blog-reply-form button {
          width: 100%;
          justify-content: center
     }
}

.au-page-title {
     letter-spacing: 1.38px
}

.pp-content {
     background: var(--white);
     padding: 0 16px
}

.pp-inner {
     max-width: 920px;
     margin: 0 auto;
     padding: 0 32px
}

.pp-block {
     margin-bottom: 56px
}

.pp-block--last {
     margin-bottom: 0
}

.pp-title {
     margin-bottom: 28px
}

.pp-subtitle {
     margin-top: 32px;
     margin-bottom: 16px
}

.pp-block>.pp-subtitle:first-child,
.pp-block>.pp-title+.pp-subtitle {
     margin-top: 0
}

.pp-title+.pp-subtitle {
     margin-top: 0
}

.pp-text {
     margin-bottom: 18px;
     letter-spacing: 0.02em
}

.pp-text:last-child {
     margin-bottom: 0
}

.pp-list {
     margin: 12px 0 24px;
     padding-left: 28px;
     list-style: disc
}

.pp-list li {
     margin-bottom: 14px
}

.pp-list li:last-child {
     margin-bottom: 0
}

.pp-list--definitions li {
     margin-bottom: 18px
}

.pp-list--definitions strong {
     font-weight: 600;
     color: var(--black)
}

.pp-content a {
     color: var(--orange);
     text-decoration: none;
     transition: color 0.2s
}

.pp-content a:hover {
     color: var(--orange-dark);
     text-decoration: underline
}

@media (max-width:768px) {
     .pp-content {
          padding: 0 10px
     }

     .pp-inner {
          padding: 0 16px
     }

     .pp-block {
          margin-bottom: 40px
     }

     .pp-title {
          margin-bottom: 20px
     }

     .pp-subtitle {
          margin-top: 24px;
          margin-bottom: 12px
     }

     .pp-text,
     .pp-list li {
          line-height: 1.7
     }

     .pp-list {
          padding-left: 22px
     }
}

.ai-page {
     --ai-brand: #D7923C;
     --ai-brand-dark: #8D4B00;
     --ai-brand-light: #F8B05E;
     --ai-dark-bg: #13151f;
     --ai-dark-2: #1a1d2b;
     --ai-border: rgba(215, 146, 60, 0.22);
     --ai-border-glow: rgba(215, 146, 60, 0.5);
     --ai-muted: rgba(255, 255, 255, 0.55);
     --ai-grid-line: rgba(215, 146, 60, 0.07);
     --ai-header-offset: 132px
}

.ai-hero {
     position: relative;
     height: var(--page-banner-height, 660px);
     min-height: var(--page-banner-height, 660px);
     display: flex;
     align-items: center;
     overflow: hidden;
     background: var(--ai-dark-bg)
}

.ai-hero-bg {
     position: absolute;
     inset: 0;
     border-radius: inherit;
     background: radial-gradient(ellipse 60% 70% at 80% 30%, rgba(215, 146, 60, 0.18) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(248, 176, 94, 0.10) 0%, transparent 60%), radial-gradient(ellipse 80% 40% at 50% 0%, rgba(141, 75, 0, 0.15) 0%, transparent 70%)
}

.ai-hero-bg::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.88) 0%, rgba(12, 14, 22, 0.62) 50%, rgba(12, 14, 22, 0.78) 100%);
     pointer-events: none
}

.ai-page .ai-hero-bg {
     background: none;
     overflow: hidden
}

.ai-page .ai-hero-bg::before {
     content: "";
     position: absolute;
     inset: -28px;
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%), var(--hero-bg-url);
     background-size: 100% 100%, cover;
     background-position: center, center;
     background-repeat: no-repeat, no-repeat;
     filter: blur(10px);
     transform: scale(1.06);
     z-index: 0
}

.ai-page .ai-hero-bg::after {
     z-index: 1;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.55) 0%, rgba(12, 14, 22, 0.25) 50%, rgba(12, 14, 22, 0.4) 100%)
}

.ai-page .ai-hero-grid {
     display: none
}

.ai-hero-grid {
     position: absolute;
     inset: 0;
     background-image: linear-gradient(var(--ai-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--ai-grid-line) 1px, transparent 1px);
     background-size: 60px 60px
}

.ai-hero-content {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--ai-header-offset) 40px 36px;
     height: 100%;
     box-sizing: border-box;
     display: flex;
     align-items: center
}

.ai-hero-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
     width: 100%
}

.ai-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 18px;
     border: 1px solid rgba(248, 176, 94, 0.35);
     border-radius: 100px;
     background: rgba(248, 176, 94, 0.10);
     color: var(--ai-brand-light);
     font-size: 13px;
     font-weight: 500;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     margin-bottom: 16px
}

.ai-badge span {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--ai-brand-light);
     animation: pulse 2s infinite
}

@keyframes pulse {

     0%,
     100% {
          opacity: 1;
          transform: scale(1)
     }

     50% {
          opacity: 0.5;
          transform: scale(1.4)
     }
}

.ai-hero-content h1 {
     margin-bottom: 16px;
     font-size: clamp(26px, 2.8vw, 38px);
     line-height: 1.2
}

.ai-hero-content h1 em {
     font-style: normal;
     background: linear-gradient(135deg, #F8B05E, #D7923C);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text
}

.ai-hero-desc {
     margin-bottom: 24px;
     max-width: 520px;
     font-size: 15px;
     line-height: 1.55
}

.ai-hero-cta {
     display: flex;
     gap: 16px;
     flex-wrap: wrap
}

.btn-ai-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     background: linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #F8B05E 100%);
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     border-radius: 6px;
     border: none;
     cursor: pointer;
     text-decoration: none;
     transition: opacity 0.2s, transform 0.2s
}

.btn-ai-primary:hover {
     opacity: 0.9;
     transform: translateY(-1px)
}

.btn-ai-outline {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border: 1px solid rgba(215, 146, 60, 0.4);
     color: var(--ai-brand-light);
     font-weight: 600;
     font-size: 15px;
     border-radius: 6px;
     background: transparent;
     cursor: pointer;
     text-decoration: none;
     transition: border-color 0.2s, background 0.2s
}

.btn-ai-outline:hover {
     border-color: var(--ai-brand);
     background: rgba(215, 146, 60, 0.08)
}

.ai-hero-visual {
     display: flex;
     flex-direction: column;
     justify-content: center
}

.ai-stat-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--ai-border);
     border-radius: 16px;
     padding: 20px 22px;
     backdrop-filter: blur(10px)
}

.ai-stat-card h3 {
     color: var(--ai-brand-light);
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 14px
}

.ai-stats-row {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px
}

.ai-stat-item .num {
     font-size: clamp(22px, 2vw, 28px);
     font-weight: 700;
     color: #fff;
     line-height: 1
}

.ai-stat-item .num span {
     font-size: 20px;
     color: var(--ai-brand)
}

.ai-stat-item .lbl {
     font-size: 12px;
     color: var(--ai-muted);
     margin-top: 6px
}

.ai-steps-list {
     display: flex;
     flex-direction: column;
     gap: 12px
}

.ai-step-chip {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 12px 16px;
     background: rgba(215, 146, 60, 0.07);
     border: 1px solid var(--ai-border);
     border-radius: 10px
}

.ai-step-chip .step-num {
     width: 32px;
     height: 32px;
     border-radius: 8px;
     background: linear-gradient(135deg, #8D4B00, #D7923C);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 13px;
     font-weight: 700;
     color: #fff;
     flex-shrink: 0
}

.ai-step-chip .step-label {
     font-size: 14px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.85)
}

.ai-section {
     padding: 0
}

.ai-section-white {
     background: #ffffff
}

.ai-section-light {
     background: #faf8f5
}

.ai-section-dark {
     background: var(--ai-dark-bg)
}

.ai-section-dark2 {
     background: var(--ai-dark-2)
}

.ai-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px
}

.ai-center {
     text-align: center;
     margin-bottom: 60px
}

.ai-label {
     display: inline-block;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--ai-brand);
     margin-bottom: 14px
}

.ai-label-light {
     color: var(--ai-brand-light)
}

.ai-section-title {
     margin-bottom: 16px
}

.ai-section-title.light {
     color: #fff
}

.ai-section-sub {
     max-width: 620px;
     margin: 0 auto
}

.ai-section-sub.light {
     color: rgba(255, 255, 255, 0.6)
}

.ai-who-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px
}

.ai-who-card {
     border: 1px solid #e8e0d6;
     border-radius: 16px;
     padding: 18px 20px;
     transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s
}

.ai-who-card:hover {
     border-color: var(--ai-brand);
     box-shadow: 0 8px 30px rgba(215, 146, 60, 0.12);
     transform: translateY(-3px)
}

.ai-who-icon {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     margin-bottom: 18px;
     color: var(--ai-brand)
}

.ai-who-icon svg {
     width: 32px;
     height: 32px
}

.ai-who-card h3 {
     margin-bottom: 10px
}

.ai-who-card p {
     line-height: 1.65
}

.ai-services-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 28px
}

.ai-service-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--ai-border);
     border-radius: 16px;
     padding: 20px 25px;
     transition: border-color 0.2s, background 0.2s
}

.ai-service-card:hover {
     border-color: var(--ai-brand);
     background: rgba(215, 146, 60, 0.06)
}

.ai-service-icon {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     margin-bottom: 18px;
     color: var(--ai-brand-light)
}

.ai-service-icon svg {
     width: 32px;
     height: 32px
}

.ai-service-card h3 {
     margin-bottom: 12px
}

.ai-service-card p {
     line-height: 1.7
}

.ai-service-tag {
     display: inline-block;
     margin-top: 16px;
     padding: 4px 12px;
     border-radius: 100px;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     background: var(--tag-bg-strong);
     color: var(--tag-color-accent);
     border: 1px solid var(--tag-border)
}

.ai-process-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     position: relative
}

.ai-process-grid::before {
     content: '';
     position: absolute;
     top: 40px;
     left: calc(12.5% + 20px);
     right: calc(12.5% + 20px);
     height: 2px;
     background: linear-gradient(90deg, var(--ai-brand), var(--ai-brand-light), var(--ai-brand));
     opacity: 0.35;
     z-index: 0
}

.ai-process-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 0 20px;
     position: relative;
     z-index: 1
}

.ai-process-num {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, #8D4B00, #D7923C);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 24px;
     box-shadow: 0 4px 20px rgba(215, 146, 60, 0.35);
     flex-shrink: 0
}

.ai-process-step h4 {
     font-family: var(--font-family);
     font-size: var(--type-h3-size);
     font-weight: var(--type-h3-weight);
     color: var(--text-primary);
     margin-bottom: 10px
}

.ai-process-step p {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-muted);
     line-height: var(--type-body-lh)
}

.ai-why-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center
}

.ai-why-list {
     display: flex;
     flex-direction: column;
     gap: 24px;
     margin-top: 32px
}

.ai-why-item {
     display: flex;
     gap: 18px;
     align-items: flex-start
}

.ai-why-item-icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: rgba(215, 146, 60, 0.12);
     border: 1px solid var(--ai-border);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--ai-brand)
}

.ai-why-item-icon svg {
     width: 22px;
     height: 22px
}

.ai-why-item h4 {
     font-family: var(--font-family);
     font-size: var(--type-h3-size);
     font-weight: var(--type-h3-weight);
     color: var(--text-primary);
     margin-bottom: 6px
}

.ai-why-item p {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-muted);
     line-height: var(--type-body-lh)
}

.ai-why-visual {
     background: linear-gradient(160deg, #1a1d2b, #13151f);
     border: 1px solid var(--ai-border);
     border-radius: 20px;
     padding: 40px
}

.ai-why-visual h3 {
     font-size: var(--type-h3-size-lg);
     font-weight: var(--type-h3-weight);
     margin-bottom: 28px
}

.ai-product-list {
     display: flex;
     flex-direction: column;
     gap: 16px
}

.ai-product-item {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 16px 20px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid var(--ai-border);
     border-radius: 12px
}

.ai-product-item .p-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--ai-brand-light)
}

.ai-product-item .p-icon svg {
     width: 22px;
     height: 22px
}

.ai-check {
     position: absolute;
     left: 0;
     top: 1px;
     display: inline-flex;
     color: #D7923C
}

.ai-check svg {
     width: 14px;
     height: 14px
}

.ai-product-item .p-name {
     font-size: 14px;
     font-weight: 600;
     color: #fff
}

.ai-product-item .p-tag {
     margin-left: auto;
     font-size: 11px;
     font-weight: 600;
     color: var(--tag-color-accent);
     background: var(--tag-bg);
     border: 1px solid var(--tag-border);
     border-radius: 100px;
     padding: 3px 10px
}

.ai-pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px
}

.ai-price-card {
     border: 1px solid #e8e0d6;
     border-radius: 20px;
     padding: 40px 32px;
     position: relative;
     transition: box-shadow 0.2s, transform 0.2s
}

.ai-price-card:hover {
     box-shadow: 0 12px 40px rgba(215, 146, 60, 0.12);
     transform: translateY(-4px)
}

.ai-price-card.featured {
     background: linear-gradient(160deg, #1a1d2b, #13151f);
     border-color: var(--ai-brand);
     box-shadow: 0 0 0 1px rgba(215, 146, 60, 0.4), 0 20px 60px rgba(215, 146, 60, 0.15)
}

.ai-featured-badge {
     position: absolute;
     top: -14px;
     left: 50%;
     transform: translateX(-50%);
     padding: 4px 18px;
     background: linear-gradient(135deg, #8D4B00, #D7923C);
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     border-radius: 100px;
     white-space: nowrap
}

.ai-price-card h3 {
     font-family: var(--font-family);
     font-size: var(--type-h3-size-lg);
     font-weight: var(--type-h3-weight);
     color: var(--text-primary);
     margin-bottom: 8px
}

.ai-price-card.featured h3 {
     color: var(--text-white)
}

.ai-price-sub {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-muted);
     line-height: var(--type-body-lh);
     margin-bottom: 24px
}

.ai-price-card.featured .ai-price-sub {
     color: rgba(255, 255, 255, 0.78)
}

.ai-price-amount {
     font-size: 42px;
     font-weight: 700;
     color: #121212;
     line-height: 1;
     margin-bottom: 6px
}

.ai-price-card.featured .ai-price-amount {
     color: #fff
}

.ai-price-per {
     font-family: var(--font-family);
     font-size: 15px;
     color: var(--text-muted);
     line-height: 1.5;
     margin-bottom: 28px
}

.ai-price-card.featured .ai-price-per {
     color: rgba(255, 255, 255, 0.72)
}

.ai-price-features {
     list-style: none;
     margin-bottom: 32px;
     display: flex;
     flex-direction: column;
     gap: 12px
}

.ai-price-features li {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-soft);
     padding-left: 24px;
     position: relative;
     line-height: var(--type-body-lh)
}

.ai-price-card.featured .ai-price-features li {
     color: rgba(255, 255, 255, 0.88)
}

.ai-price-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--ai-brand);
     font-weight: 700
}

.btn-price-ai {
     display: block;
     width: 100%;
     text-align: center;
     padding: 14px;
     border-radius: 8px;
     font-family: var(--font-family);
     font-weight: 600;
     font-size: var(--type-body-size);
     text-decoration: none;
     transition: all 0.2s
}

.btn-price-ai-outline {
     border: 1px solid #d0c4b5;
     color: #121212
}

.btn-price-ai-outline:hover {
     border-color: var(--ai-brand);
     color: var(--ai-brand)
}

.btn-price-ai-gold {
     background: linear-gradient(135deg, #8D4B00, #D7923C);
     color: #fff;
     border: none
}

.btn-price-ai-gold:hover {
     opacity: 0.9
}

.ai-faq-section {
     position: relative;
     overflow: hidden
}

.ai-faq-section::before {
     content: "";
     position: absolute;
     width: 520px;
     height: 520px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(215, 146, 60, 0.08) 0%, transparent 70%);
     top: -180px;
     right: -120px;
     pointer-events: none
}

.ai-faq-header {
     margin-bottom: 48px
}

.ai-faq-accordion {
     display: flex;
     flex-direction: column;
     gap: 14px;
     max-width: 860px;
     margin: 0 auto
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(1) {
     --stagger-index: 0
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(2) {
     --stagger-index: 1
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(3) {
     --stagger-index: 2
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(4) {
     --stagger-index: 3
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(5) {
     --stagger-index: 4
}

.ai-faq-accordion[data-animate-stagger]>.ai-faq-panel:nth-child(6) {
     --stagger-index: 5
}

.ai-faq-panel {
     position: relative;
     background: #fff;
     border: 1px solid #e8e0d6;
     border-radius: 16px;
     overflow: hidden;
     transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ai-faq-panel::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, var(--ai-brand-light), var(--ai-brand));
     transform: scaleY(0);
     transform-origin: top;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.ai-faq-panel.is-open {
     border-color: rgba(215, 146, 60, 0.45);
     box-shadow: 0 12px 40px rgba(215, 146, 60, 0.12), 0 0 0 1px rgba(215, 146, 60, 0.08);
     transform: translateY(-2px)
}

.ai-faq-panel.is-open::before {
     transform: scaleY(1)
}

.ai-faq-trigger {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 22px 24px;
     background: transparent;
     border: none;
     cursor: pointer;
     text-align: left;
     font-family: inherit;
     transition: background 0.3s ease
}

.ai-faq-trigger:hover {
     background: rgba(215, 146, 60, 0.04)
}

.ai-faq-trigger-main {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     flex: 1;
     min-width: 0
}

.ai-faq-index {
     flex-shrink: 0;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     background: rgba(215, 146, 60, 0.1);
     color: var(--ai-brand-dark);
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.04em;
     transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ai-faq-panel.is-open .ai-faq-index {
     background: linear-gradient(135deg, var(--ai-brand), var(--ai-brand-light));
     color: #fff;
     transform: scale(1.08)
}

.ai-faq-question {
     font-family: var(--font-family);
     font-size: var(--type-h3-size);
     font-weight: 500;
     color: var(--text-primary);
     line-height: 1.35;
     transition: color 0.35s ease
}

.ai-faq-panel.is-open .ai-faq-question {
     color: var(--ai-brand-dark)
}

.ai-faq-icon {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: rgba(215, 146, 60, 0.08);
     color: var(--ai-brand);
     transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ai-faq-icon svg {
     width: 18px;
     height: 18px
}

.ai-faq-icon-v {
     transform-origin: center;
     transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease
}

.ai-faq-panel.is-open .ai-faq-icon {
     background: var(--ai-brand);
     color: #fff;
     transform: rotate(90deg)
}

.ai-faq-panel.is-open .ai-faq-icon-v {
     transform: scaleY(0);
     opacity: 0
}

.ai-faq-body {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1)
}

.ai-faq-panel.is-open .ai-faq-body {
     grid-template-rows: 1fr
}

.ai-faq-body-inner {
     overflow: hidden;
     padding: 0 24px;
     opacity: 0;
     transform: translateY(-8px);
     transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, padding 0.55s cubic-bezier(0.16, 1, 0.3, 1)
}

.ai-faq-panel.is-open .ai-faq-body-inner {
     opacity: 1;
     transform: translateY(0);
     padding: 0 24px 24px 76px
}

.ai-faq-body-inner p {
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-muted);
     line-height: var(--type-body-lh);
     margin: 0
}

@media (prefers-reduced-motion:reduce) {

     .ai-faq-panel,
     .ai-faq-body,
     .ai-faq-body-inner,
     .ai-faq-icon,
     .ai-faq-index,
     .ai-faq-icon-v {
          transition: none !important
     }

     .ai-faq-panel.is-open {
          transform: none
     }
}

.ai-cta-strip {
     background: linear-gradient(160deg, #13151f 0%, #1a1d2b 50%, #121212 100%);
     border: 1px solid var(--ai-border);
     border-radius: 24px;
     padding: 80px 60px;
     position: relative;
     overflow: hidden;
     text-align: center
}

.ai-cta-glow-1 {
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(215, 146, 60, 0.18) 0%, transparent 70%);
     top: -200px;
     left: -100px;
     pointer-events: none
}

.ai-cta-glow-2 {
     position: absolute;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(248, 176, 94, 0.12) 0%, transparent 70%);
     bottom: -150px;
     right: -50px;
     pointer-events: none
}

.ai-cta-inner {
     position: relative;
     z-index: 1
}

.ai-cta-strip .ai-label {
     margin-bottom: 16px
}

.ai-cta-strip h2 {
     font-size: clamp(28px, 3.5vw, 46px);
     font-weight: 700;
     color: #fff;
     margin-bottom: 16px;
     line-height: 1.2
}

.ai-cta-strip p {
     font-size: 16px;
     color: rgba(255, 255, 255, 0.6);
     max-width: 580px;
     margin: 0 auto 40px;
     line-height: 1.7
}

.ai-cta-actions {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap
}

.btn-cta-phone {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 28px;
     border: 1px solid rgba(215, 146, 60, 0.35);
     border-radius: 6px;
     color: rgba(255, 255, 255, 0.75);
     font-size: 15px;
     font-weight: 600;
     text-decoration: none;
     transition: border-color 0.2s, color 0.2s
}

.btn-cta-phone svg {
     width: 18px;
     height: 18px;
     fill: currentColor
}

.btn-cta-phone:hover {
     border-color: var(--ai-brand);
     color: var(--ai-brand-light)
}

.ai-page-hero {
     background: linear-gradient(160deg, #13151f, #1a1d2b);
     padding: 140px 40px 60px;
     text-align: center
}

.ai-breadcrumb {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.45);
     margin-bottom: 16px
}

.ai-breadcrumb a {
     color: var(--ai-brand-light)
}

.ai-breadcrumb a:hover {
     text-decoration: underline
}

.ai-breadcrumb span {
     margin: 0 8px
}

@media (max-width:1024px) {
     .ai-container {
          padding-left: 24px;
          padding-right: 24px
     }

     .ai-hero {
          height: auto;
          min-height: 0
     }

     .ai-hero-content {
          padding: var(--ai-header-offset) 24px 40px;
          height: auto;
          align-items: flex-start
     }

     .ai-hero-inner {
          grid-template-columns: 1fr;
          gap: 32px
     }

     .ai-hero-visual {
          display: flex;
          width: 100%;
          max-width: 560px;
          margin: 0 auto
     }

     .ai-hero-desc {
          max-width: none
     }

     .ai-who-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .ai-services-grid {
          grid-template-columns: 1fr
     }

     .ai-process-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 28px 20px
     }

     .ai-process-grid::before {
          display: none
     }

     .ai-why-grid {
          grid-template-columns: 1fr;
          gap: 40px
     }

     .ai-pricing-grid {
          grid-template-columns: 1fr;
          max-width: 480px;
          margin-inline: auto
     }

     .ai-faq-accordion {
          gap: 12px
     }

     .ai-cta-strip {
          padding: 50px 28px
     }

     .ai-center {
          margin-bottom: 40px
     }
}

@media (max-width:768px) {
     .ai-page {
          --ai-header-offset: 112px
     }

     .ai-container {
          padding-left: 20px;
          padding-right: 20px
     }

     .ai-hero-content {
          padding: var(--ai-header-offset) 20px 32px
     }

     .ai-hero-inner {
          gap: 28px
     }

     .ai-hero-content h1 {
          font-size: clamp(24px, 6vw, 32px)
     }

     .ai-hero-cta {
          flex-direction: column;
          align-items: stretch
     }

     .ai-hero-cta .btn-ai-primary,
     .ai-hero-cta .btn-ai-outline {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .ai-stats-row {
          grid-template-columns: repeat(3, 1fr);
          gap: 10px
     }

     .ai-stat-item .num {
          font-size: 20px
     }

     .ai-stat-item .lbl {
          font-size: 11px
     }

     .ai-cta-actions {
          flex-direction: column;
          align-items: stretch
     }

     .ai-cta-actions .btn-ai-primary,
     .ai-cta-actions .btn-ai-outline,
     .ai-cta-actions .btn-cta-phone {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .ai-why-visual {
          padding: 28px 24px
     }

     .ai-product-item {
          flex-wrap: wrap
     }

     .ai-product-item .p-tag {
          margin-left: 0;
          margin-top: 6px
     }
}

@media (max-width:640px) {
     .ai-who-grid {
          grid-template-columns: 1fr
     }

     .ai-process-grid {
          grid-template-columns: 1fr;
          gap: 24px
     }

     .ai-process-step {
          display: grid;
          grid-template-columns: 56px 1fr;
          gap: 0 14px;
          text-align: left;
          align-items: start;
          padding: 16px;
          border: 1px solid #e8e0d6;
          border-radius: 14px;
          background: #fff
     }

     .ai-process-num {
          width: 56px;
          height: 56px;
          font-size: 20px;
          margin: 0;
          grid-row: span 2;
          align-self: center
     }

     .ai-process-step h4 {
          margin-bottom: 4px;
          align-self: end;
          font-size: 16px
     }

     .ai-process-step p {
          margin: 0;
          align-self: start;
          font-size: 14px
     }

     .ai-stats-row {
          grid-template-columns: 1fr
     }

     .ai-faq-trigger {
          padding: 18px 16px;
          gap: 14px
     }

     .ai-faq-trigger-main {
          gap: 12px
     }

     .ai-faq-index {
          width: 32px;
          height: 32px;
          font-size: 11px
     }

     .ai-faq-icon {
          width: 36px;
          height: 36px
     }

     .ai-faq-panel.is-open .ai-faq-body-inner {
          padding: 0 16px 18px 60px
     }

     .ai-badge {
          white-space: normal;
          line-height: 1.35;
          text-align: left
     }

     .ai-cta-strip {
          padding: 40px 20px;
          border-radius: 18px
     }

     .ai-cta-strip h2 {
          font-size: clamp(24px, 7vw, 32px)
     }

     .ai-page-hero {
          padding: 120px 20px 48px
     }
}

@media (max-width:480px) {
     .ai-center {
          margin-bottom: 32px
     }

     .ai-price-card {
          padding: 32px 24px
     }

     .ai-who-card,
     .ai-service-card {
          padding: 16px 18px
     }
}

.hotel-management-page {
     --hms-brand: var(--orange);
     --hms-brand-dark: var(--orange-dark);
     --hms-brand-light: var(--orange-light);
     --hms-accent: var(--orange-light);
     --hms-dark-bg: #1a1d2b;
     --hms-cream: var(--cream);
     --hms-dark: #121212;
     --hms-muted: rgba(18, 18, 18, 0.7);
     --hms-border: rgba(215, 146, 60, 0.22);
     --hms-grad: linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #6b3a00 100%);
     --hms-grad-accent: linear-gradient(135deg, #8D4B00, #F8B05E);
     --hms-grad-dark: linear-gradient(160deg, #1a1d2b 0%, #1f1f1f 55%, #141820 100%);
     --hms-header-offset: 132px;
     --hms-navy: var(--hms-dark-bg);
     --hms-gold: var(--hms-brand);
     --hms-gold-light: var(--hms-brand-light)
}

.hms-hero {
     position: relative;
     height: var(--page-banner-height, 660px);
     min-height: var(--page-banner-height, 660px);
     display: flex;
     align-items: center;
     overflow: hidden;
     background: var(--hms-navy)
}

.hms-hero-bg {
     position: absolute;
     inset: 0;
     border-radius: inherit;
     background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(215, 146, 60, 0.22) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 5% 90%, rgba(248, 176, 94, 0.1) 0%, transparent 60%), var(--hms-grad-dark)
}

.hms-hero-bg::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.88) 0%, rgba(12, 14, 22, 0.62) 50%, rgba(12, 14, 22, 0.78) 100%);
     pointer-events: none
}

.hotel-management-page .hms-hero-bg {
     background: none;
     overflow: hidden
}

.hotel-management-page .hms-hero-bg::before {
     content: "";
     position: absolute;
     inset: -28px;
     background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0) 100%), var(--hero-bg-url);
     background-size: 100% 100%, cover;
     background-position: center, center;
     background-repeat: no-repeat, no-repeat;
     filter: blur(10px);
     transform: scale(1.06);
     z-index: 0
}

.hotel-management-page .hms-hero-bg::after {
     z-index: 1;
     background: linear-gradient(120deg, rgba(12, 14, 22, 0.55) 0%, rgba(12, 14, 22, 0.25) 50%, rgba(12, 14, 22, 0.4) 100%)
}

.hotel-management-page .hms-hero-grid-lines {
     display: none
}

.hms-hero-content {
     position: relative;
     z-index: 2;
     width: 100%
}

.hms-hero-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
     max-width: 1400px;
     margin: 0 auto;
     padding: var(--hms-header-offset) 40px 36px;
     width: 100%;
     height: 100%;
     box-sizing: border-box
}

.hms-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     border: 1px solid rgba(248, 176, 94, 0.35);
     border-radius: 100px;
     background: rgba(248, 176, 94, 0.1);
     color: var(--hms-brand-light);
     font-size: 13px;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 16px
}

.hms-badge span {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--hms-gold);
     display: inline-block
}

.hms-hero h1 {
     margin-bottom: 16px;
     font-size: clamp(26px, 2.8vw, 38px);
     line-height: 1.2
}

.hms-hero h1 em {
     font-style: normal;
     background: linear-gradient(90deg, var(--hms-gold), var(--hms-gold-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text
}

.hms-hero-desc {
     margin-bottom: 24px;
     max-width: 520px;
     font-size: 15px;
     line-height: 1.55
}

.hms-hero-cta {
     display: flex;
     gap: 16px;
     flex-wrap: wrap
}

.hotel-management-page .btn-gold {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 8px;
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     cursor: pointer;
     border: none;
     text-decoration: none;
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
     transition: transform 0.2s ease, box-shadow 0.2s ease
}

.hotel-management-page .btn-gold:hover {
     transform: translateY(-2px);
     box-shadow: 0 16px 40px rgba(215, 146, 60, 0.5)
}

.hotel-management-page .btn-outline-white {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     transition: border-color 0.2s ease, background 0.2s ease
}

.hotel-management-page .btn-outline-white:hover {
     border-color: var(--hms-accent);
     background: rgba(248, 176, 94, 0.1);
     color: var(--hms-brand-light)
}

.hms-hero-visual {
     display: flex;
     flex-direction: column;
     justify-content: center
}

.hms-stat-card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(215, 146, 60, 0.2);
     border-radius: 16px;
     padding: 20px 22px;
     backdrop-filter: blur(12px)
}

.hms-stat-card h3 {
     color: var(--hms-gold-light);
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 14px
}

.hms-stats-row {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px
}

.hms-stat-item {
     text-align: center
}

.hms-stat-num {
     font-size: clamp(22px, 2vw, 28px);
     font-weight: 700;
     color: #fff;
     line-height: 1
}

.hms-stat-num span {
     color: var(--hms-gold)
}

.hms-stat-label {
     color: rgba(255, 255, 255, 0.5);
     font-size: 13px;
     margin-top: 4px
}

.hms-phases-mini {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px
}

.hms-phase-chip {
     padding: 12px 10px;
     border-radius: 10px;
     border: 1px solid rgba(215, 146, 60, 0.15);
     background: rgba(255, 255, 255, 0.03);
     text-align: center
}

.hms-phase-chip .num {
     font-size: 11px;
     color: var(--hms-gold);
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase
}

.hms-phase-chip .label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.6);
     margin-top: 4px;
     line-height: 1.3
}

.hms-section {
     padding: 0
}

.hms-section-light {
     background: var(--hms-cream)
}

.hms-section-dark {
     background: var(--hms-navy)
}

.hms-section-white {
     background: #fff
}

.hms-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px
}

.hms-label {
     display: inline-block;
     color: var(--hms-brand);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     margin-bottom: 12px
}

.hms-label-light {
     color: var(--hms-brand-light)
}

.hms-section-title {
     margin-bottom: 16px
}

.hms-section-title.light {
     color: #fff
}

.hms-section-sub {
     max-width: 680px
}

.hms-section-sub.light {
     color: rgba(255, 255, 255, 0.6)
}

.hms-center {
     text-align: center
}

.hms-center .hms-section-sub {
     margin: 0 auto
}

.hms-modules-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px
}

.hms-module-card {
     padding: 32px;
     border-radius: 16px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff;
     transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease
}

.hms-module-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 24px 56px rgba(215, 146, 60, 0.1);
     border-color: var(--hms-accent)
}

.hms-module-icon {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(215, 146, 60, 0.05));
     border: 1px solid rgba(215, 146, 60, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--hms-brand)
}

.hms-module-icon svg {
     width: 24px;
     height: 24px
}

.hms-module-card h3 {
     margin-bottom: 10px
}

.hms-module-card p {
     line-height: 1.65
}

.hms-module-tag {
     display: inline-block;
     margin-top: 14px;
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase
}

.tag-phase1,
.tag-phase2,
.tag-phase3,
.tag-phase4 {
     background: var(--tag-bg);
     color: var(--tag-color)
}

.hms-phases-wrap {
     margin-top: 64px
}

.hms-phase-block {
     display: grid;
     grid-template-columns: 260px 1fr;
     gap: 0;
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: 24px;
     box-shadow: 0 4px 24px rgba(26, 29, 43, 0.08)
}

.hms-phase-aside {
     padding: 40px 32px;
     display: flex;
     flex-direction: column;
     justify-content: center
}

.phase-aside-1 {
     background: linear-gradient(160deg, #1a1d2b, #1f1f1f)
}

.phase-aside-2 {
     background: linear-gradient(160deg, #1f1f1f, #2a1f0a)
}

.phase-aside-3 {
     background: linear-gradient(160deg, #2c1810, #4a2410)
}

.phase-aside-4 {
     background: linear-gradient(160deg, #1a1d2b, #3d2810)
}

.hms-phase-aside .phase-num {
     font-size: 56px;
     font-weight: 700;
     color: rgba(215, 146, 60, 0.25);
     line-height: 1;
     margin-bottom: 8px
}

.hms-phase-aside h3 {
     font-size: 20px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 8px
}

.hms-phase-aside .timeline-badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 5px 12px;
     border-radius: 100px;
     background: rgba(215, 146, 60, 0.15);
     border: 1px solid rgba(215, 146, 60, 0.3);
     color: var(--hms-gold-light);
     font-size: 12px;
     font-weight: 500;
     margin-top: 10px
}

.hms-phase-body {
     padding: 40px;
     background: #fff
}

.hms-phase-body p {
     color: var(--hms-muted);
     font-size: 15px;
     line-height: 1.7;
     margin-bottom: 24px
}

.hms-feature-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 10px
}

.hms-pill {
     padding: 7px 16px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 500;
     border: 1px solid rgba(18, 18, 18, 0.1);
     color: var(--hms-dark);
     background: var(--hms-cream)
}

.hms-why-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
     gap: 32px;
     margin-top: 56px;
     align-items: center
}

.hms-why-list {
     display: flex;
     flex-direction: column;
     gap: 20px
}

.hms-why-item {
     display: flex;
     gap: 20px;
     align-items: center;
     padding: 13px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.07);
     background: #fff;
     transition: box-shadow 0.2s ease
}

.hms-why-item:hover {
     box-shadow: 0 8px 32px rgba(26, 29, 43, 0.08)
}

.hms-why-icon {
     flex: 0 0 44px;
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     align-self: center
}

.hms-why-icon svg {
     width: 22px;
     height: 22px
}

.hms-why-item>div:not(.hms-why-icon) {
     flex: 1;
     min-width: 0
}

.hms-why-item h4 {
     font-size: 16px;
     font-weight: 600;
     color: var(--hms-dark);
     margin-bottom: 6px
}

.hms-why-item p {
     font-size: 14px;
     color: var(--hms-muted);
     line-height: 1.5;
     margin: 0;
     white-space: nowrap
}

.hms-why-visual {
     background: var(--hms-grad-dark);
     border-radius: 20px;
     padding: 40px;
     color: #fff
}

.hms-why-visual h3 {
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 28px;
     color: var(--hms-brand-light)
}

.hms-check-list {
     display: flex;
     flex-direction: column;
     gap: 14px
}

.hms-check-item {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 15px;
     color: rgba(255, 255, 255, 0.8)
}

.hms-check-item::before {
     content: "✓";
     flex: 0 0 24px;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     background: rgba(215, 146, 60, 0.2);
     border: 1px solid rgba(215, 146, 60, 0.4);
     color: var(--hms-gold);
     font-size: 12px;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center
}

.hms-integrations-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 48px
}

.hms-int-card {
     padding: 15px 15px;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(215, 146, 60, 0.15);
     text-align: center;
     transition: border-color 0.2s ease, background 0.2s ease
}

.hms-int-card:hover {
     border-color: rgba(215, 146, 60, 0.5);
     background: rgba(215, 146, 60, 0.05)
}

.hms-int-card .icon {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 12px;
     color: var(--hms-brand-light)
}

.hms-int-card .icon svg {
     width: 28px;
     height: 28px
}

.hms-int-card h4 {
     font-size: 15px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 6px
}

.hms-int-card p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.5
}

.hms-pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px;
     align-items: start
}

.hms-price-card {
     border-radius: 20px;
     padding: 36px 32px;
     border: 1px solid rgba(18, 18, 18, 0.1);
     background: #fff;
     position: relative
}

.hms-price-card.featured {
     background: var(--hms-grad-dark);
     border-color: var(--hms-brand);
     color: #fff
}

.hotel-management-page .featured-badge {
     position: absolute;
     top: -14px;
     left: 50%;
     transform: translateX(-50%);
     padding: 4px 18px;
     background: var(--hms-grad-accent);
     border-radius: 100px;
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     white-space: nowrap
}

.hms-price-card h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px
}

.hms-price-card.featured h3 {
     color: #fff
}

.price-amount {
     font-size: 42px;
     font-weight: 700;
     line-height: 1;
     margin: 16px 0 4px
}

.hms-price-card.featured .price-amount {
     color: var(--hms-brand-light)
}

.price-per {
     font-size: 14px;
     color: var(--hms-muted);
     margin-bottom: 24px
}

.hms-price-card.featured .price-per {
     color: rgba(255, 255, 255, 0.55)
}

.price-features {
     list-style: none;
     padding: 0;
     margin: 0 0 28px;
     display: flex;
     flex-direction: column;
     gap: 12px
}

.price-features li {
     font-size: 14px;
     display: flex;
     gap: 10px;
     align-items: flex-start
}

.price-features li::before {
     content: "✓";
     color: var(--hms-gold);
     font-weight: 700;
     flex-shrink: 0
}

.hms-price-card.featured .price-features li {
     color: rgba(255, 255, 255, 0.8)
}

.btn-price {
     display: block;
     text-align: center;
     padding: 13px;
     border-radius: 10px;
     font-weight: 600;
     font-size: 15px;
     text-decoration: none;
     transition: transform 0.2s ease
}

.btn-price:hover {
     transform: translateY(-2px)
}

.btn-price-outline {
     border: 1px solid rgba(18, 18, 18, 0.2);
     color: var(--hms-dark)
}

.btn-price-outline:hover {
     border-color: var(--hms-brand);
     color: var(--hms-brand)
}

.btn-price-gold {
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
     color: #fff
}

.hotel-management-page .da-app-row {
     grid-template-columns: repeat(4, minmax(0, 1fr))
}

@media (max-width:1024px) {
     .hms-container {
          padding-left: 24px;
          padding-right: 24px
     }

     .hms-hero {
          height: auto;
          min-height: 0
     }

     .hms-hero-inner {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: var(--hms-header-offset) 24px 40px
     }

     .hms-hero-visual {
          display: block;
          width: 100%;
          max-width: 620px;
          margin: 0 auto
     }

     .hms-hero-desc {
          max-width: none
     }

     .hms-modules-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-why-grid {
          grid-template-columns: 1fr
     }

     .hms-why-item p {
          white-space: normal
     }

     .hms-integrations-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-pricing-grid {
          grid-template-columns: 1fr;
          max-width: 480px;
          margin-inline: auto
     }

     .hms-phase-block {
          grid-template-columns: 1fr
     }

     .hotel-management-page .crm-category-tabs {
          justify-content: flex-start;
          overflow-x: auto;
          flex-wrap: nowrap;
          margin-top: 36px;
          padding-bottom: 8px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: thin
     }

     .hotel-management-page .crm-category-tabs__tab {
          flex-shrink: 0
     }

     .hms-spotlight,
     .hms-spotlight--reverse {
          grid-template-columns: 1fr;
          gap: 32px;
          direction: ltr
     }

     /* Media to bottom, text to top on tablet and below */
     .hms-spotlight__media {
          order: 2
     }

     .hms-spotlight > div:first-child {
          order: 1
     }

     .hms-contact-strip {
          grid-template-columns: repeat(2, 1fr)
     }
}

@media (max-width:768px) {
     .hotel-management-page {
          --hms-header-offset: 112px
     }

     /* Hero section containment */
     .hotel-management-page .hms-hero {
          overflow: hidden;
          min-width: 0
     }

     .hotel-management-page .hms-hero-content {
          min-width: 0;
          max-width: 100%
     }

     .hotel-management-page .hms-hero-inner {
          min-width: 0;
          max-width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .hms-hero-inner > div {
          min-width: 0;
          max-width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .hms-hero h1 {
          min-width: 0;
          overflow-wrap: anywhere;
          word-break: break-word
     }

     .hotel-management-page .hms-hero-desc {
          min-width: 0;
          overflow-wrap: anywhere;
          word-break: break-word
     }

     .hotel-management-page .hms-hero-cta {
          min-width: 0;
          max-width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .hms-trust-row {
          min-width: 0;
          max-width: 100%;
          box-sizing: border-box
     }

     /* App window and visual panel containment */
     .hotel-management-page .hms-spotlight__media {
          min-width: 0;
          max-width: 100%;
          width: 100%
     }

     .hotel-management-page .da-app-window {
          min-width: 0;
          max-width: 100%;
          width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .da-app-content {
          min-width: 0;
          max-width: 100%;
          width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .da-app-body {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          max-width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .da-app-row {
          min-width: 0;
          max-width: 100%;
          box-sizing: border-box;
          overflow-wrap: anywhere
     }

     .hotel-management-page .da-app-row span {
          min-width: 0;
          overflow-wrap: anywhere;
          word-break: break-word;
          white-space: nowrap;
          text-overflow: ellipsis
     }

     .hotel-management-page .da-app-title {
          min-width: 0;
          overflow-wrap: anywhere;
          word-break: break-word;
          white-space: nowrap;
          text-overflow: ellipsis
     }

     .hotel-management-page .da-visual-panel {
          min-width: 0;
          max-width: 100%;
          width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .da-vp-title,
     .hotel-management-page .da-report-row {
          min-width: 0;
          max-width: 100%;
          overflow-wrap: anywhere
     }

     /* Spotlight sections - mobile layout fixes */
     .hotel-management-page .hms-spotlight {
          min-width: 0;
          max-width: 100%;
          grid-template-columns: 1fr !important;
          gap: 32px;
          direction: ltr !important
     }

     .hotel-management-page .hms-spotlight--reverse {
          direction: ltr !important
     }

     .hotel-management-page .hms-spotlight > * {
          min-width: 0;
          order: 0
     }

     /* Image/media goes to bottom on mobile */
     .hotel-management-page .hms-spotlight__media {
          order: 2
     }

     /* Text content stays on top */
     .hotel-management-page .hms-spotlight > div:first-child {
          order: 1
     }

     /* Mobile cards and grids */
     .hotel-management-page .hms-mobile-grid {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          max-width: 100%
     }

     .hotel-management-page .hms-contact-strip {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          max-width: 100%
     }

     /* Dashboard and KPI fixes */
     .hotel-management-page .hms-dash-kpis {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          max-width: 100%
     }

     /* Background elements */
     .hotel-management-page .hms-hero-bg {
          overflow: hidden;
          max-width: 100%
     }

     .hms-container {
          padding-left: 20px;
          padding-right: 20px
     }

     .hms-hero-inner {
          padding: var(--hms-header-offset) 20px 32px;
          gap: 28px
     }

     .hms-hero h1 {
          font-size: clamp(24px, 6vw, 32px)
     }

     .hms-hero-cta,
     .hms-hero-cta--triple {
          flex-direction: column;
          align-items: stretch
     }

     .hms-hero-cta .btn-gold,
     .hms-hero-cta .btn-outline-white,
     .hms-hero-cta--triple .btn-gold,
     .hms-hero-cta--triple .btn-outline-white {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .hms-trust-row {
          gap: 8px
     }

     .hms-trust-item {
          font-size: 11px;
          padding: 7px 12px
     }

     .hms-dashboard-preview {
          padding: 18px 16px
     }

     .hms-dash-kpis {
          grid-template-columns: 1fr
     }

     .hms-phase-aside {
          padding: 28px 24px
     }

     .hms-phase-body {
          padding: 28px 24px
     }

     .hms-section-cta {
          margin-top: 32px
     }

     .hms-cta-btn {
          width: 100%;
          justify-content: center;
          text-align: center
     }

     .hms-types-grid,
     .hms-category-grid,
     .hms-product-grid,
     .hms-steps-eight,
     .hms-security-grid,
     .hms-support-grid,
     .hms-reporting-grid,
     .hms-onboarding-timeline,
     .hms-mobile-grid,
     .hms-contact-strip {
          grid-template-columns: 1fr
     }

     /* Ensure product grid items show properly on mobile */
     .hotel-management-page .hms-product-grid {
          grid-template-columns: 1fr !important;
          gap: 20px
     }

     .hotel-management-page .hms-product-item {
          max-width: 100%
     }

     .hms-integrations-grid {
          grid-template-columns: 1fr
     }
}

@media (max-width:640px) {
     .hms-modules-grid {
          grid-template-columns: 1fr
     }

     .hms-phases-mini {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-badge {
          white-space: normal;
          line-height: 1.35;
          text-align: left
     }

     .hms-section-cta {
          flex-direction: column;
          align-items: stretch
     }

     .hms-cta-btn {
          white-space: normal
     }

     .hms-why-visual {
          padding: 28px 24px
     }

     .hotel-management-page .da-app-content {
          min-width: 0;
          max-width: 100%;
          width: 100%;
          box-sizing: border-box
     }

     .hotel-management-page .da-app-row {
          gap: 4px;
          font-size: 9px;
          padding: 6px 0
     }
}

@media (max-width:640px) {
     .hotel-management-page .hms-hero-inner {
          padding: var(--hms-header-offset) 16px 24px
     }

     .hotel-management-page .hms-container {
          padding-left: 16px;
          padding-right: 16px
     }

     .hotel-management-page .hms-mobile-grid {
          grid-template-columns: 1fr !important;
          justify-items: center;
          gap: 16px
     }

     .hotel-management-page .hms-mobile-card {
          max-width: 280px;
          width: 100%
     }

     .hotel-management-page .hms-contact-strip {
          grid-template-columns: 1fr;
          gap: 16px
     }

     .hotel-management-page .hms-spotlight,
     .hotel-management-page .hms-spotlight--reverse {
          gap: 24px;
          grid-template-columns: 1fr !important;
          direction: ltr !important
     }

     /* Ensure image goes to bottom on smaller screens */
     .hotel-management-page .hms-spotlight__media {
          order: 2
     }

     .hotel-management-page .hms-spotlight > div:first-child {
          order: 1
     }

     .hotel-management-page .hms-phase-block {
          gap: 20px
     }

     .hotel-management-page .hms-why-grid {
          grid-template-columns: 1fr;
          gap: 16px
     }
}

@media (max-width:480px) {
     .hotel-management-page .hms-hero-inner {
          padding: var(--hms-header-offset) 12px 20px;
          gap: 20px
     }

     .hotel-management-page .hms-container {
          padding-left: 12px;
          padding-right: 12px
     }

     .hotel-management-page .hms-hero h1 {
          font-size: clamp(22px, 5vw, 28px)
     }

     .hotel-management-page .hms-badge {
          font-size: 12px;
          padding: 6px 12px
     }

     .hotel-management-page .hms-hero-desc {
          font-size: 14px;
          line-height: 1.5
     }

     .hotel-management-page .btn-gold,
     .hotel-management-page .btn-outline-white {
          padding: 12px 24px;
          font-size: 14px
     }

     .hotel-management-page .hms-stat-card {
          padding: 16px 18px
     }

     .hotel-management-page .hms-module-card {
          padding: 20px 16px
     }

     .hotel-management-page .hms-phase-aside .phase-num {
          font-size: 36px
     }

     .hotel-management-page .da-app-row {
          font-size: 8px;
          gap: 2px;
          padding: 4px 0
     }

     /* Additional mobile improvements */
     .hotel-management-page .hms-spotlight {
          gap: 20px
     }

     .hotel-management-page .hms-product-item figcaption {
          padding: 12px 14px
     }

     .hotel-management-page .hms-product-item figcaption h4 {
          font-size: 14px
     }

     .hotel-management-page .hms-mobile-card {
          padding: 16px 12px
     }

     .hotel-management-page .hms-mobile-card__frame {
          width: 100px;
          height: 180px;
          margin-bottom: 12px
     }
}

@media (max-width:360px) {
     .hotel-management-page .hms-hero-inner {
          padding: var(--hms-header-offset) 8px 16px
     }

     .hotel-management-page .hms-container {
          padding-left: 8px;
          padding-right: 8px
     }

     .hotel-management-page .hms-hero h1 {
          font-size: clamp(20px, 4vw, 24px)
     }

     .hotel-management-page .hms-hero-desc {
          font-size: 13px
     }

     .hotel-management-page .btn-gold,
     .hotel-management-page .btn-outline-white {
          padding: 10px 20px;
          font-size: 13px
     }

     .hotel-management-page .hms-badge {
          font-size: 11px;
          padding: 5px 10px
     }
}

.hotel-management-page.truck-sticky-active {
     padding-bottom: 76px
}

.hotel-management-page .truck-sticky-cta {
     position: fixed;
     z-index: 200;
     opacity: 0;
     visibility: hidden;
     transform: translateY(12px);
     transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s
}

.hotel-management-page .truck-sticky-cta.is-visible {
     opacity: 1;
     visibility: visible;
     transform: translateY(0)
}

.hotel-management-page .truck-sticky-cta--desktop {
     top: 24px;
     right: 24px
}

.hotel-management-page .truck-sticky-cta--desktop a {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 24px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
     color: #fff;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45)
}

.hotel-management-page .truck-sticky-cta--mobile {
     left: 0;
     right: 0;
     bottom: 0;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.96);
     border-top: 1px solid rgba(215, 146, 60, 0.2);
     backdrop-filter: blur(12px)
}

.hotel-management-page .truck-sticky-cta--mobile a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 48px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none
}

@media (max-width:900px) {
     .hotel-management-page .truck-sticky-cta--desktop {
          display: none
     }
}

@media (min-width:901px) {
     .hotel-management-page .truck-sticky-cta--mobile {
          display: none
     }
}

.hms-stats-light .hms-stat-light {
     background: #fff;
     border: 1px solid rgba(18, 18, 18, 0.08);
     border-radius: 14px;
     padding: 28px 20px;
     text-align: center
}

.hms-stats-light .hms-stat-light .big {
     color: var(--hms-dark)
}

.hms-stats-light .hms-stat-light .big span {
     color: var(--hms-brand)
}

.hms-stats-light .hms-stat-light .lbl {
     color: var(--hms-muted)
}

.hms-trust-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 28px
}

.hms-trust-item {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 14px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.18);
     background: rgba(255, 255, 255, 0.06);
     color: rgba(255, 255, 255, 0.88);
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.02em
}

.hms-trust-item::before {
     content: "";
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--hms-brand-light);
     flex-shrink: 0
}

.hms-hero-cta--triple {
     flex-wrap: wrap;
     gap: 12px
}

.hms-hero-cta--triple .btn-gold,
.hms-hero-cta--triple .btn-outline-white {
     font-size: 14px;
     padding: 14px 22px
}

.hms-dashboard-preview {
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(18, 20, 30, 0.85);
     backdrop-filter: blur(12px);
     padding: 22px;
     box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35)
}

.hms-dashboard-preview h3 {
     color: var(--hms-brand-light);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin-bottom: 16px
}

.hms-dash-kpis {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-bottom: 16px
}

.hms-dash-kpi {
     padding: 12px;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.08)
}

.hms-dash-kpi .val {
     font-size: 20px;
     font-weight: 700;
     color: #fff
}

.hms-dash-kpi .lbl {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.55);
     margin-top: 4px
}

.hms-dash-rooms {
     display: grid;
     gap: 8px
}

.hms-dash-room {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 12px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.04);
     font-size: 13px;
     color: rgba(255, 255, 255, 0.85)
}

.hms-dash-room .status {
     font-size: 11px;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 999px
}

.hms-dash-room .status--occupied {
     background: rgba(215, 146, 60, 0.25);
     color: var(--hms-brand-light)
}

.hms-dash-room .status--clean {
     background: rgba(76, 175, 80, 0.2);
     color: #81c784
}

.hms-dash-room .status--dirty {
     background: rgba(244, 67, 54, 0.2);
     color: #ef9a9a
}

.hms-section-cta {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     justify-content: center;
     margin-top: 40px
}

.hms-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 26px;
     border-radius: 10px;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: transform 0.2s, box-shadow 0.2s, background 0.2s
}

.hms-cta-btn--primary {
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand-light));
     color: #fff;
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.35)
}

.hms-cta-btn--primary:hover {
     transform: translateY(-2px);
     color: #fff
}

.hms-cta-btn--secondary {
     border: 2px solid var(--hms-brand);
     color: var(--hms-brand-dark);
     background: #fff
}

.hms-cta-btn--secondary:hover {
     background: var(--hms-cream);
     color: var(--hms-brand-dark)
}

.hms-section-cta--on-dark .hms-cta-btn--secondary {
     border-color: rgba(248, 176, 94, 0.45);
     background: transparent;
     color: rgba(255, 255, 255, 0.92)
}

.hms-types-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     margin-top: 48px
}

.hms-type-card {
     padding: 24px 20px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.1);
     background: #fff;
     text-align: center;
     transition: border-color 0.2s, box-shadow 0.2s
}

.hms-type-card:hover {
     border-color: var(--hms-brand);
     box-shadow: 0 12px 28px rgba(215, 146, 60, 0.12)
}

.hms-type-icon {
     width: 48px;
     height: 48px;
     margin: 0 auto 14px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(248, 176, 94, 0.1));
     color: var(--hms-brand)
}

.hms-type-icon svg {
     width: 22px;
     height: 22px
}

.hms-type-card h3 {
     font-size: 15px;
     margin-bottom: 6px
}

.hms-type-card p {
     font-size: 13px;
     color: var(--hms-muted);
     line-height: 1.5;
     margin: 0
}

.hms-steps-eight {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: clamp(12px, 2vw, 24px);
     margin-top: 56px;
     position: relative
}

.hms-steps-eight .da-step {
     text-align: center;
     position: relative;
     z-index: 1
}

.hms-steps-eight .hms-step-icon {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     margin: 0 auto 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     background: linear-gradient(160deg, #F8B05E 0%, #D7923C 48%, #8D4B00 100%);
     border: 3px solid #fff;
     box-shadow: 0 8px 20px rgba(141, 75, 0, 0.22)
}

.hms-steps-eight .hms-step-icon svg {
     width: 24px;
     height: 24px
}

.hms-steps-eight .da-step h3 {
     font-size: 14px;
     margin-bottom: 6px
}

.hms-steps-eight .da-step>p {
     font-size: 13px;
     color: var(--hms-muted);
     line-height: 1.5;
     margin-bottom: 8px
}

.hotel-management-page .crm-step-modules {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
     justify-content: center
}

.hotel-management-page .crm-step-modules li {
     font-size: 11px;
     font-weight: 600;
     padding: 3px 10px;
     border-radius: 999px;
     background: rgba(215, 146, 60, 0.12);
     color: var(--hms-brand-dark)
}

.hotel-management-page .crm-category-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-top: 48px;
     margin-bottom: 28px
}

.hotel-management-page .crm-category-tabs__tab {
     padding: 10px 20px;
     border-radius: 999px;
     border: 1px solid rgba(18, 18, 18, 0.12);
     background: #fff;
     color: var(--hms-muted);
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s
}

.hotel-management-page .crm-category-tabs__tab:hover {
     border-color: var(--hms-brand);
     color: var(--hms-brand-dark)
}

.hotel-management-page .crm-category-tabs__tab.is-active {
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
     border-color: transparent;
     color: #fff;
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.28)
}

.hotel-management-page .crm-category-panel {
     display: none
}

.hotel-management-page .crm-category-panel.is-active {
     display: block
}

.hms-category-block {
     margin-top: 48px
}

.hms-category-block:first-of-type {
     margin-top: 40px
}

.hms-category-head {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
     padding-bottom: 12px;
     border-bottom: 2px solid rgba(215, 146, 60, 0.2)
}

.hms-category-head h3 {
     font-size: 18px;
     font-weight: 700;
     margin: 0
}

.hms-category-head span {
     font-size: 12px;
     font-weight: 600;
     color: var(--hms-brand);
     text-transform: uppercase;
     letter-spacing: 0.06em
}

.hms-category-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px
}

.hms-feature-card {
     padding: 20px;
     border-radius: 12px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff;
     transition: border-color 0.2s, box-shadow 0.2s
}

.hms-feature-card:hover {
     border-color: var(--hms-brand);
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.1)
}

.hms-feature-card h4 {
     font-size: 15px;
     margin-bottom: 6px
}

.hms-feature-card p {
     font-size: 13px;
     color: var(--hms-muted);
     line-height: 1.55;
     margin: 0
}

.hms-product-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
     margin-top: 48px
}

.hms-product-item {
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.1);
     background: #fff;
     overflow: hidden;
     transition: border-color 0.2s, box-shadow 0.2s
}

.hms-product-item:hover {
     border-color: var(--hms-brand);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.12)
}

.hms-product-item__media {
     position: relative;
     aspect-ratio: 16 / 10;
     background: var(--hms-cream);
     overflow: hidden
}

.hms-product-item__media img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover
}

.hms-product-item__mock {
     position: absolute;
     inset: 0;
     padding: 16px;
     display: flex;
     flex-direction: column;
     gap: 8px
}

.hms-product-item__mock.is-hidden {
     display: none
}

.hms-mock-bar {
     height: 8px;
     border-radius: 4px;
     background: rgba(215, 146, 60, 0.2)
}

.hms-mock-bar--short {
     width: 40%
}

.hms-mock-bar--med {
     width: 65%
}

.hms-product-item figcaption {
     padding: 16px 18px
}

.hms-product-item figcaption h4 {
     margin: 0 0 6px;
     font-size: 15px
}

.hms-product-item figcaption p {
     margin: 0;
     font-size: 14px;
     color: var(--hms-muted);
     line-height: 1.5
}

.hms-spotlight {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center
}

.hms-spotlight--reverse {
     direction: rtl
}

.hms-spotlight--reverse>* {
     direction: ltr
}

.hms-spotlight-benefits {
     list-style: none;
     padding: 0;
     margin: 20px 0 0;
     display: grid;
     gap: 10px
}

.hms-spotlight-benefits li {
     font-size: 15px;
     color: var(--hms-muted);
     padding-left: 24px;
     position: relative;
     line-height: 1.5
}

.hms-spotlight-benefits li::before {
     content: "\2713";
     position: absolute;
     left: 0;
     color: var(--hms-brand);
     font-weight: 700
}

.hms-spotlight__media {
     margin: 0
}

.hms-video-wrap {
     margin-top: 48px;
     max-width: 960px;
     margin-left: auto;
     margin-right: auto;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid rgba(18, 18, 18, 0.1);
     box-shadow: 0 12px 40px rgba(141, 75, 0, 0.08)
}

.hms-video-player {
     position: relative;
     width: 100%;
     aspect-ratio: 16 / 9;
     background: #0f0f0f
}

.hms-video-placeholder {
     position: absolute;
     inset: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 12px;
     color: rgba(255, 255, 255, 0.7);
     text-align: center;
     padding: 24px
}

.hms-video-placeholder svg {
     width: 48px;
     height: 48px;
     color: var(--hms-brand-light)
}

.hms-video-placeholder a {
     color: var(--hms-brand-light);
     text-decoration: underline
}

.hms-video-iframe {
     display: block;
     width: 100%;
     height: 100%;
     border: 0
}

.hms-reporting-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 48px
}

.hms-reporting-card {
     padding: 24px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff
}

.hms-reporting-card h4 {
     font-size: 15px;
     margin-bottom: 8px
}

.hms-reporting-card p {
     font-size: 14px;
     color: var(--hms-muted);
     line-height: 1.55;
     margin: 0
}

.hms-mobile-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 48px
}

.hms-mobile-card {
     text-align: center;
     padding: 20px 16px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff
}

.hms-mobile-card__frame {
     width: 120px;
     height: 220px;
     margin: 0 auto 14px;
     border-radius: 20px;
     border: 3px solid rgba(18, 18, 18, 0.12);
     background: var(--hms-grad-dark);
     padding: 12px 8px;
     display: flex;
     flex-direction: column;
     gap: 6px
}

.hms-mobile-card__frame span {
     display: block;
     height: 6px;
     border-radius: 3px;
     background: rgba(255, 255, 255, 0.15)
}

.hms-mobile-card h4 {
     font-size: 14px;
     margin-bottom: 4px
}

.hms-mobile-card p {
     font-size: 12px;
     color: var(--hms-muted);
     margin: 0;
     line-height: 1.45
}

.hms-integration-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
     margin-top: 32px
}

.hms-integration-badge {
     padding: 10px 18px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     background: rgba(255, 255, 255, 0.06);
     color: rgba(255, 255, 255, 0.88);
     font-size: 13px;
     font-weight: 600
}

.hms-logo-strip {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     justify-content: center;
     margin-top: 32px
}

.hms-logo-badge {
     padding: 12px 20px;
     border-radius: 10px;
     border: 1px solid rgba(18, 18, 18, 0.1);
     background: #fff;
     font-size: 13px;
     font-weight: 600;
     color: var(--hms-muted)
}

.hms-security-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 48px
}

.hms-security-card {
     padding: 28px 24px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff
}

.hms-security-card__icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(215, 146, 60, 0.15), rgba(248, 176, 94, 0.1));
     color: var(--hms-brand);
     margin-bottom: 14px
}

.hms-security-card__icon svg {
     width: 22px;
     height: 22px
}

.hms-security-card h4 {
     font-size: 15px;
     margin-bottom: 8px
}

.hms-security-card p {
     font-size: 14px;
     color: var(--hms-muted);
     line-height: 1.55;
     margin: 0
}

.hms-onboarding-timeline {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-top: 48px;
     position: relative
}

.hms-onboarding-step {
     text-align: center;
     padding: 24px 16px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff
}

.hms-onboarding-step__num {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     margin: 0 auto 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     font-weight: 700;
     color: #fff;
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand))
}

.hms-onboarding-step h4 {
     font-size: 15px;
     margin-bottom: 8px
}

.hms-onboarding-step p {
     font-size: 13px;
     color: var(--hms-muted);
     line-height: 1.55;
     margin: 0
}

.hms-support-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 48px
}

.hms-support-card {
     padding: 24px;
     border-radius: 14px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(255, 255, 255, 0.04)
}

.hms-support-card h4 {
     color: #fff;
     font-size: 15px;
     margin-bottom: 8px
}

.hms-support-card p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.65);
     line-height: 1.55;
     margin: 0
}

.hms-contact-strip {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-top: 40px
}

.hms-contact-item {
     text-align: center;
     padding: 24px 16px;
     border-radius: 14px;
     border: 1px solid rgba(18, 18, 18, 0.08);
     background: #fff
}

.hms-contact-item__icon {
     width: 44px;
     height: 44px;
     margin: 0 auto 12px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--hms-cream);
     color: var(--hms-brand)
}

.hms-contact-item__icon svg {
     width: 20px;
     height: 20px
}

.hms-contact-item h4 {
     font-size: 14px;
     margin-bottom: 6px
}

.hms-contact-item a,
.hms-contact-item p {
     font-size: 14px;
     color: var(--hms-muted);
     text-decoration: none;
     margin: 0;
     line-height: 1.5
}

.hms-contact-item a:hover {
     color: var(--hms-brand)
}

.hms-cta-banner-wrap {
     padding: 48px 0
}

.hms-cta-banner-wrap .da-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 40px
}

@media (max-width:1200px) {
     .hms-types-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-steps-eight {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-security-grid,
     .hms-support-grid,
     .hms-reporting-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-onboarding-timeline {
          grid-template-columns: repeat(2, 1fr)
     }

     .hms-mobile-grid {
          grid-template-columns: repeat(2, 1fr)
     }
}

@media (max-width:480px) {
     .hms-phases-mini {
          grid-template-columns: 1fr
     }

     .hms-logo-badge {
          font-size: 12px;
          padding: 10px 14px
     }

     .hms-phase-aside .phase-num {
          font-size: 44px
     }
}

.hotel-management-page .hms-final-cta {
     padding: 0 20px 28px
}

.hotel-management-page .hms-final-cta__shell {
     max-width: 1260px;
     margin: 0 auto;
     border-radius: 20px;
     border: 1px solid rgba(215, 146, 60, 0.2);
     background: rgba(215, 146, 60, 0.2)
}

.hotel-management-page .hms-final-cta__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 32px;
     padding: 36px 48px
}

.hotel-management-page .hms-final-cta__copy {
     flex: 1;
     min-width: 0
}

.hotel-management-page .hms-final-cta__label {
     margin: 0 0 8px;
     color: var(--hms-brand);
     font-size: 15px;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase
}

.hotel-management-page .hms-final-cta__inner h2 {
     margin: 0 0 6px;
     color: var(--da-ink);
     font-size: clamp(20px, 2vw, 26px);
     line-height: 1.3;
     letter-spacing: -0.01em
}

.hotel-management-page .hms-final-cta__sub {
     margin: 0;
     color: var(--da-ink);
     ;
     font-size: 14px;
     line-height: 1.55
}

.hotel-management-page .hms-final-cta__actions {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0
}

.hotel-management-page .hms-final-cta__btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     height: 46px;
     padding: 0 24px;
     border-radius: 10px;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     white-space: nowrap;
     transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease
}

.hotel-management-page .hms-final-cta__btn--primary {
     background: linear-gradient(135deg, var(--hms-brand-dark), var(--hms-brand));
     color: #fff;
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.3)
}

.hotel-management-page .hms-final-cta__btn--primary:hover {
     transform: translateY(-2px);
     color: #fff;
     box-shadow: 0 12px 24px rgba(215, 146, 60, 0.38)
}

.hotel-management-page .hms-final-cta__btn--ghost {
     border: 1px solid rgba(215, 146, 60, 0.45);
     background: transparent;
     color: var(--hms-brand)
}

.hotel-management-page .hms-final-cta__btn--ghost:hover {
     transform: translateY(-2px);
     border-color: rgba(215, 146, 60, 0.45);
     color: var(--hms-brand)
}

@media (max-width:860px) {
     .hotel-management-page .hms-final-cta__inner {
          flex-direction: column;
          align-items: flex-start;
          padding: 28px 28px;
          gap: 20px
     }

     .hotel-management-page .hms-final-cta__inner h2 {
          font-size: clamp(20px, 4vw, 26px)
     }
}

@media (max-width:520px) {
     .hotel-management-page .hms-final-cta {
          padding: 0 12px 20px
     }

     .hotel-management-page .hms-final-cta__shell {
          border-radius: 16px
     }

     .hotel-management-page .hms-final-cta__inner {
          padding: 24px 20px
     }

     .hotel-management-page .hms-final-cta__actions {
          flex-direction: column;
          align-items: stretch;
          width: 100%
     }

     .hotel-management-page .hms-final-cta__btn {
          width: 100%;
          text-align: center
     }
}

.truck-page {
     --da-brand: var(--orange);
     --da-brand-dark: var(--orange-dark);
     --da-brand-light: var(--orange-light);
     --da-accent: var(--orange-light);
     --da-dark: #1a1d2b;
     --da-cream: var(--cream);
     --da-ink: #121212;
     --da-muted: rgba(18, 18, 18, 0.7);
     --da-border: rgba(215, 146, 60, 0.22);
     --da-grad: linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #6b3a00 100%);
     --da-grad-accent: linear-gradient(135deg, #8D4B00, #F8B05E);
     --da-header-offset: 132px
}

html:has(body.truck-page) {
     overflow-x: clip
}

body.truck-page {
     overflow-x: clip;
     overflow-y: visible;
     font-family: var(--font-family);
     font-weight: 400
}

body.truck-page main {
     overflow: visible !important
}

body.truck-page .da-section,
body.truck-page .truck-cta-mid-wrap,
body.truck-page .truck-closing-cta-wrap {
     max-width: 100%
}

.truck-page .truck-section-cta {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 40px
}

.truck-page .truck-cta-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 50px;
     padding: 0 26px;
     border-radius: 10px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 700;
     line-height: 1;
     letter-spacing: 0.01em;
     text-decoration: none;
     white-space: nowrap;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease
}

.truck-page .truck-cta-btn svg {
     width: 18px;
     height: 18px;
     flex-shrink: 0
}

.truck-page .truck-cta-btn--primary {
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     box-shadow: 0 10px 22px rgba(215, 146, 60, 0.32), 0 3px 8px rgba(141, 75, 0, 0.18)
}

.truck-page .truck-cta-btn--primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 28px rgba(215, 146, 60, 0.38), 0 5px 12px rgba(141, 75, 0, 0.22);
     color: #fff
}

.truck-page .truck-cta-btn--secondary {
     background: var(--da-cream);
     color: var(--da-brand-dark);
     border: 2px solid var(--da-border)
}

.truck-page .truck-cta-btn--secondary:hover {
     transform: translateY(-2px);
     border-color: var(--da-brand);
     background: #fff;
     color: var(--da-brand-dark);
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.14)
}

.truck-page .da-section-cream .truck-cta-btn--secondary {
     background: #fff
}

.truck-page .truck-dashboard-card {
     font-family: var(--font-family);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(248, 176, 94, 0.22);
     border-radius: 18px;
     backdrop-filter: blur(16px);
     overflow: hidden;
     box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.45)
}

.truck-page .truck-dashboard-card__img {
     display: block;
     width: 100%;
     height: auto;
     border-radius: 12px
}

.truck-page .truck-dashboard-card__foot {
     padding: 16px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     border-top: 1px solid rgba(248, 176, 94, 0.15)
}

.truck-page .truck-dashboard-card__foot span {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.55);
     letter-spacing: 0.06em;
     text-transform: uppercase
}

.truck-page .truck-dashboard-card__foot strong {
     font-size: 13px;
     color: var(--da-brand-light)
}

.truck-page .truck-logo-strip {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-top: 36px;
     padding-top: 8px
}

.truck-page .truck-logo-badge {
     display: inline-flex;
     align-items: center;
     padding: 10px 18px;
     border-radius: 10px;
     border: 1px dashed var(--da-border);
     background: rgba(255, 255, 255, 0.6);
     font-family: var(--font-family);
     font-size: 13px;
     font-weight: 600;
     color: var(--da-muted);
     letter-spacing: 0.02em
}

.truck-page .truck-stats-light .truck-stat-light {
     background: var(--da-cream);
     border-color: var(--da-border)
}

.truck-page .truck-stats-light .truck-stat-light .big {
     color: var(--da-ink)
}

.truck-page .truck-stats-light .truck-stat-light .big span {
     color: var(--da-brand)
}

.truck-page .truck-stats-light .truck-stat-light .lbl {
     color: var(--da-muted)
}

.truck-page .truck-product-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
     margin-top: 48px
}

.truck-page .truck-product-item {
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     overflow: hidden;
     transition: border-color 0.2s, box-shadow 0.2s
}

.truck-page .truck-product-item:hover {
     border-color: var(--da-brand);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.12)
}

.truck-page .truck-product-item img {
     display: block;
     width: 100%;
     height: auto;
     aspect-ratio: 16 / 10;
     object-fit: cover;
     background: var(--da-cream)
}

.truck-page .truck-product-item figcaption {
     padding: 16px 18px
}

.truck-page .truck-product-item figcaption h4 {
     margin: 0 0 6px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 600
}

.truck-page .truck-product-item figcaption p {
     margin: 0;
     font-family: var(--font-family);
     font-size: 14px;
     line-height: 1.5;
     color: var(--da-muted)
}

.truck-page .truck-video-wrap {
     margin-top: 40px;
     max-width: 960px;
     margin-left: auto;
     margin-right: auto;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid var(--da-border);
     background: #fff;
     box-shadow: 0 12px 40px rgba(141, 75, 0, 0.08)
}

.truck-page .truck-demo .truck-video-wrap {
     margin-top: 48px
}

.truck-page .truck-video-player {
     position: relative;
     width: 100%;
     aspect-ratio: 16 / 9;
     background: #0f0f0f
}

.truck-page .truck-video-iframe {
     display: block;
     width: 100%;
     height: 100%;
     border: 0;
     background: #0f0f0f
}

.truck-page .truck-pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 48px
}

.truck-page .truck-pricing-card {
     padding: 28px 24px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff;
     display: flex;
     flex-direction: column;
     gap: 16px
}

.truck-page .truck-pricing-card--featured {
     border-color: var(--da-brand);
     box-shadow: 0 16px 40px rgba(215, 146, 60, 0.15);
     position: relative
}

.truck-page .truck-pricing-card--featured::before {
     content: "Most Popular";
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     padding: 4px 14px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase
}

.truck-page .truck-pricing-card h3 {
     margin: 0;
     font-family: var(--font-family);
     font-size: 18px
}

.truck-page .truck-pricing-card .truck-pricing-price {
     font-family: var(--font-family);
     font-size: 14px;
     color: var(--da-muted);
     line-height: 1.5
}

.truck-page .truck-pricing-card ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     gap: 10px;
     flex: 1
}

.truck-page .truck-pricing-card li {
     font-size: 14px;
     line-height: 1.45;
     color: var(--da-muted);
     padding-left: 22px;
     position: relative
}

.truck-page .truck-pricing-card li::before {
     content: "\2713";
     position: absolute;
     left: 0;
     color: var(--da-brand);
     font-weight: 700
}

.truck-page .truck-pricing-note {
     margin-top: 28px;
     padding: 20px 24px;
     border-radius: 12px;
     background: var(--da-cream);
     border: 1px solid var(--da-border);
     font-size: 14px;
     line-height: 1.6;
     color: var(--da-muted);
     text-align: center
}

.truck-page .truck-integration-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-top: 40px
}

.truck-page .truck-integration-badge {
     display: inline-flex;
     align-items: center;
     padding: 12px 20px;
     border-radius: 10px;
     border: 1px solid var(--da-border);
     background: #fff;
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink)
}

.truck-page .truck-mobile-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center
}

.truck-page .truck-mobile-benefits {
     display: grid;
     gap: 14px;
     margin-top: 20px
}

.truck-page .truck-mobile-benefits li {
     font-size: 15px;
     line-height: 1.5;
     color: var(--da-muted);
     padding-left: 24px;
     position: relative
}

.truck-page .truck-mobile-benefits li::before {
     content: "\2713";
     position: absolute;
     left: 0;
     color: var(--da-brand);
     font-weight: 700
}

.truck-page .truck-store-badges {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 24px
}

.truck-page .truck-store-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 12px 20px;
     border-radius: 10px;
     border: 1px solid var(--da-border);
     background: #fff;
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink);
     text-decoration: none;
     transition: border-color 0.2s, box-shadow 0.2s
}

.truck-page .truck-store-badge:hover {
     border-color: var(--da-brand);
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.12);
     color: var(--da-ink)
}

.truck-page .truck-mobile-visual img {
     width: 100%;
     max-width: 420px;
     margin: 0 auto;
     display: block
}

.truck-page .truck-hardware-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-top: 40px
}

.truck-page .truck-hardware-card {
     padding: 24px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff
}

.truck-page .truck-hardware-card h4 {
     margin-bottom: 8px;
     font-size: 15px
}

.truck-page .truck-hardware-card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.55;
     color: var(--da-muted)
}

.truck-page .truck-security-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 48px
}

.truck-page .truck-security-card {
     padding: 24px 20px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: border-color 0.2s, box-shadow 0.2s
}

.truck-page .truck-security-card:hover {
     border-color: var(--da-accent);
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.1)
}

.truck-page .truck-security-card__icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
     background: var(--da-cream);
     border: 1px solid var(--da-border);
     color: var(--da-brand)
}

.truck-page .truck-security-card__icon svg {
     width: 22px;
     height: 22px
}

.truck-page .truck-security-card h4 {
     margin-bottom: 8px;
     font-size: 15px
}

.truck-page .truck-security-card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.55;
     color: var(--da-muted)
}

.truck-page .truck-onboarding-timeline {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 48px;
     position: relative
}

.truck-page .truck-onboarding-timeline::before {
     content: "";
     position: absolute;
     top: 28px;
     left: 12%;
     right: 12%;
     height: 2px;
     background: linear-gradient(90deg, var(--da-brand-dark), var(--da-brand-light));
     z-index: 0
}

.truck-page .truck-onboarding-step {
     position: relative;
     z-index: 1;
     text-align: center;
     padding: 0 8px
}

.truck-page .truck-onboarding-step__num {
     width: 56px;
     height: 56px;
     margin: 0 auto 16px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     font-size: 18px;
     font-weight: 700;
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.3)
}

.truck-page .truck-onboarding-step h4 {
     margin-bottom: 8px;
     font-size: 15px
}

.truck-page .truck-onboarding-step p {
     margin: 0;
     font-size: 13px;
     line-height: 1.5;
     color: var(--da-muted)
}

.truck-page .truck-support-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 40px
}

.truck-page .truck-support-card {
     padding: 24px;
     border-radius: 14px;
     border: 1px solid rgba(248, 176, 94, 0.25);
     background: rgba(255, 255, 255, 0.04)
}

.truck-page .truck-support-card h4 {
     margin-bottom: 8px;
     font-size: 15px;
     color: #fff
}

.truck-page .truck-support-card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.55;
     color: rgba(255, 255, 255, 0.72)
}

.truck-page .truck-contact-strip {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 40px
}

.truck-page .truck-contact-item {
     padding: 24px 20px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     text-align: center
}

.truck-page .truck-contact-item__icon {
     width: 48px;
     height: 48px;
     margin: 0 auto 14px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--da-cream);
     color: var(--da-brand)
}

.truck-page .truck-contact-item__icon svg {
     width: 22px;
     height: 22px
}

.truck-page .truck-contact-item h4 {
     margin-bottom: 6px;
     font-size: 14px
}

.truck-page .truck-contact-item a,
.truck-page .truck-contact-item p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: var(--da-muted);
     text-decoration: none
}

.truck-page .truck-contact-item a:hover {
     color: var(--da-brand-dark)
}

.truck-page .truck-cta-mid-wrap {
     padding: 0 40px;
     max-width: 1400px;
     margin: 0 auto
}

.truck-page .truck-closing-cta {
     text-align: center;
     padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 56px);
     border-radius: 24px;
     background: linear-gradient(135deg, #1a1d2b 0%, #1f1f1f 55%, #141820 100%);
     border: 1px solid rgba(248, 176, 94, 0.2);
     position: relative;
     overflow: hidden
}

.truck-page .truck-closing-cta h2 {
     color: #fff;
     margin-bottom: 16px
}

.truck-page .truck-closing-cta>p {
     max-width: 620px;
     margin: 0 auto 28px;
     color: rgba(255, 255, 255, 0.78);
     font-size: 16px;
     line-height: 1.6
}

.truck-page .truck-closing-cta .truck-closing-note {
     margin-top: 16px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.5)
}

.truck-page .truck-section-cta--on-dark .truck-cta-btn--secondary {
     background: transparent;
     color: rgba(255, 255, 255, 0.92);
     border-color: rgba(248, 176, 94, 0.45)
}

.truck-page .truck-section-cta--on-dark .truck-cta-btn--secondary:hover {
     background: rgba(248, 176, 94, 0.1);
     border-color: var(--da-brand-light);
     color: #fff
}

.truck-sticky-cta {
     position: fixed;
     z-index: 200;
     opacity: 0;
     visibility: hidden;
     transform: translateY(12px);
     transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s
}

.truck-sticky-cta.is-visible {
     opacity: 1;
     visibility: visible;
     transform: translateY(0)
}

.truck-sticky-cta--desktop {
     top: 24px;
     right: 24px
}

.truck-sticky-cta--desktop a {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 24px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--orange-dark), var(--orange));
     color: #fff;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
     transition: transform 0.2s, box-shadow 0.2s
}

.truck-sticky-cta--desktop a:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.5);
     color: #fff
}

.truck-sticky-cta--mobile {
     left: 0;
     right: 0;
     bottom: 0;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.96);
     border-top: 1px solid rgba(215, 146, 60, 0.2);
     backdrop-filter: blur(12px);
     box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08)
}

.truck-sticky-cta--mobile a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 48px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--orange-dark), var(--orange));
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none
}

.truck-page.truck-sticky-active {
     padding-bottom: 76px
}

.truck-page .da-type-icon svg {
     width: 22px;
     height: 22px
}

@media (max-width:1200px) {

     .truck-page .truck-pricing-grid,
     .truck-page .truck-security-grid,
     .truck-page .truck-support-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .truck-page .truck-onboarding-timeline {
          grid-template-columns: repeat(2, 1fr)
     }

     .truck-page .truck-onboarding-timeline::before {
          display: none
     }
}

@media (max-width:900px) {

     .truck-page .truck-product-grid,
     .truck-page .truck-mobile-grid,
     .truck-page .truck-hardware-grid,
     .truck-page .truck-contact-strip {
          grid-template-columns: 1fr
     }

     .truck-page .truck-pricing-grid {
          grid-template-columns: 1fr;
          max-width: 420px;
          margin-left: auto;
          margin-right: auto
     }

     .truck-sticky-cta--desktop {
          display: none
     }

     .truck-page .truck-cta-mid-wrap {
          padding: 0 20px
     }
}

@media (min-width:901px) {
     .truck-sticky-cta--mobile {
          display: none
     }
}

@media (max-width:640px) {

     .truck-page .truck-security-grid,
     .truck-page .truck-support-grid,
     .truck-page .truck-onboarding-timeline {
          grid-template-columns: 1fr
     }
}

.field-worker-page {
     --field-container: 1280px;
     --field-text: rgba(18, 18, 18, 0.86)
}

.field-worker-page .field-intro-section {
     padding: 0
}

.field-worker-page .field-intro-section .intro-grid {
     width: min(var(--field-container), calc(100% - 32px));
     grid-template-columns: minmax(480px, 620px) minmax(520px, 568px);
     gap: clamp(56px, 5vw, 92px);
     align-items: start;
     justify-content: center
}

.field-worker-page .intro-copy,
.field-worker-page .intro-copy h2,
.field-worker-page .intro-copy .section-title,
.field-worker-page .intro-copy .rich-text {
     text-align: left
}

.field-worker-page .intro-copy h2 {
     max-width: 640px;
     margin-bottom: clamp(28px, 3vw, 44px)
}

.field-worker-page .intro-copy .rich-text {
     gap: 18px;
     max-width: 640px
}

.field-worker-page .image-stack {
     min-height: 0;
     align-self: center
}

.field-worker-page .image-stack::before {
     top: -44px;
     left: -58px;
     width: clamp(210px, 17vw, 285px);
     height: clamp(112px, 8vw, 150px)
}

.field-worker-page .intro-image {
     width: 100%;
     padding-top: 0
}

.field-worker-page .intro-image img {
     width: 100%;
     aspect-ratio: 568 / 595;
     border-radius: 0;
     object-fit: cover;
     object-position: 62% center
}

.field-worker-page .badge-image {
     left: -73px;
     bottom: -65px;
     width: clamp(139px, 9.5vw, 206px)
}

.field-worker-page .why-section {
     padding: 0
}

.field-worker-page .why-section .container {
     width: min(var(--field-container), calc(100% - 32px))
}

.field-worker-page .why-section .center-title,
.field-worker-page .why-section .center-title .section-title,
.field-worker-page .why-section .center-title h2 {
     margin-inline: 0;
     text-align: center !important
}

.field-worker-page .why-section .center-title {
     margin-bottom: clamp(42px, 5vw, 64px)
}

.field-worker-page .feature-list {
     gap: clamp(54px, 6vw, 76px)
}

.field-worker-page .feature-row {
     grid-template-columns: minmax(380px, 1fr) minmax(380px, 1fr);
     gap: clamp(48px, 5vw, 80px);
     align-items: center
}

.field-worker-page .feature-visual {
     grid-template-columns: clamp(72px, 6vw, 96px) minmax(260px, 340px);
     gap: clamp(28px, 3.5vw, 48px);
     align-items: stretch;
     justify-content: center
}

.field-worker-page .feature-partnership .feature-visual {
     grid-template-columns: minmax(260px, 340px) clamp(72px, 6vw, 96px)
}

.field-worker-page .feature-photo {
     display: flex;
     align-items: center;
     justify-content: center
}

.field-worker-page .feature-photo img {
     width: min(100%, 340px);
     aspect-ratio: 340 / 480;
     height: auto;
     margin-inline: auto;
     border-radius: 3.40282e38px;
     object-fit: cover;
     object-position: center;
     box-shadow: 0 14px 32px rgba(18, 18, 18, 0.14)
}

.field-worker-page .vertical-title {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     align-self: stretch;
     width: 100%;
     min-width: clamp(72px, 6vw, 96px);
     padding: clamp(16px, 2vw, 24px) 0;
     border-left: 1px solid var(--brand);
     border-right: 1px solid var(--brand);
     overflow: visible
}

.field-worker-page .vertical-title h3 {
     position: absolute;
     top: 50%;
     left: 50%;
     width: max-content;
     min-width: 0;
     margin: 0;
     text-align: center;
     white-space: nowrap;
     transform: translate(-50%, -50%) rotate(-90deg);
     transform-origin: center center
}

.field-worker-page .feature-partnership .vertical-title h3,
.field-worker-page .feature-row.reverse .vertical-title h3 {
     transform: translate(-50%, -50%) rotate(90deg)
}

.field-worker-page .feature-text {
     gap: clamp(18px, 2vw, 26px);
     max-width: 540px;
     margin-inline: auto;
     text-align: center;
     justify-self: center
}

.field-worker-page .feature-partnership .feature-text {
     justify-self: center
}

.field-worker-page .expertise-band {
     padding: clamp(56px, 5vw, 60px) 0 0;
     border-radius: 24px;
     background: var(--cream);
     position: relative;
     overflow: visible
}

.field-worker-page .expertise-band .container {
     width: min(1040px, calc(100% - 32px));
     text-align: center
}

.field-worker-page .expertise-icon {
     width: clamp(90px, 7vw, 110px);
     height: clamp(90px, 7vw, 110px);
     position: absolute;
     top: 0;
     left: 50%;
     margin-left: calc(clamp(90px, 7vw, 110px) / -2);
     margin-top: calc(clamp(90px, 7vw, 110px) / -2);
     z-index: 2
}

.field-worker-page .expertise-icon>img {
     width: 100%;
     height: 100%;
     object-fit: contain
}

.field-worker-page .expertise-icon .center {
     position: absolute;
     inset: 23%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0
}

.field-worker-page .expertise-icon .center img {
     width: 100%;
     height: 100%;
     object-fit: contain
}

.field-worker-page .expertise-text h2 {
     margin-bottom: clamp(28px, 3vw, 36px);
     letter-spacing: -0.02em
}

.field-worker-page .expertise-text .rich-text {
     gap: 24px;
     max-width: 920px;
     margin-inline: auto;
     text-align: center
}

.field-worker-page .expertise-text .rich-text p {
     margin: 0
}

.field-worker-page .field-services {
     padding: 0;
     overflow: hidden
}

.field-worker-page .services-lead {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
     gap: clamp(42px, 5vw, 72px);
     align-items: center
}

.field-worker-page .services-main-image img {
     width: 100%;
     aspect-ratio: 961 / 582;
     object-fit: cover;
     object-position: center
}

.field-worker-page .services-heading-wrap {
     position: relative;
     min-height: 260px;
     justify-content: flex-start;
     padding: 0 clamp(24px, 5vw, 86px) 0 0
}

.field-worker-page .services-heading-wrap h2 {
     text-transform: none
}

.field-worker-page .services-heading-wrap img {
     position: absolute;
     right: 0;
     top: 0;
     width: clamp(95px, 9vw, 160px);
     opacity: 0.45
}

.field-worker-page .field-service-grid {
     display: grid;
     grid-template-columns: repeat(5, minmax(0, 1fr));
     gap: 16px;
     margin: -74px auto 0;
     padding: 0 24px 20px
}

.field-worker-page .field-card {
     min-height: 280px;
     padding: 26px 18px 24px;
     border: 1px solid rgba(18, 18, 18, 0.06);
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.93);
     box-shadow: 0 14px 30px rgba(18, 18, 18, 0.14)
}

.field-worker-page .field-card img {
     width: 44px;
     height: 44px;
     margin-bottom: 18px
}

.field-worker-page .field-card h3 {
     margin-bottom: 12px
}

.field-worker-page .solution-section {
     padding: 0
}

.field-worker-page .solution-section .center-title,
.field-worker-page .solution-section .center-title.reveal,
.field-worker-page .solution-section .solution-card,
.field-worker-page .solution-section .solution-card.reveal-scale {
     opacity: 1 !important;
     transform: none !important;
     animation: none !important
}

.field-worker-page .solution-section .center-title,
.field-worker-page .solution-section .center-title .section-title,
.field-worker-page .solution-section .center-title h2 {
     text-align: center
}

.field-worker-page .solution-section .center-title {
     margin-bottom: 0
}

.field-worker-page .solution-section .center-title .section-title {
     color: var(--brand)
}

.field-worker-page .solution-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: clamp(28px, 4vw, 52px);
     margin: 76px auto 0
}

.field-worker-page .solution-card {
     position: relative;
     min-height: 190px;
     padding: 78px 42px 38px;
     border-radius: 28px;
     border: 1px solid rgba(193, 118, 25, 0.18);
     background: #fff;
     box-shadow: 0 10px 28px rgba(18, 18, 18, 0.1)
}

.field-worker-page .solution-icon {
     position: absolute;
     top: -48px;
     left: 50%;
     width: 96px;
     margin: 0;
     transform: translateX(-50%)
}

.field-worker-page .solution-icon .center {
     padding: 30px
}

.field-worker-page .solution-card h3 {
     margin-bottom: 20px;
     color: #9a5a0f
}

.field-worker-page .cta-box h2 {
     color: rgba(18, 18, 18, 0.85)
}

.field-worker-page .cta-box p {
     color: var(--brand-light);
     line-height: 1.3
}

@media (max-width:1180px) {
     .field-worker-page .feature-row {
          grid-template-columns: 1fr
     }

     .field-worker-page .feature-partnership .feature-text,
     .field-worker-page .feature-text {
          justify-self: center
     }

     .field-worker-page .field-service-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
          margin-top: 28px
     }
}

@media (max-width:1024px) {

     .field-worker-page .field-intro-section .intro-grid,
     .field-worker-page .services-lead {
          grid-template-columns: 1fr
     }

     .field-worker-page .intro-copy,
     .field-worker-page .intro-copy h2,
     .field-worker-page .intro-copy .section-title,
     .field-worker-page .intro-copy .rich-text,
     .field-worker-page .why-section .center-title,
     .field-worker-page .why-section .center-title .section-title,
     .field-worker-page .why-section .center-title h2,
     .field-worker-page .feature-text {
          text-align: center
     }

     .field-worker-page .intro-copy .rich-text,
     .field-worker-page .intro-copy h2 {
          margin-inline: auto
     }

     .field-worker-page .image-stack {
          max-width: 620px;
          margin-inline: auto;
          padding-bottom: 40px;
          overflow: visible
     }

     .field-worker-page .badge-image {
          display: block;
          left: 12px;
          bottom: -20px;
          width: 140px
     }

     .field-worker-page .services-heading-wrap {
          min-height: auto;
          justify-content: center;
          padding: 0;
          text-align: center
     }

     .field-worker-page .services-heading-wrap img {
          display: none
     }
}

@media (max-width:768px) {

     .field-worker-page .feature-visual,
     .field-worker-page .feature-partnership .feature-visual {
          grid-template-columns: 1fr
     }

     .field-worker-page .feature-photo img {
          width: min(100%, 300px);
          aspect-ratio: 300 / 420
     }

     .field-worker-page .vertical-title {
          position: static;
          display: grid;
          place-items: center;
          align-self: auto;
          min-width: 0;
          min-height: auto;
          padding: 16px 20px;
          border-left: 0;
          border-right: 0;
          border-top: 1px solid var(--brand);
          border-bottom: 1px solid var(--brand);
          overflow: visible
     }

     .field-worker-page .vertical-title h3,
     .field-worker-page .feature-row.reverse .vertical-title h3 {
          position: static;
          min-width: 0;
          white-space: normal;
          transform: none
     }

     .field-worker-page .field-service-grid,
     .field-worker-page .solution-grid {
          grid-template-columns: 1fr
     }

     .field-worker-page .field-service-grid {
          padding-inline: 16px
     }

     .field-worker-page .badge-image {
          display: block;
          left: 10px;
          bottom: -24px;
          width: 120px
     }
}

.field-worker-page {
     --da-brand: var(--orange, #d7923c);
     --da-brand-dark: var(--orange-dark, #8d4b00);
     --da-brand-light: var(--orange-light, #f8b05e);
     --da-accent: var(--orange-light, #f8b05e);
     --da-dark: #1a1d2b;
     --da-cream: var(--cream, #f5ebde);
     --da-ink: #121212;
     --da-muted: rgba(18, 18, 18, 0.7);
     --da-border: rgba(215, 146, 60, 0.22);
     --da-grad: linear-gradient(135deg, #8D4B00 0%, #D7923C 60%, #6b3a00 100%)
}

html:has(body.field-worker-page) {
     overflow-x: clip
}

body.field-worker-page {
     overflow-x: clip;
     overflow-y: visible
}

body.field-worker-page main {
     overflow: visible !important
}

body.field-worker-page .da-section,
body.field-worker-page .fwm-closing-cta-wrap {
     max-width: 100%
}

.field-worker-page .fwm-outcome-hero {
     background: var(--da-cream);
     padding: clamp(36px, 5vw, 56px) 0;
     border-bottom: 1px solid var(--da-border)
}

.field-worker-page .fwm-outcome-hero .da-container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 clamp(20px, 4vw, 40px);
     text-align: center
}

.field-worker-page .fwm-outcome-hero h2 {
     margin: 0 0 16px;
     font-size: clamp(26px, 3.5vw, 38px);
     line-height: 1.2;
     color: var(--da-ink)
}

.field-worker-page .fwm-outcome-hero .fwm-outcome-sub {
     margin: 0 auto 28px;
     max-width: 720px;
     font-size: clamp(15px, 1.8vw, 17px);
     line-height: 1.65;
     color: var(--da-muted)
}

.field-worker-page .fwm-checklist {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px 16px;
     margin-bottom: 28px;
     list-style: none;
     padding: 0
}

.field-worker-page .fwm-checklist li {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink)
}

.field-worker-page .fwm-checklist li::before {
     content: "\2713";
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     flex-shrink: 0
}

.field-worker-page .fwm-hero-ctas {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-bottom: 24px
}

.field-worker-page .fwm-cta-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 50px;
     padding: 0 26px;
     border-radius: 10px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 700;
     line-height: 1;
     text-decoration: none;
     white-space: nowrap;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease
}

.field-worker-page .fwm-cta-btn--primary {
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     box-shadow: 0 10px 22px rgba(215, 146, 60, 0.32)
}

.field-worker-page .fwm-cta-btn--primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 28px rgba(215, 146, 60, 0.38);
     color: #fff
}

.field-worker-page .fwm-cta-btn--secondary {
     background: #fff;
     color: var(--da-brand-dark);
     border: 2px solid var(--da-border)
}

.field-worker-page .fwm-cta-btn--secondary:hover {
     transform: translateY(-2px);
     border-color: var(--da-brand);
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.14);
     color: var(--da-brand-dark)
}

.field-worker-page .da-section-cream .fwm-cta-btn--secondary {
     background: #fff
}

.field-worker-page .fwm-trust-row {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px 24px
}

.field-worker-page .fwm-trust-pill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 16px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.7);
     border: 1px solid var(--da-border);
     font-size: 13px;
     font-weight: 600;
     color: var(--da-muted)
}

.field-worker-page .fwm-trust-pill strong {
     color: var(--da-brand-dark)
}

.field-worker-page .fwm-section-cta {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 40px
}

.field-worker-page .fwm-logo-strip {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-top: 36px
}

.field-worker-page .fwm-logo-badge {
     display: inline-flex;
     align-items: center;
     padding: 10px 18px;
     border-radius: 10px;
     border: 1px dashed var(--da-border);
     background: rgba(255, 255, 255, 0.6);
     font-size: 13px;
     font-weight: 600;
     color: var(--da-muted)
}

.field-worker-page .fwm-stats-light .fwm-stat-light {
     background: var(--da-cream);
     border-color: var(--da-border)
}

.field-worker-page .fwm-stats-light .fwm-stat-light .big {
     color: var(--da-ink)
}

.field-worker-page .fwm-stats-light .fwm-stat-light .big span {
     color: var(--da-brand)
}

.field-worker-page .fwm-product-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
     margin-top: 48px
}

.field-worker-page .fwm-product-item {
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     overflow: hidden;
     transition: border-color 0.2s, box-shadow 0.2s
}

.field-worker-page .fwm-product-item:hover {
     border-color: var(--da-brand);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.12)
}

.field-worker-page .fwm-product-item img {
     display: block;
     width: 100%;
     height: auto;
     aspect-ratio: 16 / 10;
     object-fit: cover;
     background: var(--da-cream)
}

.field-worker-page .fwm-product-item figcaption {
     padding: 16px 18px
}

.field-worker-page .fwm-product-item figcaption h4 {
     margin: 0 0 6px;
     font-size: 15px
}

.field-worker-page .fwm-product-item figcaption p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: var(--da-muted)
}

.field-worker-page .fwm-video-wrap {
     margin-top: 48px;
     max-width: 960px;
     margin-left: auto;
     margin-right: auto;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid var(--da-border);
     background: #fff;
     box-shadow: 0 12px 40px rgba(141, 75, 0, 0.08)
}

.field-worker-page .fwm-video-player {
     position: relative;
     width: 100%;
     aspect-ratio: 16 / 9;
     background: #0f0f0f
}

.field-worker-page .fwm-video-iframe {
     display: block;
     width: 100%;
     height: 100%;
     border: 0
}

.field-worker-page .fwm-steps-eight {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: clamp(12px, 2vw, 24px);
     margin-top: 48px
}

.field-worker-page .fwm-steps-eight .da-step {
     text-align: center
}

.field-worker-page .fwm-step-icon {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     margin: 0 auto 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     background: linear-gradient(160deg, #F8B05E 0%, #D7923C 48%, #8D4B00 100%);
     border: 3px solid #fff;
     box-shadow: 0 8px 20px rgba(141, 75, 0, 0.22)
}

.field-worker-page .fwm-step-icon svg {
     width: 24px;
     height: 24px
}

.field-worker-page .fwm-steps-eight .da-step h3 {
     font-size: 14px;
     margin-bottom: 6px
}

.field-worker-page .fwm-steps-eight .da-step>p {
     font-size: 13px;
     color: var(--da-muted);
     line-height: 1.5;
     margin: 0
}

.field-worker-page .fwm-roi-calc {
     margin-top: 48px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     align-items: start
}

.field-worker-page .fwm-roi-inputs {
     padding: 28px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff
}

.field-worker-page .fwm-roi-inputs h3 {
     margin: 0 0 24px;
     font-size: 18px
}

.field-worker-page .fwm-roi-field {
     margin-bottom: 24px
}

.field-worker-page .fwm-roi-field label {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     margin-bottom: 10px;
     font-size: 14px;
     font-weight: 600;
     color: var(--da-ink)
}

.field-worker-page .fwm-roi-field label span {
     font-size: 16px;
     font-weight: 700;
     color: var(--da-brand)
}

.field-worker-page .fwm-roi-field input[type="range"] {
     width: 100%;
     accent-color: var(--da-brand)
}

.field-worker-page .fwm-roi-results {
     padding: 28px;
     border-radius: 16px;
     border: 1px solid var(--da-brand);
     background: linear-gradient(160deg, rgba(245, 235, 222, 0.6) 0%, #fff 100%);
     box-shadow: 0 16px 40px rgba(215, 146, 60, 0.12)
}

.field-worker-page .fwm-roi-results h3 {
     margin: 0 0 20px;
     font-size: 18px
}

.field-worker-page .fwm-roi-result-row {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 12px;
     padding: 14px 0;
     font-size: 14px
}

.field-worker-page .fwm-roi-result-row > span {
     flex: 1 1 auto;
     min-width: 0;
     line-height: 1.4
}

.field-worker-page .fwm-roi-result-row:last-of-type {
     border-bottom: none
}

.field-worker-page .fwm-roi-result-row strong {
     flex: 0 0 auto;
     white-space: nowrap;
     font-size: 18px;
     color: var(--da-brand-dark);
     text-align: right
}

.field-worker-page .fwm-roi-result-row--highlight {
     padding-top: 18px;
     margin-top: 8px;
     border-top: 2px solid var(--da-brand);
     border-bottom: none
}

.field-worker-page .fwm-roi-result-row--highlight strong {
     font-size: 22px;
     color: var(--da-brand)
}

.field-worker-page .fwm-roi-disclaimer {
     margin-top: 16px;
     font-size: 12px;
     color: var(--da-muted);
     line-height: 1.5
}

.field-worker-page .fwm-pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 48px
}

.field-worker-page .fwm-pricing-card {
     padding: 28px 24px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff;
     display: flex;
     flex-direction: column;
     gap: 16px
}

.field-worker-page .fwm-pricing-card--featured {
     border-color: var(--da-brand);
     box-shadow: 0 16px 40px rgba(215, 146, 60, 0.15);
     position: relative
}

.field-worker-page .fwm-pricing-card--featured::before {
     content: "Most Popular";
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     padding: 4px 14px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase
}

.field-worker-page .fwm-pricing-card h3 {
     margin: 0;
     font-size: 18px
}

.field-worker-page .fwm-pricing-price {
     font-size: 14px;
     color: var(--da-muted);
     line-height: 1.5;
     margin: 0
}

.field-worker-page .fwm-pricing-card ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     gap: 10px;
     flex: 1
}

.field-worker-page .fwm-pricing-card li {
     font-size: 14px;
     line-height: 1.45;
     color: var(--da-muted);
     padding-left: 22px;
     position: relative
}

.field-worker-page .fwm-pricing-card li::before {
     content: "\2713";
     position: absolute;
     left: 0;
     color: var(--da-brand);
     font-weight: 700
}

.field-worker-page .fwm-resources-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 24px;
     margin-top: 48px
}

.field-worker-page .fwm-resource-card {
     padding: 24px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     display: flex;
     flex-direction: column;
     gap: 12px;
     transition: border-color 0.2s, box-shadow 0.2s
}

.field-worker-page .fwm-resource-card:hover {
     border-color: var(--da-brand);
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.1)
}

.field-worker-page .fwm-resource-card h3 {
     margin: 0;
     font-size: 16px
}

.field-worker-page .fwm-resource-card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.55;
     color: var(--da-muted);
     flex: 1
}

.field-worker-page .fwm-resource-link {
     font-size: 14px;
     font-weight: 700;
     color: var(--da-brand-dark);
     text-decoration: none
}

.field-worker-page .fwm-resource-link:hover {
     color: var(--da-brand)
}

.field-worker-page .fwm-closing-cta-wrap {
     padding: clamp(40px, 5vw, 64px) 0;
     background: var(--da-cream)
}

.field-worker-page .fwm-closing-cta-wrap .da-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px
}

.fwm-sticky-cta {
     position: fixed;
     z-index: 200;
     opacity: 0;
     visibility: hidden;
     transform: translateY(12px);
     transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s
}

.fwm-sticky-cta.is-visible {
     opacity: 1;
     visibility: visible;
     transform: translateY(0)
}

.fwm-sticky-cta--desktop {
     top: 24px;
     right: 24px
}

.fwm-sticky-cta--desktop a {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 24px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--orange-dark), var(--orange));
     color: #fff;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     box-shadow: 0 8px 28px rgba(215, 146, 60, 0.45);
     transition: transform 0.2s, box-shadow 0.2s
}

.fwm-sticky-cta--desktop a:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.5);
     color: #fff
}

.fwm-sticky-cta--mobile {
     left: 0;
     right: 0;
     bottom: 0;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.96);
     border-top: 1px solid rgba(215, 146, 60, 0.2);
     backdrop-filter: blur(12px);
     box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08)
}

.fwm-sticky-cta--mobile a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     min-height: 48px;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--orange-dark), var(--orange));
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none
}

body.field-worker-page.fwm-sticky-active {
     padding-bottom: 76px
}

@media (max-width:1024px) {

     .field-worker-page .fwm-roi-calc,
     .field-worker-page .fwm-pricing-grid {
          grid-template-columns: 1fr
     }

     .field-worker-page .fwm-steps-eight {
          grid-template-columns: repeat(2, 1fr)
     }
}

@media (max-width:768px) {

     .field-worker-page .fwm-product-grid,
     .field-worker-page .fwm-resources-grid {
          grid-template-columns: 1fr
     }

     .field-worker-page .fwm-steps-eight {
          grid-template-columns: 1fr
     }

     .fwm-sticky-cta--desktop {
          display: none
     }
}

@media (min-width:769px) {
     .fwm-sticky-cta--mobile {
          display: none
     }
}

@media (max-width:900px) {
     body.field-worker-page.fwm-sticky-active {
          padding-bottom: 76px
     }
}

.crm-page .da-type-icon svg {
     width: 22px;
     height: 22px
}

.crm-page .da-feat-icon svg {
     width: 20px;
     height: 20px
}

.crm-page .crm-hero-text-cta {
     margin-top: 4px
}

.crm-page .da-hero-cta {
     flex-wrap: wrap;
     gap: 12px 16px
}

.crm-page .crm-section-cta {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 40px
}

.crm-page .crm-cta-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 50px;
     padding: 0 26px;
     border-radius: 10px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 700;
     line-height: 1;
     letter-spacing: 0.01em;
     text-decoration: none;
     white-space: nowrap;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease
}

.crm-page .crm-cta-btn svg {
     width: 18px;
     height: 18px;
     flex-shrink: 0
}

.crm-page .crm-cta-btn--primary {
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     color: #fff;
     box-shadow: 0 10px 22px rgba(215, 146, 60, 0.32), 0 3px 8px rgba(141, 75, 0, 0.18)
}

.crm-page .crm-cta-btn--primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 28px rgba(215, 146, 60, 0.38), 0 5px 12px rgba(141, 75, 0, 0.22);
     color: #fff
}

.crm-page .crm-cta-btn--secondary {
     background: var(--da-cream);
     color: var(--da-brand-dark);
     border: 2px solid var(--da-border)
}

.crm-page .crm-cta-btn--secondary:hover {
     transform: translateY(-2px);
     border-color: var(--da-brand);
     background: #fff;
     color: var(--da-brand-dark);
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.14)
}

.crm-page .da-section-cream .crm-cta-btn--secondary {
     background: #fff
}

.crm-page .da-section-cream .crm-cta-btn--secondary:hover {
     background: #fff
}

.crm-page .da-section-dark .crm-cta-btn--secondary,
.crm-page .crm-section-cta--on-dark .crm-cta-btn--secondary {
     background: transparent;
     color: rgba(255, 255, 255, 0.92);
     border-color: rgba(248, 176, 94, 0.45)
}

.crm-page .da-section-dark .crm-cta-btn--secondary:hover,
.crm-page .crm-section-cta--on-dark .crm-cta-btn--secondary:hover {
     background: rgba(248, 176, 94, 0.1);
     border-color: var(--da-brand-light);
     color: #fff
}

.crm-page .crm-dashboard-card {
     font-family: var(--font-family);
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(248, 176, 94, 0.22);
     border-radius: 18px;
     backdrop-filter: blur(16px);
     overflow: hidden;
     box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.45)
}

.crm-page .crm-dashboard-card__layout {
     display: grid;
     grid-template-columns: 155px 1fr;
     min-height: 300px
}

.crm-page .crm-dashboard-card__sidebar {
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 20px 16px;
     background: linear-gradient(180deg, var(--da-brand) 0%, var(--da-brand-dark) 100%);
     color: #fff
}

.crm-page .crm-dashboard-card__sidebar-foot {
     display: flex;
     flex-direction: column;
     gap: 10px
}

.crm-page .crm-dashboard-card__date {
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.08em;
     opacity: 0.85
}

.crm-page .crm-dashboard-card__title {
     font-size: 1.05rem;
     font-weight: 600;
     line-height: 1.35
}

.crm-page .crm-dashboard-card__content {
     padding: 20px 22px 18px;
     background: rgba(26, 29, 43, 0.6)
}

.crm-page .crm-dashboard-card__grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 14px;
     margin-bottom: 16px
}

.crm-page .crm-dashboard-card__cell {
     background: rgba(215, 146, 60, 0.1);
     border: 1px solid rgba(248, 176, 94, 0.15);
     border-radius: 10px;
     padding: 14px 12px
}

.crm-page .crm-dashboard-card__label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.65);
     margin-bottom: 6px
}

.crm-page .crm-dashboard-card__value {
     font-size: 22px;
     font-weight: 700;
     color: #fff;
     line-height: 1.1
}

.crm-page .crm-dashboard-card__value--accent {
     color: var(--da-brand-light)
}

.crm-page .crm-dashboard-card__sub {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.55);
     margin-top: 5px
}

.crm-page .crm-dashboard-card__tasks {
     display: flex;
     flex-direction: column;
     gap: 10px
}

.crm-page .crm-dashboard-card__task {
     display: flex;
     flex-wrap: wrap;
     align-items: flex-start;
     gap: 6px 8px;
     font-size: 13px;
     line-height: 1.45;
     color: rgba(255, 255, 255, 0.78);
     padding: 10px 12px;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.06);
     overflow-wrap: anywhere;
     word-break: break-word
}

.crm-page .crm-dashboard-card__tag {
     display: inline-block;
     flex-shrink: 0;
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     padding: 3px 8px;
     border-radius: 4px;
     margin-right: 0;
     background: rgba(248, 176, 94, 0.15);
     color: var(--da-brand-light)
}

.crm-page .crm-dashboard-card__tag--due {
     background: var(--tag-bg-muted);
     color: var(--tag-color-accent)
}

.crm-page .crm-benefits-grid {
     grid-template-columns: repeat(4, 1fr)
}

.crm-page .crm-audience-grid--six {
     grid-template-columns: repeat(3, 1fr)
}

.crm-page .crm-audience-grid .da-type-card p {
     line-height: 1.65
}

.crm-page .crm-category-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-top: 48px;
     margin-bottom: 28px
}

.crm-page .crm-category-tabs__tab {
     padding: 10px 20px;
     border-radius: 999px;
     border: 1px solid var(--da-border);
     background: #fff;
     color: var(--da-muted);
     font-family: var(--font-family);
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s
}

.crm-page .crm-category-tabs__tab:hover {
     border-color: var(--da-accent);
     color: var(--da-brand-dark)
}

.crm-page .crm-category-tabs__tab.is-active {
     background: linear-gradient(135deg, var(--da-brand-dark), var(--da-brand));
     border-color: transparent;
     color: #fff;
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.28)
}

.crm-page .crm-category-panel {
     display: none
}

.crm-page .crm-category-panel.is-active {
     display: block
}

.crm-page .crm-mod-category-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px
}

.crm-page .crm-mod-card {
     height: 100%;
     padding: 24px 22px;
     border-radius: 16px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s
}

.crm-page .crm-mod-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 32px rgba(215, 146, 60, 0.1);
     border-color: var(--da-accent)
}

.crm-page .crm-mod-card h3 {
     margin-bottom: 10px;
     font-size: 17px
}

.crm-page .crm-mod-card p {
     line-height: 1.65;
     margin: 0;
     font-size: 14px;
     color: var(--da-muted)
}

.crm-page .crm-mod-card p strong {
     color: var(--da-brand-dark);
     font-weight: 600
}

.crm-page #workflow {
     position: relative;
     overflow: hidden
}

.crm-page .crm-steps-five {
     display: grid;
     grid-template-columns: repeat(5, minmax(0, 1fr));
     gap: clamp(12px, 2vw, 24px);
     margin-top: 56px;
     position: relative;
     isolation: isolate
}

.crm-page .crm-steps-five::before {
     content: "";
     position: absolute;
     top: 40px;
     left: 10%;
     right: 10%;
     height: 3px;
     transform: translateY(-50%);
     background: linear-gradient(90deg, rgba(248, 176, 94, 0.45) 0%, #D7923C 18%, #F8B05E 50%, #D7923C 82%, rgba(248, 176, 94, 0.45) 100%);
     border-radius: 999px;
     z-index: 0;
     box-shadow: 0 1px 6px rgba(215, 146, 60, 0.3)
}

.crm-page .crm-steps-five .da-step {
     text-align: center;
     position: relative;
     z-index: 1;
     padding: 0 clamp(4px, 1vw, 10px)
}

.crm-page .crm-steps-five .da-step-num {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     font-weight: 700;
     color: #fff;
     position: relative;
     z-index: 2;
     background: linear-gradient(160deg, #F8B05E 0%, #D7923C 48%, #8D4B00 100%);
     border: 4px solid #fff;
     box-shadow: 0 0 0 1px rgba(215, 146, 60, 0.22), 0 10px 24px rgba(141, 75, 0, 0.26)
}

.crm-page .crm-steps-five .da-step h3 {
     margin-bottom: 8px;
     color: var(--text-primary);
     font-size: var(--type-h3-size);
     font-weight: var(--type-h3-weight)
}

.crm-page .crm-steps-five .da-step>p {
     font-family: var(--font-family);
     font-size: clamp(13px, 1.05vw, 15px);
     color: var(--text-soft);
     line-height: 1.6;
     max-width: 210px;
     margin-inline: auto;
     margin-bottom: 10px
}

.crm-page .crm-step-modules {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 6px
}

.crm-page .crm-step-modules li {
     font-size: 11px;
     font-weight: 600;
     padding: 4px 10px;
     border-radius: 999px;
     background: var(--da-cream);
     border: 1px solid var(--da-border);
     color: var(--da-brand-dark)
}

.crm-page .crm-flow-note {
     text-align: center;
     margin-top: 40px;
     padding: 16px 20px;
     font-family: var(--font-family);
     font-size: var(--type-body-size);
     color: var(--text-muted);
     line-height: var(--type-body-lh);
     max-width: 820px;
     margin-inline: auto;
     background: var(--da-cream);
     border: 1px solid var(--da-border);
     border-radius: 12px
}

.crm-page #spotlights .da-sub code {
     font-size: 0.9em;
     padding: 2px 6px;
     border-radius: 4px;
     background: var(--da-cream);
     color: var(--da-brand-dark)
}

.crm-page .crm-spotlight {
     align-items: center
}

.crm-page .crm-spotlight--reverse {
     direction: rtl
}

.crm-page .crm-spotlight--reverse>* {
     direction: ltr
}

.crm-page .crm-spotlight__media {
     margin: 0;
     min-width: 0;
     max-width: 100%;
     width: 100%
}

.crm-page .crm-spotlight__media .da-visual-panel,
.crm-page .crm-spotlight__media .da-app-window {
     width: 100%;
     max-width: 100%;
     min-width: 0;
     box-sizing: border-box
}

.crm-page .da-features-split>* {
     min-width: 0
}

.crm-page .crm-spotlight-benefits {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 12px
}

.crm-page .crm-spotlight-benefits li {
     position: relative;
     padding-left: 28px;
     font-size: 15px;
     line-height: 1.55;
     color: var(--da-muted)
}

.crm-page .crm-spotlight-benefits li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 7px;
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--da-brand-light), var(--da-brand));
     opacity: 0.85
}

.crm-page .crm-reporting-panel {
     margin-top: 48px;
     border-radius: 18px;
     border: 1px solid rgba(248, 176, 94, 0.22);
     background: rgba(255, 255, 255, 0.04);
     overflow: hidden;
     font-family: var(--font-family)
}

.crm-page .crm-reporting-panel__header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 22px;
     background: linear-gradient(90deg, rgba(215, 146, 60, 0.18), rgba(248, 176, 94, 0.08));
     border-bottom: 1px solid rgba(248, 176, 94, 0.15)
}

.crm-page .crm-reporting-panel__title {
     font-size: 14px;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.9)
}

.crm-page .crm-reporting-panel__badge {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 999px;
     background: rgba(45, 122, 79, 0.25);
     color: #6ee7a0
}

.crm-page .crm-reporting-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
     padding: 22px
}

.crm-page .crm-reporting-cell {
     background: rgba(215, 146, 60, 0.08);
     border: 1px solid rgba(248, 176, 94, 0.12);
     border-radius: 12px;
     padding: 18px 16px
}

.crm-page .crm-reporting-cell--wide {
     grid-column: span 3
}

.crm-page .crm-reporting-cell__label {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 8px
}

.crm-page .crm-reporting-cell__value {
     font-size: 24px;
     font-weight: 700;
     color: #fff;
     line-height: 1.1
}

.crm-page .crm-reporting-cell__value--accent {
     color: var(--da-brand-light)
}

.crm-page .crm-logo-strip {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-top: 36px;
     padding-top: 8px
}

.crm-page .crm-logo-badge {
     display: inline-flex;
     align-items: center;
     padding: 10px 18px;
     border-radius: 10px;
     border: 1px dashed var(--da-border);
     background: rgba(255, 255, 255, 0.6);
     font-size: 13px;
     font-weight: 600;
     color: var(--da-muted);
     letter-spacing: 0.02em
}

.crm-page .crm-security-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 48px
}

.crm-page .crm-security-card {
     padding: 24px 20px;
     border-radius: 14px;
     border: 1px solid var(--da-border);
     background: #fff;
     transition: border-color 0.2s, box-shadow 0.2s
}

.crm-page .crm-security-card:hover {
     border-color: var(--da-accent);
     box-shadow: 0 8px 24px rgba(215, 146, 60, 0.1)
}

.crm-page .crm-security-card__icon {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
     background: var(--da-cream);
     border: 1px solid var(--da-border);
     color: var(--da-brand)
}

.crm-page .crm-security-card__icon svg {
     width: 22px;
     height: 22px
}

.crm-page .crm-security-card h4 {
     margin-bottom: 8px;
     font-size: 15px
}

.crm-page .crm-security-card p {
     margin: 0;
     font-size: 14px;
     line-height: 1.55;
     color: var(--da-muted)
}

.crm-page .crm-stats-light .crm-stat-light {
     background: var(--da-cream);
     border-color: var(--da-border)
}

.crm-page .crm-stats-light .crm-stat-light .big {
     color: var(--da-ink)
}

.crm-page .crm-stats-light .crm-stat-light .big span {
     color: var(--da-brand)
}

.crm-page .crm-stats-light .crm-stat-light .lbl {
     color: var(--da-muted)
}

.crm-page .da-app-row {
     grid-template-columns: repeat(4, minmax(0, 1fr))
}

.crm-page .da-app-row span {
     min-width: 0;
     overflow-wrap: anywhere;
     word-break: break-word
}

.crm-page .da-app-body {
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     max-width: 100%
}

.crm-page .da-app-content {
     min-width: 0;
     width: 100%
}

.crm-page .da-app-title {
     min-width: 0;
     overflow-wrap: anywhere
}

@media (max-width:1200px) {
     .crm-page .crm-benefits-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .crm-page .crm-steps-five .da-step-num {
          width: 68px;
          height: 68px;
          font-size: 24px;
          border-width: 3px
     }

     .crm-page .crm-steps-five::before {
          top: 34px
     }
}

@media (max-width:1024px) {
     .crm-page .da-container {
          padding-left: 24px;
          padding-right: 24px
     }

     .crm-page .da-hero {
          height: auto;
          min-height: 0
     }

     .crm-page .da-hero-inner {
          gap: 32px;
          padding-bottom: 40px
     }

     .crm-page .da-hero-card-wrap {
          display: flex;
          width: 100%;
          max-width: 620px;
          margin: 0 auto
     }

     .crm-page .da-features-split {
          gap: 36px
     }

     .crm-page .crm-audience-grid--six {
          grid-template-columns: repeat(2, 1fr)
     }

     .crm-page .crm-mod-category-grid {
          grid-template-columns: 1fr
     }

     .crm-page .crm-security-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .crm-page .crm-reporting-grid {
          grid-template-columns: repeat(2, 1fr)
     }

     .crm-page .crm-reporting-cell--wide {
          grid-column: span 2
     }

     .crm-page .crm-steps-five {
          grid-template-columns: repeat(2, 1fr);
          gap: 28px 20px;
          margin-bottom: 20px;
     }

     .crm-page .crm-steps-five::before {
          display: none
     }

     .crm-page .crm-steps-five .da-step-num {
          width: 72px;
          height: 72px;
          font-size: 26px
     }

     .crm-page .crm-steps-five .da-step>p {
          max-width: 280px
     }

     .crm-page .crm-dashboard-card__layout {
          grid-template-columns: 1fr
     }

     .crm-page .crm-dashboard-card__sidebar {
          min-height: 72px;
          flex-direction: row;
          align-items: center;
          justify-content: flex-start
     }

     .crm-page .crm-spotlight--reverse {
          direction: ltr
     }

     .crm-page .crm-category-tabs {
          justify-content: flex-start;
          overflow-x: auto;
          flex-wrap: nowrap;
          margin-top: 36px;
          padding-bottom: 8px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: thin
     }

     .crm-page .crm-category-tabs__tab {
          flex-shrink: 0
     }

     .crm-page .da-compare-table {
          display: none
     }

     .crm-page .da-compare-cards {
          display: block
     }
}

@media (max-width:768px) {
     .crm-page .da-container {
          padding-left: 20px;
          padding-right: 20px
     }

     .crm-page .da-hero-inner {
          padding: var(--da-header-offset) 20px 32px;
          gap: 28px
     }

     .crm-page .da-hero h1 {
          font-size: clamp(22px, 6.2vw, 32px);
          overflow-wrap: anywhere;
          word-break: break-word
     }

     .crm-page .da-hero-sub {
          max-width: none;
          font-size: 15px;
          overflow-wrap: anywhere
     }

     .crm-page .da-hero-cta {
          flex-direction: column;
          align-items: stretch
     }

     .crm-page .da-hero-cta .btn-da-primary,
     .crm-page .da-hero-cta .btn-da-outline {
          width: 100%;
          justify-content: center;
          text-align: center;
          box-sizing: border-box;
          white-space: normal;
          padding-left: 18px;
          padding-right: 18px
     }

     .crm-page .da-trust-row {
          gap: 12px 16px
     }

     .crm-page .da-trust-item {
          font-size: 14px;
          overflow-wrap: anywhere
     }

     .crm-page .crm-dashboard-card__content {
          padding: 16px
     }

     .crm-page .crm-dashboard-card__value {
          font-size: 20px
     }

     .crm-page .crm-dashboard-card__task {
          font-size: 12px;
          padding: 8px 10px
     }

     .crm-page .da-features-split {
          gap: 28px;
          grid-template-columns: 1fr
     }

     .crm-page .crm-spotlight .section-label,
     .crm-page .crm-spotlight .section-title,
     .crm-page .crm-spotlight .da-sub {
          text-align: left;
          overflow-wrap: anywhere
     }

     .crm-page .crm-spotlight-benefits li {
          font-size: 14px;
          overflow-wrap: anywhere
     }

     .crm-page .da-visual-panel {
          padding: 22px 16px;
          box-sizing: border-box
     }

     .crm-page .da-vp-title {
          font-size: 12px;
          letter-spacing: 0.06em;
          overflow-wrap: anywhere
     }

     .crm-page .da-report-row {
          gap: 12px
     }

     .crm-page .da-report-row .r-label,
     .crm-page .da-report-row .r-value {
          overflow-wrap: anywhere;
          min-width: 0
     }

     .crm-page .da-vp-score {
          flex-wrap: wrap;
          gap: 8px
     }

     .crm-page .da-app-title {
          font-size: 10px;
          margin-right: 0;
          text-align: left;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis
     }

     .crm-page .da-app-titlebar {
          gap: 6px;
          padding: 10px 12px
     }

     .crm-page .da-app-body {
          padding: 12px;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch
     }

     .crm-page .da-app-row {
          gap: 6px;
          font-size: 10px;
          padding: 8px 0
     }

     .crm-page .da-app-content {
          min-width: 260px;
          width: max-content;
          max-width: none
     }

     .crm-page .crm-reporting-panel__header {
          flex-wrap: wrap;
          gap: 8px;
          padding: 14px 16px
     }

     .crm-page .crm-reporting-panel__title {
          overflow-wrap: anywhere;
          min-width: 0;
          flex: 1
     }

     .crm-page .crm-reporting-grid {
          padding: 16px;
          gap: 12px
     }

     .crm-page .crm-reporting-cell__value {
          font-size: 20px;
          overflow-wrap: anywhere
     }

     .crm-page .crm-section-cta {
          margin-top: 32px
     }

     .crm-page .crm-logo-strip {
          gap: 10px
     }

     .crm-page .crm-logo-badge {
          font-size: 12px;
          padding: 8px 14px;
          max-width: 100%;
          overflow-wrap: anywhere;
          text-align: center
     }

     .crm-page .section-title,
     .crm-page .da-sub,
     .crm-page .da-type-card h3,
     .crm-page .da-type-card p,
     .crm-page .crm-mod-card h3,
     .crm-page .crm-mod-card p {
          overflow-wrap: anywhere
     }
}

@media (max-width:640px) {

     .crm-page .crm-benefits-grid,
     .crm-page .crm-audience-grid--six {
          grid-template-columns: 1fr
     }

     .crm-page .crm-security-grid {
          grid-template-columns: 1fr
     }

     .crm-page .crm-reporting-grid {
          grid-template-columns: 1fr
     }

     .crm-page .crm-reporting-cell--wide {
          grid-column: span 1
     }

     .crm-page .crm-steps-five {
          grid-template-columns: 1fr;
          gap: 24px;
          margin-top: 40px
     }

     .crm-page .crm-steps-five .da-step {
          display: grid;
          grid-template-columns: 56px 1fr;
          gap: 0 14px;
          text-align: left;
          align-items: start;
          padding: 16px;
          border: 1px solid var(--da-border);
          border-radius: 14px;
          background: #fff;
          min-width: 0
     }

     .crm-page .crm-steps-five .da-step-num {
          width: 56px;
          height: 56px;
          font-size: 22px;
          margin: 0;
          grid-row: span 3;
          align-self: center
     }

     .crm-page .crm-steps-five .da-step h3 {
          margin-bottom: 4px;
          align-self: end;
          font-size: 17px;
          overflow-wrap: anywhere
     }

     .crm-page .crm-steps-five .da-step>p {
          max-width: none;
          margin: 0;
          align-self: start;
          font-size: 14px;
          overflow-wrap: anywhere
     }

     .crm-page .crm-step-modules {
          justify-content: flex-start;
          grid-column: 2
     }

     .crm-page .crm-dashboard-card__grid {
          grid-template-columns: 1fr
     }

     .crm-page .crm-dashboard-card__sidebar-foot {
          flex-direction: row;
          flex-wrap: wrap;
          align-items: center;
          gap: 8px 12px
     }

     .crm-page .crm-dashboard-card__title {
          overflow-wrap: anywhere
     }

     .crm-page .crm-flow-note {
          margin-top: 28px;
          padding: 14px 16px;
          font-size: 14px
     }

     .crm-page .crm-mod-card {
          padding: 20px 18px;
          min-width: 0
     }

     .crm-page .crm-section-cta {
          flex-direction: column;
          align-items: stretch
     }

     .crm-page .crm-cta-btn {
          width: 100%;
          white-space: normal;
          text-align: center;
          box-sizing: border-box
     }

     .crm-page .da-badge {
          display: flex;
          max-width: 100%;
          box-sizing: border-box;
          font-size: 11px;
          padding: 6px 12px;
          white-space: normal;
          text-align: left;
          line-height: 1.35;
          overflow-wrap: anywhere
     }

     .crm-page .da-hero-card-wrap {
          max-width: 100%;
          min-width: 0
     }

     .crm-page .crm-dashboard-card {
          max-width: 100%
     }

     .crm-page .da-compare-card {
          min-width: 0;
          overflow-wrap: anywhere
     }

     .crm-page .da-faq-trigger,
     .crm-page .ai-faq-trigger {
          gap: 12px;
          padding: 16px 14px
     }

     .crm-page .da-faq-index,
     .crm-page .ai-faq-index {
          width: 32px;
          height: 32px;
          font-size: 11px
     }

     .crm-page .da-faq-icon,
     .crm-page .ai-faq-icon {
          width: 34px;
          height: 34px
     }

     .crm-page .da-faq-question,
     .crm-page .ai-faq-question {
          font-size: 14px;
          padding-top: 4px;
          overflow-wrap: anywhere
     }
}

@media (max-width:480px) {
     .crm-page .da-container {
          padding-left: 16px;
          padding-right: 16px
     }

     .crm-page .da-hero-inner {
          padding: var(--da-header-offset) 16px 28px
     }

     .crm-page .da-trust-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px
     }

     .crm-page .da-stats-row {
          grid-template-columns: 1fr;
          gap: 16px;
          margin-top: 36px
     }

     .crm-page .da-types-grid {
          margin-top: 36px;
          gap: 16px
     }

     .crm-page .da-type-card {
          padding: 16px 14px;
          min-width: 0
     }

     .crm-page .crm-category-tabs__tab {
          font-size: 13px;
          padding: 8px 16px
     }

     .crm-page .da-testi-author span {
          display: block;
          line-height: 1.4
     }

     .crm-page .da-app-body {
          padding: 10px
     }

     .crm-page .da-app-content {
          min-width: 240px
     }

     .crm-page .da-app-row {
          font-size: 9px;
          gap: 4px
     }

     .crm-page .da-visual-panel {
          padding: 18px 14px
     }

     .crm-page .crm-dashboard-card__content {
          padding: 14px
     }

     .crm-page .crm-dashboard-card__cell {
          padding: 12px 10px
     }

     .crm-page .crm-reporting-cell {
          padding: 14px 12px
     }

     .crm-page .crm-security-card {
          padding: 20px 16px
     }

     .crm-page .crm-steps-five .da-step {
          grid-template-columns: 48px 1fr;
          gap: 0 12px;
          padding: 14px
     }

     .crm-page .crm-steps-five .da-step-num {
          width: 48px;
          height: 48px;
          font-size: 18px;
          border-width: 3px
     }

     .crm-page .site-final-cta__btn {
          white-space: normal
     }
}

@media (max-width:360px) {
     .crm-page .da-container {
          padding-left: 12px;
          padding-right: 12px
     }

     .crm-page .da-hero-inner {
          padding: var(--da-header-offset) 12px 24px
     }

     .crm-page .da-hero h1 {
          font-size: clamp(20px, 7vw, 26px);
          letter-spacing: -0.01em
     }

     .crm-page .da-badge {
          font-size: 10px;
          letter-spacing: 0.06em;
          padding: 6px 10px
     }

     .crm-page .da-app-title {
          font-size: 9px
     }

     .crm-page .crm-mod-card {
          padding: 16px 14px
     }

     .crm-page .crm-spotlight-benefits li {
          padding-left: 24px;
          font-size: 13px
     }
}

.site-final-cta {
     padding: 0 20px 28px
}

.site-final-cta__shell {
     max-width: 1260px;
     margin: 0 auto;
     border-radius: 20px;
     border: 1px solid rgba(215, 146, 60, 0.2);
     background: rgba(215, 146, 60, 0.2)
}

.site-final-cta__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 32px;
     padding: 36px 48px
}

.site-final-cta__copy {
     flex: 1;
     min-width: 0
}

.site-final-cta__label {
     margin: 0 0 8px;
     color: #8D4B00;
     font-size: 14px;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase
}

.site-final-cta__inner h2 {
     margin: 0 0 6px;
     color: #000;
     font-size: clamp(20px, 2vw, 26px);
     font-weight: 700;
     line-height: 1.3;
     letter-spacing: -0.01em
}

.site-final-cta__sub {
     margin: 0;
     color: #000;
     font-size: 14px;
     font-weight: 400;
     line-height: 1.55
}

.site-final-cta__actions {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0
}

.site-final-cta__btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     height: 46px;
     padding: 0 24px;
     border-radius: 10px;
     font-size: 14px;
     font-weight: 700;
     text-decoration: none;
     white-space: nowrap;
     transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease
}

.site-final-cta__btn--primary {
     background: linear-gradient(135deg, var(--orange-dark), var(--orange));
     color: #fff;
     box-shadow: 0 8px 20px rgba(215, 146, 60, 0.3)
}

.site-final-cta__btn--primary:hover {
     transform: translateY(-2px);
     color: #fff;
     box-shadow: 0 12px 24px rgba(215, 146, 60, 0.38)
}

.site-final-cta__btn--ghost {
     border: 1px solid var(--orange-dark);
     background: transparent;
     color: var(--orange-dark)
}

.site-final-cta__btn--ghost:hover {
     transform: translateY(-2px);
     border-color: var(--orange-dark);
     color: var(--orange-dark)
}

@media (max-width:860px) {
     .site-final-cta__inner {
          flex-direction: column;
          align-items: flex-start;
          padding: 28px 28px;
          gap: 20px
     }

     .site-final-cta__inner h2 {
          font-size: clamp(20px, 4vw, 26px)
     }
}

@media (max-width:520px) {
     .site-final-cta {
          padding: 0 12px 20px
     }

     .site-final-cta__shell {
          border-radius: 16px
     }

     .site-final-cta__inner {
          padding: 24px 20px
     }

     .site-final-cta__actions {
          flex-direction: column;
          align-items: stretch;
          width: 100%
     }

     .site-final-cta__btn {
          width: 100%;
          text-align: center
     }
}

.viqsa-product-cta {
     --cta-brand: var(--orange, #d7923c);
     --cta-brand-dark: var(--orange-dark, #8d4b00);
     --cta-brand-light: var(--orange-light, #f8b05e);
     position: relative;
     border-radius: 24px;
     padding: clamp(48px, 6vw, 64px) clamp(32px, 5vw, 56px);
     background: #fff;
     border: 1px solid rgba(215, 146, 60, 0.12);
     overflow: hidden;
     isolation: isolate;
     box-shadow: 0 20px 40px rgba(141, 75, 0, 0.08), 0 8px 16px rgba(141, 75, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04)
}

.viqsa-product-cta__glow {
     position: absolute;
     border-radius: 50%;
     pointer-events: none;
     z-index: 0
}

.viqsa-product-cta__glow--1 {
     width: min(320px, 60vw);
     height: min(320px, 60vw);
     top: -20%;
     right: -5%;
     background: radial-gradient(circle, rgba(215, 146, 60, 0.08) 0%, transparent 70%)
}

.viqsa-product-cta__glow--2 {
     width: min(240px, 45vw);
     height: min(240px, 45vw);
     bottom: -15%;
     left: -5%;
     background: radial-gradient(circle, rgba(248, 176, 94, 0.06) 0%, transparent 70%)
}

.viqsa-product-cta__inner {
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: clamp(28px, 4vw, 48px)
}

.viqsa-product-cta__content {
     flex: 1;
     min-width: 0;
     max-width: 620px
}

.viqsa-product-cta__eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 16px;
     padding: 8px 16px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--cta-brand-light), var(--cta-brand));
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     box-shadow: 0 4px 12px rgba(215, 146, 60, 0.25)
}

.viqsa-product-cta__content h2 {
     margin: 0 0 16px;
     font-family: var(--font-family);
     font-weight: 500;
     letter-spacing: -0.02em
}

.viqsa-product-cta__content p {
     margin: 0;
     max-width: 520px;
     font-family: var(--font-family);
     font-weight: 400
}

.viqsa-product-cta__actions {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0;
     flex-wrap: wrap
}

.viqsa-product-cta__btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     min-height: 52px;
     padding: 0 26px;
     border-radius: 10px;
     font-family: var(--font-family);
     font-size: 15px;
     font-weight: 600;
     line-height: 1;
     letter-spacing: 0.01em;
     text-decoration: none;
     white-space: nowrap;
     transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease
}

.viqsa-product-cta__btn--primary {
     background: linear-gradient(135deg, var(--cta-brand-dark), var(--cta-brand));
     color: #fff;
     box-shadow: 0 12px 24px rgba(215, 146, 60, 0.35), 0 4px 8px rgba(141, 75, 0, 0.2)
}

.viqsa-product-cta__btn--primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 16px 32px rgba(215, 146, 60, 0.4), 0 6px 12px rgba(141, 75, 0, 0.25);
     color: #fff
}

.viqsa-product-cta__btn--phone {
     background: #f8f9fa;
     border: 2px solid #e9ecef;
     color: #495057
}

.viqsa-product-cta__btn--phone svg {
     width: 18px;
     height: 18px;
     flex-shrink: 0;
     fill: var(--cta-brand)
}

.viqsa-product-cta__btn--phone:hover {
     transform: translateY(-2px);
     border-color: var(--cta-brand);
     background: #fff;
     color: var(--cta-brand-dark);
     box-shadow: 0 8px 16px rgba(215, 146, 60, 0.15)
}

@media (max-width:900px) {
     .viqsa-product-cta__inner {
          flex-direction: column;
          align-items: flex-start;
          text-align: left
     }

     .viqsa-product-cta__actions {
          width: 100%
     }

     .viqsa-product-cta__btn {
          flex: 1 1 auto
     }
}

@media (max-width:560px) {
     .viqsa-product-cta {
          border-radius: 16px;
          padding: 32px 22px
     }

     .viqsa-product-cta__actions {
          flex-direction: column;
          align-items: stretch
     }

     .viqsa-product-cta__btn {
          width: 100%;
          white-space: normal;
          text-align: center
     }
}

.skip-link {
     position: absolute;
     top: -100px;
     left: 16px;
     z-index: 10000;
     padding: 12px 18px;
     background: #121212;
     color: #ffffff;
     font-weight: 600;
     text-decoration: none;
     border-radius: 8px
}

.skip-link:focus {
     top: 16px;
     outline: 3px solid #F8B05E;
     outline-offset: 2px
}

#site-newsletter {
     /* min-height: 220px */
}

#site-footer {
     min-height: 420px
}

a.hero-btn:focus-visible,
a.about-btn:focus-visible,
a.hero-card-btn:focus-visible,
.home-tech-tab:focus-visible,
.ai-faq-trigger:focus-visible,
.why-item:focus-visible,
.nav-dropdown-toggle:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.hamburger:focus-visible,
.close-menu:focus-visible,
.site-final-cta__btn:focus-visible {
     outline: 3px solid #8D4B00;
     outline-offset: 3px
}

.hero-btn:focus-visible,
.about-btn:focus-visible,
.hero-card-btn:focus-visible {
     outline: 3px solid #F8B05E;
     outline-offset: 3px
}

/* Mobile responsive styles for 320px and below */
/* Tablet responsive styles for all page types */
@media (max-width: 1024px) and (min-width: 769px) {
}

@media (max-width: 768px) {
     /* Field Worker ROI Calculator Mobile Fixes for 360px */
     .field-worker-page .fwm-roi-calc {
          display: flex;
          flex-direction: column;
          gap: 24px;
          margin-top: 36px;
     }

     .field-worker-page .fwm-roi-inputs,
     .field-worker-page .fwm-roi-results {
          padding: 20px;
          margin: 0;
          width: 100%;
          box-sizing: border-box;
     }

     .field-worker-page .fwm-roi-inputs h3,
     .field-worker-page .fwm-roi-results h3 {
          font-size: 17px;
          margin: 0 0 18px;
     }

     .field-worker-page .fwm-roi-field {
          margin-bottom: 18px;
     }

     .field-worker-page .fwm-roi-field label {
          font-size: 14px;
          margin-bottom: 8px;
     }

     .field-worker-page .fwm-roi-field label span {
          font-size: 15px;
     }

     .field-worker-page .fwm-roi-result-row {
          padding: 12px 0;
          font-size: 14px;
          gap: 10px;
     }

     .field-worker-page .fwm-roi-result-row strong {
          font-size: 16px;
     }

     .field-worker-page .fwm-roi-result-row--highlight strong {
          font-size: 18px;
     }

     .field-worker-page .fwm-roi-disclaimer {
          font-size: 12px;
          margin-top: 14px;
     }

     .field-worker-page .fwm-cta-btn {
          font-size: 14px;
          padding: 14px 18px;
          margin-top: 18px;
     }
}

/* Tablet and mobile responsive styles for Field Worker ROI Calculator */
@media (max-width: 768px) {
     .field-worker-page .fwm-roi-calc {
          display: flex;
          flex-direction: column;
          gap: 28px;
          margin-top: 40px;
     }

     .field-worker-page .fwm-roi-inputs,
     .field-worker-page .fwm-roi-results {
          padding: 24px;
          margin: 0;
          width: 100%;
          box-sizing: border-box;
     }

     .field-worker-page .fwm-roi-inputs h3,
     .field-worker-page .fwm-roi-results h3 {
          font-size: 18px;
          margin: 0 0 22px;
     }

     .field-worker-page .fwm-roi-field {
          margin-bottom: 22px;
     }

     .field-worker-page .fwm-roi-field label {
          font-size: 15px;
          margin-bottom: 10px;
     }

     .field-worker-page .fwm-roi-field label span {
          font-size: 16px;
     }

     .field-worker-page .fwm-roi-result-row {
          padding: 14px 0;
          font-size: 15px;
          gap: 12px;
     }

     .field-worker-page .fwm-roi-result-row strong {
          font-size: 17px;
     }

     .field-worker-page .fwm-roi-result-row--highlight strong {
          font-size: 18px;
     }

     .field-worker-page .fwm-roi-disclaimer {
          font-size: 12px;
          margin-top: 16px;
     }

     .field-worker-page .fwm-cta-btn {
          font-size: 15px;
          padding: 16px 20px;
          margin-top: 20px;
     }
}

/* Mobile responsive styles for iPhone 6/7/8 and similar (375px) */
@media (max-width: 400px) and (min-width: 361px) {
     .truck-page .container,
     .field-worker-page .container {
          width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px;
     }

     .deal-analyzer-page .container,
     .crm-page .container,
     .hotel-management-page .container,
     .ai-page .container {
          width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px;
     }
     /* Final CTA section for 375px */
     .site-final-cta {
          padding: 0 10px 20px;
     }

     .site-final-cta__inner {
          padding: 24px 20px;
          gap: 20px;
     }

     .site-final-cta__inner h2 {
          font-size: 20px;
     }

     .site-final-cta__sub {
          font-size: 14px;
     }

     .site-final-cta__btn {
          height: 46px;
          padding: 0 22px;
          font-size: 14px;
     }

     /* Field Worker ROI Calculator Mobile Fixes for 375px */
     .field-worker-page .fwm-roi-calc {
          display: flex;
          flex-direction: column;
          gap: 24px;
          margin-top: 40px;
     }

     .field-worker-page .fwm-roi-inputs,
     .field-worker-page .fwm-roi-results {
          padding: 22px;
          margin: 0;
          width: 100%;
          box-sizing: border-box;
     }

     .field-worker-page .fwm-roi-inputs h3,
     .field-worker-page .fwm-roi-results h3 {
          font-size: 17px;
          margin: 0 0 20px;
     }

     .field-worker-page .fwm-roi-field {
          margin-bottom: 20px;
     }

     .field-worker-page .fwm-roi-field label {
          font-size: 14px;
          margin-bottom: 9px;
          gap: 8px;
     }

     .field-worker-page .fwm-roi-field label span {
          font-size: 15px;
          font-weight: 700;
          flex-shrink: 0;
          white-space: nowrap;
     }

     .field-worker-page .fwm-roi-result-row {
          padding: 13px 0;
          font-size: 14px;
          gap: 10px;
     }

     .field-worker-page .fwm-roi-result-row strong {
          font-size: 16px;
     }

     .field-worker-page .fwm-roi-result-row--highlight strong {
          font-size: 17px;
     }

     .field-worker-page .fwm-roi-disclaimer {
          font-size: 12px;
          margin-top: 15px;
     }

     .field-worker-page .fwm-cta-btn {
          font-size: 14px;
          padding: 14px 18px;
          margin-top: 18px;
     }
}

@media (max-width: 360px) {
     .truck-page .container,
     .field-worker-page .container {
          width: calc(100% - 16px);
          padding-left: 8px;
          padding-right: 8px;
     }

     .deal-analyzer-page .container,
     .crm-page .container,
     .hotel-management-page .container,
     .ai-page .container {
          width: calc(100% - 16px);
          padding-left: 8px;
          padding-right: 8px;
     }
     /* Field Worker ROI Calculator Mobile Fixes for ≤360px */
     .field-worker-page .fwm-roi-calc {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-top: 32px;
     }

     .field-worker-page .fwm-roi-inputs,
     .field-worker-page .fwm-roi-results {
          padding: 18px;
          margin: 0;
          width: 100%;
          box-sizing: border-box;
          overflow: hidden;
     }

     .field-worker-page .fwm-roi-inputs h3,
     .field-worker-page .fwm-roi-results h3 {
          font-size: 16px;
          margin: 0 0 16px;
     }

     .field-worker-page .fwm-roi-field {
          margin-bottom: 16px;
     }

     .field-worker-page .fwm-roi-field label {
          font-size: 13px;
          margin-bottom: 8px;
          gap: 8px;
          line-height: 1.4;
     }

     .field-worker-page .fwm-roi-field label span {
          font-size: 14px;
          flex-shrink: 0;
          white-space: nowrap;
     }

     .field-worker-page .fwm-roi-result-row {
          padding: 11px 0;
          font-size: 13px;
          gap: 8px;
     }

     .field-worker-page .fwm-roi-result-row strong {
          font-size: 15px;
     }

     .field-worker-page .fwm-roi-result-row--highlight strong {
          font-size: 16px;
     }

     .field-worker-page .fwm-roi-disclaimer {
          font-size: 11px;
          margin-top: 12px;
          line-height: 1.4;
     }

     .field-worker-page .fwm-cta-btn {
          font-size: 13px;
          padding: 12px 16px;
          margin-top: 16px;
     }
}

@media (max-width: 320px) {
     .truck-page .container,
     .field-worker-page .container {
          width: calc(100% - 12px);
          padding-left: 6px;
          padding-right: 6px;
     }

     .deal-analyzer-page .container,
     .crm-page .container,
     .hotel-management-page .container,
     .ai-page .container {
          width: calc(100% - 12px);
          padding-left: 6px;
          padding-right: 6px;
     }
     /* Final CTA section for small mobile */
     .site-final-cta {
          padding: 0 8px 16px;
     }

     .site-final-cta__inner {
          padding: 20px 16px;
          gap: 16px;
     }

     .site-final-cta__inner h2 {
          font-size: 18px;
     }

     .site-final-cta__sub {
          font-size: 13px;
     }

     .site-final-cta__btn {
          height: 44px;
          padding: 0 20px;
          font-size: 13px;
     }

     /* Field Worker ROI Calculator Mobile Fixes for 320px */
     .field-worker-page .fwm-roi-calc {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin-top: 32px;
     }

     .field-worker-page .fwm-roi-inputs,
     .field-worker-page .fwm-roi-results {
          padding: 16px;
          margin: 0;
          width: 100%;
          box-sizing: border-box;
     }

     .field-worker-page .fwm-roi-inputs h3,
     .field-worker-page .fwm-roi-results h3 {
          font-size: 16px;
          margin: 0 0 16px;
     }

     .field-worker-page .fwm-roi-field {
          margin-bottom: 16px;
     }

     .field-worker-page .fwm-roi-field label {
          font-size: 13px;
          margin-bottom: 8px;
          line-height: 1.4;
          gap: 8px;
     }

     .field-worker-page .fwm-roi-field label span {
          font-size: 14px;
          flex-shrink: 0;
          white-space: nowrap;
     }

     .field-worker-page .fwm-roi-result-row {
          padding: 10px 0;
          font-size: 12px;
          gap: 8px;
     }

     .field-worker-page .fwm-roi-result-row strong {
          font-size: 14px;
     }

     .field-worker-page .fwm-roi-result-row--highlight strong {
          font-size: 15px;
     }

     .field-worker-page .fwm-roi-disclaimer {
          font-size: 11px;
          margin-top: 12px;
          line-height: 1.4;
     }

     .field-worker-page .fwm-cta-btn {
          font-size: 13px;
          padding: 12px 16px;
          margin-top: 16px;
     }
}