/* =========================================================================
   CozyFeet — Underfloor Heating & Liquid Screed
   Stylesheet
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
    --orange: #FF5A1F;
    --orange-dark: #e64a12;
    --dark: #1A1A1A;
    --dark-2: #242424;
    --white: #FFFFFF;
    --grey-bg: #F4F4F4;
    --text-black: #000000;
    --border: #e4e4e4;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Lato', sans-serif;

    --container: 1200px;
    --radius: 8px;
    --shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-black);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.text-orange {
    color: var(--orange);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--dark);
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: 1px;
}

.section-title.light {
    color: var(--white);
}

.section-title.small {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.section-sub {
    font-weight: 500;
    color: var(--text-black);
    max-width: 720px;
    margin: 14px auto 0;
    font-size: 15px;
}

.section-sub.thin {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.section-sub strong {
    font-weight: 700;
    color: var(--orange);
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.72rem;
    color: var(--orange);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-head {
    margin-bottom: 50px;
}

.section-head.center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 13px 24px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    line-height: 1.1;
}

.btn .ico {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 31, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--orange-dark);
    color: var(--white);
    border-color: var(--orange);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* White outline button (used on the orange About panel) */
.btn-outline-w {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
    padding: 14px 26px;
    gap: 18px;
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--orange);
    color: var(--white);
    padding: 6px 18px 6px 6px;
    border-radius: 6px;
    gap: 10px;
    text-transform: none;
}

.btn-phone:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 90, 31, 0.35);
}

.phone-circle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-circle svg {
    width: 17px;
    height: 17px;
    fill: var(--white);
}

.phone-circle img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.phone-text {
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.phone-text strong {
    font-weight: 700;
}

/* Hero outline CALL button with subtitle */
.btn-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.btn-call-text small {
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.85;
}

.btn-outline.btn-lg {
    align-items: center;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 0.92rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.95rem;
}

.btn-stack {
    display: block;
}

.btn-primary small {
    display: block;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
    text-transform: none;
}

/* Hero CTA buttons: icon on the left + stacked text on the right */
.btn-primary.btn-lg,
.btn-outline.btn-lg {
    align-items: center;
    gap: 13px;
}

.btn-ico-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.arrow {
    transition: transform var(--transition);
    display: inline-block;
}

.btn:hover .arrow,
.link-more:hover .arrow {
    transform: translateX(4px);
}

/* arrow.png icon (white png) — shows white on the transparent outline button */
.arrow-img {
    width: 20px;
    height: 16px;
    object-fit: contain;
    transition: transform var(--transition);
}

.btn:hover .arrow-img {
    transform: translateX(4px);
}

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    margin: -22px 0;
}

.logo-img {
    height: 124px;
    width: auto;
    transition: var(--transition);
}

.scrolled .logo-img {
    height: 100px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--white);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.scrolled .main-nav a {
    color: var(--dark);
}

.scrolled .main-nav a:hover,
.scrolled .main-nav a.active {
    color: var(--orange);
}

.header-phone {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: url('https://res.cloudinary.com/di2dn78lf/image/upload/v1781981881/hero-bg_grjd4d.jpg') center/cover no-repeat;
    color: var(--white);
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.72) 45%, rgba(26, 26, 26, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: 1px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-subtext {
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtext strong {
    font-weight: 700;
    color: var(--orange);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero trust strip — sits directly on the hero background (no separate band) */
.hero-trust {
    position: relative;
    z-index: 2;
    padding: 10px 0 46px;
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 30px;
    position: relative;
}

.trust-item:first-child {
    padding-left: 0;
}

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

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
}

.trust-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-ico svg {
    width: 30px;
    height: 30px;
}

.trust-ico img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rating-stars {
    color: #FBBC05;
    font-size: 1.05rem;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 3px;
}

.rating-num {
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--white);
}

.trust-label {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--white);
}

.trust-text small {
    font-weight: 300;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================================================
   ABOUT US
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-image {
    min-height: 480px;
}

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

.about-panel {
    background: var(--orange);
    display: flex;
    align-items: center;
}

.about-panel-inner {
    color: var(--white);
    padding: 70px clamp(30px, 6vw, 80px);
    max-width: 600px;
}

.about-panel .eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.about-panel .section-title {
    margin-bottom: 18px;
}

.about-panel p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
    font-weight: 300;
}

.check-list {
    margin-bottom: 32px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-weight: 300;
    color: var(--white);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF5A1F'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

/* =========================================================================
   WHY CHOOSE COZYFEET
   ========================================================================= */
.why {
    background: var(--grey-bg);
    padding: 90px 0;
}

.why .section-sub {
    max-width: 408px;
}

.why-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.why-col {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.why-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -20px;
    width: 1px;
    height: 64%;
    background: #d6d6d6;
}

.why-icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 22px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: var(--transition);
}

.why-col:hover .why-icon {
    background: var(--orange);
    transform: translateY(-4px);
}

.why-col:hover .why-icon img {
    filter: brightness(0) invert(1);
}

.why-col h3 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--orange);
    font-size: 2.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
    text-transform: uppercase;
}

.why-col p {
    font-weight: 700;
    font-size: 13px;
    color: var(--dark);
}

/* Lower block */
.why-lower {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.why-lower-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.why-lower-img img {
    width: 100%;
    height: auto;
    display: block;
}

.why-lower-text .section-title {
    margin-bottom: 24px;
}

/* Homeowners check list — two columns with circle-check icons */
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 14px 26px;
    margin-bottom: 30px;
}

.check-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark);
}

.chk-ico {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.stat-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.stat-ico {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-bottom: 8px;
}

.stat-num {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark);
    line-height: 1;
}

.stat-num.orange {
    color: var(--orange);
}

.stat-stars {
    color: var(--orange);
    font-size: 0.62rem;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 4px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-black);
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-label.strong {
    font-weight: 700;
    color: var(--dark);
    margin-top: 0;
}

/* =========================================================================
   WHAT WE DO
   ========================================================================= */
.what-we-do {
    padding: 90px 0;
    background: var(--white);
}

.wwd-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wwd-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.wwd-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.wwd-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.wwd-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wwd-card:hover .wwd-img img {
    transform: scale(1.06);
}

.wwd-num {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 2;
}

.wwd-body {
    padding: 26px 24px 26px;
}

.wwd-body h3 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wwd-ico {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.wwd-body p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 19px;
}

/* Full-width bordered LEARN MORE button */
.wwd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 22px;
    border: 1.5px solid var(--orange);
    border-radius: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.wwd-arrow {
    width: 22px;
    height: 16px;
    object-fit: contain;
    transition: transform var(--transition);
}

.wwd-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.wwd-btn:hover .wwd-arrow {
    transform: translateX(4px);
    filter: brightness(0) invert(1);
}

/* =========================================================================
   GOOGLE REVIEWS
   ========================================================================= */
.reviews {
    padding: 90px 0;
    background: var(--grey-bg);
}

.reviews-head {
    text-align: center;
    margin-bottom: 45px;
}

.google-reviews-logo {
    height: 70px;
    width: auto;
    margin: 0 auto 18px;
    object-fit: contain;
}

.reviews-trusted {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-track-wrap {
    overflow: hidden;
    flex: 1;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--white);
    border-radius: 30px;
    padding: 30px 28px;
    box-shadow: var(--shadow);
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    border: 2px solid var(--orange);
}

.review-card h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--dark);
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rev-time {
    display: block;
    font-size: 0.8rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 10px;
}

.stars {
    display: block;
    margin-bottom: 10px;
}

.stars img {
    height: 15px;
    width: auto;
    object-fit: contain;
}

.review-card p {
    font-weight: 500;
    font-size: 0.92rem;
}

.carousel-arrow {
    width: 28px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-arrow img {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.carousel-arrow:hover img {
    opacity: 0.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dots button.active {
    background: var(--orange);
    width: 26px;
    border-radius: 5px;
}

/* =========================================================================
   FEATURED PROJECTS
   ========================================================================= */
.text-featured {
    color: var(--orange);
    font-family: var(--font-body);
    font-size: 23px;
    font-weight: 600;

}

   .featured {
    padding: 90px 0;
    background: var(--white);
}

/* Big featured display — shows the full active project image */
.featured-display {
    display: block;
    margin: 0 auto 30px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    background: var(--grey-bg);
}

.featured-display img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    transition: transform 0.5s ease;
}

.featured-display:hover img {
    transform: scale(1.012);
}

/* Desktop: cap the featured image height so it + the 3 cards fit one screen */
@media (min-width: 993px) {
    .featured {
        padding: 70px 0;
    }

    .featured .section-head {
        margin-bottom: 30px;
    }

    .featured-display {
        margin-bottom: 22px;
    }
}

/* Selector cards */
.project-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-thumb {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    padding: 0;
    font-family: inherit;
    transition: var(--transition);
    min-width: 0;
    /* allow the card to shrink inside the grid */
}

.thumb-caption h4,
.thumb-caption small {
    overflow-wrap: anywhere;
}

.project-thumb:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-thumb.active {
    border-color: var(--orange);
    box-shadow: 0 14px 34px rgba(255, 90, 31, 0.2);
}

.thumb-img {
    height: 165px;
    overflow: hidden;
    background: var(--grey-bg);
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-thumb:hover .thumb-img img {
    transform: scale(1.05);
}

.thumb-caption {
    padding: 16px 20px 18px;
}

.thumb-caption h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.thumb-caption small {
    font-weight: 300;
    font-size: 0.82rem;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =========================================================================
   DARK CTA BANNER
   ========================================================================= */
.cta-banner {
    position: relative;
    background: url('../img/Get-In-Touch.jpg') center/cover no-repeat fixed;
    text-align: center;
    padding: 50px 0;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.80);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-logo {
    height: 150px;
    width: auto;
    margin: 0 auto 26px;
}

.cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.6rem);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.cta-line {
    width: auto;
    height: 80px;
    margin: 10px auto 22px;
    opacity: 0.8;
}

.cta-sub {
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-arrow img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.scroll-arrow:hover {
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}

/* =========================================================================
   GET A FREE QUOTE
   ========================================================================= */
.quote {
    padding: 90px 0;
    background: var(--white);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-left .section-title {
    margin-bottom: 12px;
}

.quote-left .section-sub {
    margin: 0 0 30px;
}

.feature-rows {
    margin-bottom: 30px;
}

.feature-rows li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.fr-ico {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fr-ico img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.feature-rows strong {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-transform: uppercase;
}

.feature-rows small {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-black);
}

.mini-testimonial {
    background: var(--grey-bg);
    border: 1px solid var(--border);
    padding: 22px 24px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 22px;
    align-items: center;
}

.mini-testimonial .stars {
    margin-bottom: 8px;
}

.mini-testimonial .stars img {
    height: 18px;
}

.mini-testimonial p {
    font-weight: 300;
    font-style: italic;
    font-size: 0.92rem;
    margin: 0 0 8px;
}

.mt-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--dark);
}

.mt-img img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
}

/* Form */
.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: none;
}

.input-wrap {
    position: relative;
    width: 100%;
}

.input-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Hide the icon once the field is focused or filled */
.input-wrap.hide-ico .input-ico {
    opacity: 0;
    visibility: hidden;
}

.input-wrap input {
    width: 100%;
    padding-left: 42px;
    transition: padding-left 0.2s ease, var(--transition);
}

/* Remove the icon's reserved space once it's hidden */
.input-wrap.hide-ico input {
    padding-left: 14px;
}

.form-field input,
.form-field textarea {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    padding: 14px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--dark);
    transition: var(--transition);
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.form-field input.error,
.form-field textarea.error {
    border-color: #e23b3b;
    background: #fff5f5;
}

/* Submit button with arrow pushed right */
.form-submit {
    justify-content: space-between;
    margin-top: 6px;
}

.form-arrow {
    width: 26px;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.form-submit:hover .form-arrow {
    transform: translateX(4px);
}

.form-success {
    display: none;
    background: rgba(40, 167, 69, 0.12);
    color: #1e7e34;
    border: 1px solid rgba(40, 167, 69, 0.3);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 400;
    margin-top: 16px;
}

.form-success.show {
    display: block;
}

/* red variant shown when the email fails to send */
.form-success.error-msg {
    background: rgba(220, 53, 69, 0.12);
    color: #b02a37;
    border-color: rgba(220, 53, 69, 0.3);
}

.form-notes {
    margin-top: 18px;
}

.form-notes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-black);
    margin-bottom: 6px;
}

.form-notes li img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.6;
    flex-shrink: 0;
}

/* =========================================================================
   OTHER WAYS TO GET IN TOUCH
   ========================================================================= */
.get-in-touch {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.git-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 1px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.git-line {
    flex: 1;
    height: 2px;
    width: auto;
    min-width: 0;
    object-fit: cover;
    opacity: 0.6;
}

.git-title > span {
    flex-shrink: 0;
    white-space: nowrap;
}

.git-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.git-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: var(--transition);
}

.git-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    background: #2c2c2c;
}

.git-ico {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.git-ico img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.git-card:hover .git-ico {
    transform: scale(1.08);
}

.git-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.git-card p {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--orange);
    margin-bottom: 4px;
}

.git-card small {
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* =========================================================================
   BOTTOM TRUST STRIP
   ========================================================================= */
.bottom-trust {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.bt-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bt-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    flex: 1;
}

/* vertical divider between items */
.bt-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: var(--border);
}

.bt-ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-ico img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bt-item strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-transform: uppercase;
}

.bt-item small {
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--text-black);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: -20px 0;
}

.footer-logo {
    height: 150px;
    width: auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 28px;
}

.footer-nav a {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--white);
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--orange);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--white);
}

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 30px;
}

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

.lb-figure {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.94);
    transition: transform 0.35s ease;
}

.lightbox.open .lb-figure {
    transform: scale(1);
}

.lb-figure img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2010;
}

.lb-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2010;
}

.lb-arrow svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

.lb-arrow:hover {
    background: var(--orange);
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

/* =========================================================================
   ANIMATIONS  (additive only — design unchanged; hidden states are gated
   behind body.anim-ready, which JS adds only when motion is allowed, so the
   page renders fully visible if JS is off or reduced-motion is set)
   ========================================================================= */

/* ---------- Scroll reveal ---------- */
.anim-ready .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.anim-ready .reveal.reveal-left {
    transform: translateX(-48px);
}

.anim-ready .reveal.reveal-right {
    transform: translateX(48px);
}

.anim-ready .reveal.reveal-zoom {
    transform: scale(0.93);
}

.anim-ready .reveal.in-view {
    opacity: 1;
    transform: none;
}

/* ---------- Header slide-in on load ---------- */
.anim-ready .site-header {
    animation: cf-slideDown 0.7s ease both;
}

@keyframes cf-slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ---------- Hero entrance ---------- */
.anim-ready .hero-title {
    animation: cf-heroUp 0.9s ease both 0.25s;
}

.anim-ready .hero-subtext {
    animation: cf-heroUp 0.9s ease both 0.45s;
}

.anim-ready .hero-buttons {
    animation: cf-heroUp 0.9s ease both 0.65s;
}

.anim-ready .hero-trust .trust-item {
    animation: cf-heroUp 0.8s ease both;
}

.anim-ready .hero-trust .trust-item:nth-child(1) {
    animation-delay: 0.85s;
}

.anim-ready .hero-trust .trust-item:nth-child(2) {
    animation-delay: 1s;
}

.anim-ready .hero-trust .trust-item:nth-child(3) {
    animation-delay: 1.15s;
}

.anim-ready .hero-trust .trust-item:nth-child(4) {
    animation-delay: 1.3s;
}

@keyframes cf-heroUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Gentle continuous accents ---------- */
.anim-ready .why-col:hover .why-icon img {
    animation: cf-pop 0.4s ease;
}

@keyframes cf-pop {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.14);
    }

    100% {
        transform: scale(1);
    }
}

/* Logo subtle float */
.anim-ready .logo-img {
    animation: cf-float 5s ease-in-out infinite;
}

@keyframes cf-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Pause the float while the header is sliding in, and keep height transition */
.anim-ready .scrolled .logo-img {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
    padding: 90px 0;
    background: var(--grey-bg);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item.open {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 24px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-q:hover,
.faq-item.open .faq-q {
    color: var(--orange);
}

.faq-toggle {
    position: relative;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--orange);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform var(--transition), opacity var(--transition);
}

.faq-toggle::before {
    width: 16px;
    height: 2.5px;
}

.faq-toggle::after {
    width: 2.5px;
    height: 16px;
}

.faq-item.open .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a p {
    padding: 0 24px 24px;
    margin: 0;
    font-weight: 400;
    color: var(--text-black);
    opacity: 0.9;
    line-height: 1.7;
}

.faq-a a {
    color: var(--orange);
    font-weight: 700;
}

/* =========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    padding: 0 16px;
    background: #25D366;
    color: var(--white);
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    animation: cf-wa-pulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: #1ebe5b;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.whatsapp-float-label {
    white-space: nowrap;
}

@keyframes cf-wa-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 992px) {
    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1050;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border);
    }

    .main-nav a {
        color: var(--dark);
        display: block;
        padding: 16px 0;
    }

    .scrolled .main-nav a {
        color: var(--dark);
    }

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

    .about-image {
        min-height: 340px;
    }

    .why-cols {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 60px;
    }

    .why-col:not(:last-child)::after {
        display: none;
    }

    /* hide dividers when stacked */
    .why-lower {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 26px;
    }

    .wwd-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    /* Featured projects keep 3 cards in a row on tablet */
    .project-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .git-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-inner {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }

    .bt-inner {
        justify-content: flex-start;
        gap: 30px 24px;
    }

    .bt-item {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: 0;
    }

    .bt-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .footer-social {
        margin-bottom: 14px;
    }

    .why,
    .what-we-do,
    .reviews,
    .featured,
    .faq,
    .quote {
        padding: 60px 0;
    }

    .faq-q {
        font-size: 0.95rem;
        padding: 18px 18px;
    }

    .faq-a p {
        padding: 0 18px 20px;
    }

    /* Collapse the floating WhatsApp button to a compact circle on mobile */
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        height: 56px;
        width: 56px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }

    .whatsapp-float-label {
        display: none;
    }

    .cta-banner {
        background-attachment: scroll;
    }

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

    .check-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 12px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    /* Featured projects — big image on top, 3 compact cards in a row below */
    .project-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .thumb-img {
        height: 92px;
    }

    .thumb-caption {
        padding: 9px 7px 11px;
        text-align: center;
    }

    .thumb-caption h4 {
        font-size: 0.7rem;
        letter-spacing: 0;
        line-height: 1.15;
        margin-bottom: 3px;
    }

    .thumb-caption small {
        font-size: 0.58rem;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mini-testimonial {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mt-img img {
        width: 100%;
        height: 160px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    /* Trust strip — clean full-width rows on mobile */
    .trust-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .trust-item {
        flex: none;
        width: 100%;
        gap: 14px;
        padding: 13px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .trust-item:not(:last-child)::after {
        display: none;
    }

    .trust-label {
        font-size: 0.92rem;
    }

    .trust-text small {
        font-size: 0.76rem;
    }

    .rating-num {
        font-size: 1rem;
    }

    .quote-form {
        padding: 26px;
    }

    .about-panel-inner {
        padding: 50px 26px;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }

    .lb-arrow {
        width: 46px;
        height: 46px;
    }

    .lb-close {
        top: 14px;
        right: 16px;
    }
}