/* ==========================================================================
   MTapeten Wien - Main Stylesheet
   Dark Theme with Gold Accents + Light Sections
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Dark Colors */
    --clr-dark: #19181D;
    --clr-dark-alt: #1E1C23;
    --clr-dark-card: #252329;
    --clr-dark-elevated: #2A282F;

    /* Light Colors */
    --clr-light: #F7F7F8;
    --clr-light-alt: #ECECEC;
    --clr-white: #FFFFFF;

    /* Gold Accent */
    --clr-gold: #DFB975;
    --clr-gold-light: #E8CA93;
    --clr-gold-dark: #D7AE63;

    /* Blue Accent */
    --clr-blue: #38A3CC;

    /* Text Colors */
    --clr-text-light: #F7F7F8;
    --clr-text-dark: #19181D;
    --clr-text-muted-light: #A9A9A9;
    --clr-text-muted-dark: #555555;

    /* Functional */
    --clr-success: #31EB75;
    --clr-error: #F83F05;

    /* Typography */
    --ff-heading: 'Fira Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --ff-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Layout */
    --container: 1200px;
    --header-height: 80px;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;
    --trans-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(223, 185, 117, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-dark);
    background-color: var(--clr-light);
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Header (Light - Static)
   -------------------------------------------------------------------------- */
.hdr {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.hdr--scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-light-alt);
    box-shadow: var(--shadow-md);
    animation: headerSlideDown 0.4s ease-out;
}

/* Header text colors - transparent state (over hero) */
.hdr .hdr__logo-name,
.hdr .hdr__nav-link {
    color: var(--clr-text-light);
}

.hdr .hdr__nav-link img,
.hdr .hdr__topbar-item img {
    filter: invert(1);
}

/* Header text colors - scrolled state (white bg) */
.hdr--scrolled .hdr__logo-name,
.hdr--scrolled .hdr__nav-link {
    color: var(--clr-text-dark);
}

.hdr--scrolled .hdr__nav-link img,
.hdr--scrolled .hdr__topbar-item img {
    filter: brightness(0);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hdr--scrolled .hdr__topbar {
    display: none;
}

.hdr--hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* Top Bar - hidden on transparent header */
.hdr__topbar {
    display: none;
}

.hdr__topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hdr__topbar-left,
.hdr__topbar-right {
    display: flex;
    gap: var(--space-md);
}

.hdr__topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-muted-dark);
}

.hdr__topbar-item img {
    opacity: 0.6;
    filter: brightness(0);
}

.hdr__topbar-item--link:hover {
    color: var(--clr-gold);
}

/* Main Header */
.hdr__main {
    padding: var(--space-sm) 0;
}

.hdr__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

/* Logo */
.hdr__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr__logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-light);
}

.hdr__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hdr__logo-name {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.hdr__logo-tag {
    font-size: 0.75rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Navigation */
.hdr__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hdr__nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-text-dark);
    padding: var(--space-xs) 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hdr__nav-link img {
    filter: brightness(0);
}

.hdr__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: width var(--trans-normal);
}

.hdr__nav-link:hover::after {
    width: 100%;
}

.hdr__nav-link--accent {
    color: var(--clr-gold);
}

/* Actions */
.hdr__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hdr__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--trans-fast);
}

.hdr__phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hdr--scrolled .hdr__phone:hover {
    background: var(--clr-light);
}

.hdr__phone-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(223, 185, 117, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hdr__phone-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.hdr__phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hdr__phone-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted-light);
}

.hdr--scrolled .hdr__phone-label {
    color: var(--clr-text-muted-dark);
}

.hdr__phone-num {
    font-weight: 600;
    color: var(--clr-gold);
}

.hdr__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.hdr__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hdr__btn img {
    filter: brightness(0);
}

/* Burger */
.hdr__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hdr__burger-line {
    width: 100%;
    height: 2px;
    background: var(--clr-text-light);
    border-radius: 2px;
    transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.hdr--scrolled .hdr__burger-line {
    background: var(--clr-text-dark);
}

.hdr__burger--active .hdr__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hdr__burger--active .hdr__burger-line:nth-child(2) {
    opacity: 0;
}

.hdr__burger--active .hdr__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.hdr__drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--clr-dark-alt);
    z-index: 10001;
    transition: right var(--trans-normal);
    display: flex;
    flex-direction: column;
}

.hdr__drawer--open {
    right: 0;
}

.hdr__drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hdr__drawer-title {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.hdr__drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background var(--trans-fast);
}

.hdr__drawer-close img {
    filter: invert(1);
}

.hdr__drawer-close:hover {
    background: var(--clr-dark-card);
}

.hdr__drawer-nav {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hdr__drawer-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 1.0625rem;
    color: var(--clr-text-light);
    border-radius: var(--radius-md);
    transition: background var(--trans-fast), color var(--trans-fast);
}

.hdr__drawer-link:hover {
    background: var(--clr-dark-card);
    color: var(--clr-gold);
}

.hdr__drawer-cta {
    padding: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hdr__drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--space-sm);
    background: var(--clr-dark-card);
    border-radius: var(--radius-md);
    color: var(--clr-gold);
    font-weight: 600;
}

.hdr__drawer-phone img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.hdr__drawer-btn {
    display: block;
    text-align: center;
    padding: var(--space-sm);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-weight: 600;
    border-radius: var(--radius-md);
}

.hdr__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: opacity var(--trans-normal), visibility var(--trans-normal);
}

.hdr__overlay--visible {
    opacity: 1;
    visibility: visible;
}

/* Hide call button when mobile menu is open */
.hdr__overlay--visible ~ .call-btn,
body:has(.hdr__overlay--visible) .call-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Hero Section (Dark)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--clr-dark);
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(25, 24, 29, 0.85) 0%,
        rgba(25, 24, 29, 0.6) 50%,
        rgba(25, 24, 29, 0.4) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero__container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(223, 185, 117, 0.15);
    border: 1px solid rgba(223, 185, 117, 0.3);
    color: var(--clr-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--clr-text-light);
}

.hero__title-accent {
    color: var(--clr-gold);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.hero__btn--primary {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
}

.hero__btn--primary img {
    filter: brightness(0);
}

.hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-text-light);
    backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--clr-gold);
}

.hero__btn--secondary img {
    filter: brightness(0) invert(1);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.hero__stat {
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero__stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__stat-text {
    font-size: 0.875rem;
    color: var(--clr-text-light);
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

/* Vertical Slider Indicators (Right Side) */
.hero__indicators {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.hero__indicator {
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background var(--trans-fast), width var(--trans-fast);
    border-radius: 2px;
}

.hero__indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero__indicator--active {
    background: var(--clr-gold);
    width: 4px;
}

/* Hero Bottom Arrows */
.hero__arrows {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: 3;
}

.hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--trans-fast), border-color var(--trans-fast);
}

.hero__arrow:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
}

.hero__arrow:hover img {
    filter: brightness(0);
}

/* --------------------------------------------------------------------------
   Trust Section (Dark)
   -------------------------------------------------------------------------- */
.trust {
    background: var(--clr-dark-alt);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.1);
    border: 1px solid rgba(223, 185, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust__icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.trust__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust__text strong {
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    color: var(--clr-text-light);
}

.trust__text span {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

/* --------------------------------------------------------------------------
   Services Section (Dark with Sticky Sidebar)
   -------------------------------------------------------------------------- */
.svc {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
}

.svc__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.svc__layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Sticky Left Column */
.svc__sticky {
    position: sticky;
    top: 100px;
    align-self: start;
    margin-top: var(--space-xl);
}

.svc__featured {
    background: var(--clr-dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.svc__featured-img {
    position: relative;
    padding-top: 90%;
    overflow: hidden;
}

.svc__featured-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc__featured-dots {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 6px;
}

.svc__featured-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.svc__featured-dots span:first-child {
    background: var(--clr-gold);
}

.svc__featured-content {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.svc__featured-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin-bottom: 4px;
}

.svc__featured-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.svc__featured-count {
    padding: var(--space-md);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-gold);
}

.svc__featured-btn {
    display: block;
    margin: 0 var(--space-md) var(--space-md);
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--clr-text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--trans-fast);
}

.svc__featured-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
}

/* Right Column Header */
.svc__header {
    margin-bottom: var(--space-lg);
}

.svc__label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(223, 185, 117, 0.15);
    border: 1px solid rgba(223, 185, 117, 0.3);
    color: var(--clr-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-sm);
}

.svc__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

/* Services Grid - 3 columns */
.svc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.svc__card {
    background: var(--clr-dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform var(--trans-normal), border-color var(--trans-normal);
}

.svc__card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-gold);
}

.svc__card-img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.svc__card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

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

.svc__card-content {
    padding: var(--space-sm);
}

.svc__card-cat {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-text-muted-light);
    margin-bottom: 4px;
}

.svc__card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin-bottom: var(--space-xs);
}

.svc__card-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    margin-bottom: 4px;
}

.svc__card-info span {
    color: var(--clr-text-muted-light);
}

.svc__card-info strong {
    color: var(--clr-text-light);
}

.svc__card-btn {
    display: block;
    margin-top: var(--space-sm);
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--trans-fast);
}

.svc__card-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
}

/* --------------------------------------------------------------------------
   Materials Section (Dark)
   -------------------------------------------------------------------------- */
.mat {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
}

.mat__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.mat__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.mat__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.mat__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
}

.mat__desc {
    font-size: 1.0625rem;
    color: var(--clr-text-muted-light);
    max-width: 650px;
    margin: 0 auto;
}

.mat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.mat__card {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--trans-normal), transform var(--trans-normal);
}

.mat__card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-5px);
}

.mat__card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.mat__card-symbol {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mat__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.mat__card-list {
    margin-bottom: var(--space-md);
}

.mat__card-list li {
    padding: var(--space-xs) 0;
    padding-left: 20px;
    position: relative;
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
}

.mat__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--clr-gold);
    border-radius: var(--radius-full);
}

.mat__card-price {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(223, 185, 117, 0.1);
    border: 1px solid rgba(223, 185, 117, 0.3);
    color: var(--clr-gold);
    font-weight: 600;
    border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   Why Choose Us Section (Light)
   -------------------------------------------------------------------------- */
.why {
    padding: var(--space-3xl) 0;
    background: var(--clr-white);
}

.why__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.why__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.why__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.why__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.why__card {
    background: var(--clr-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: box-shadow var(--trans-normal), transform var(--trans-normal);
}

.why__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why__card-num {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.why__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-dark);
}

.why__card-text {
    color: var(--clr-text-muted-dark);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Before/After Gallery (Dark)
   -------------------------------------------------------------------------- */
.bfa {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark-alt);
}

.bfa__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.bfa__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.bfa__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.bfa__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-sm);
}

.bfa__desc {
    font-size: 1.0625rem;
    color: var(--clr-text-muted-light);
    max-width: 650px;
    margin: 0 auto;
}

.bfa__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.bfa__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: col-resize;
}

/* Before/After Slider Container */
.bfa__slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bfa__before,
.bfa__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bfa__before img,
.bfa__after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfa__before {
    z-index: 2;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--clr-gold);
}

.bfa__after {
    z-index: 1;
}

/* Labels */
.bfa__label-before,
.bfa__label-after {
    position: absolute;
    bottom: var(--space-md);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.bfa__label-before {
    left: var(--space-sm);
    background: rgba(25, 24, 29, 0.9);
    color: var(--clr-text-light);
}

.bfa__label-after {
    right: var(--space-sm);
    background: var(--clr-gold);
    color: var(--clr-dark);
}

/* Slider Handle */
.bfa__handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfa__handle-btn {
    width: 44px;
    height: 44px;
    background: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.bfa__handle-btn::before,
.bfa__handle-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bfa__handle-btn::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent var(--clr-dark) transparent transparent;
    margin-right: 16px;
}

.bfa__handle-btn::after {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--clr-dark);
    margin-left: 16px;
}

.bfa__item:hover .bfa__handle-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(223, 185, 117, 0.4);
}

.bfa__item-info {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(25, 24, 29, 0.85);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.bfa__item--dragging .bfa__item-info {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.bfa__item-title {
    font-weight: 600;
    color: var(--clr-text-light);
    font-size: 0.9375rem;
}

.bfa__item-type {
    font-size: 0.8125rem;
    color: var(--clr-gold);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Geography Section (Light)
   -------------------------------------------------------------------------- */
.geo {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
    position: relative;
    overflow: hidden;
}

.geo__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.geo__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.geo__content {
    position: relative;
    z-index: 2;
}

.geo__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.geo__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.geo__desc {
    font-size: 1.0625rem;
    color: var(--clr-text-muted-dark);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.geo__stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.geo__stat {
    text-align: left;
}

.geo__stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1;
}

.geo__stat-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted-dark);
    margin-top: 4px;
}

.geo__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--clr-dark);
    color: var(--clr-text-light);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--trans-fast), transform var(--trans-fast);
}

.geo__cta:hover {
    background: var(--clr-gold);
    color: var(--clr-dark);
    transform: translateY(-2px);
}

.geo__cta img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: filter var(--trans-fast);
}

.geo__cta:hover img {
    filter: none;
}

.geo__map {
    position: relative;
}

.geo__districts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.geo__district {
    padding: 12px 8px;
    background: var(--clr-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--trans-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.geo__district:hover {
    background: var(--clr-dark);
    border-color: var(--clr-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 24, 29, 0.15);
}

.geo__district-code {
    display: block;
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-dark);
    transition: color var(--trans-fast);
}

.geo__district:hover .geo__district-code {
    color: var(--clr-gold);
}

.geo__district-name {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-text-muted-dark);
    margin-top: 2px;
    transition: color var(--trans-fast);
}

.geo__district:hover .geo__district-name {
    color: var(--clr-text-light);
}

/* --------------------------------------------------------------------------
   Process Section (Dark)
   -------------------------------------------------------------------------- */
.proc {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
}

.proc__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.proc__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.proc__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.proc__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.proc__timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
    position: relative;
}

.proc__timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.proc__step {
    text-align: center;
    position: relative;
}

.proc__step-num {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--clr-dark-card);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin: 0 auto var(--space-md);
    position: relative;
    z-index: 1;
    transition: background var(--trans-normal), border-color var(--trans-normal);
}

.proc__step:hover .proc__step-num {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
}

.proc__step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    opacity: 0.8;
}

.proc__step-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.proc__step-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-light);
}

.proc__step-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

@media (max-width: 1024px) {
    .proc__timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .proc__timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .proc__timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .proc__timeline {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .proc__step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: var(--space-md);
        padding: var(--space-md);
        background: var(--clr-dark-card);
        border-radius: var(--radius-md);
    }

    .proc__step-num {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.125rem;
        margin: 0;
    }

    .proc__step-content {
        flex: 1;
    }

    .proc__step-title {
        margin-bottom: var(--space-xs);
    }
}

/* --------------------------------------------------------------------------
   Pricing Table Section (Light)
   -------------------------------------------------------------------------- */
.prc-tbl {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
}

.prc-tbl__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.prc-tbl__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.prc-tbl__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.prc-tbl__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-sm);
}

.prc-tbl__desc {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.prc-tbl__table {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.prc-tbl__row {
    display: grid;
    grid-template-columns: 1fr 120px 140px;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background var(--trans-fast);
}

.prc-tbl__row:last-child {
    border-bottom: none;
}

.prc-tbl__row:not(.prc-tbl__row--header):hover {
    background: rgba(223, 185, 117, 0.08);
}

.prc-tbl__row--header {
    background: var(--clr-dark);
    padding: var(--space-md) var(--space-lg);
}

.prc-tbl__row--header .prc-tbl__cell {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-light);
}

.prc-tbl__cell {
    font-size: 0.9375rem;
    color: var(--clr-text-dark);
}

.prc-tbl__cell--price {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--clr-gold-dark);
}

.prc-tbl__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-top: var(--space-lg);
    font-style: italic;
}

.prc-tbl__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.prc-tbl__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--clr-gold);
    color: var(--clr-dark);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--trans-fast);
}

.prc-tbl__btn:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.prc-tbl__btn img {
    transition: transform var(--trans-fast);
}

.prc-tbl__btn:hover img {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .prc-tbl__row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: var(--space-md);
    }

    .prc-tbl__row--header {
        display: none;
    }

    .prc-tbl__cell {
        display: block;
        padding: var(--space-xs) 0;
    }

    .prc-tbl__cell::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--clr-text-muted);
    }

    .prc-tbl__cell:first-child {
        font-weight: 600;
        font-size: 1rem;
        color: var(--clr-text-dark);
        padding-bottom: var(--space-sm);
        border-bottom: none;
    }

    .prc-tbl__cell:first-child::before {
        display: none;
    }

    .prc-tbl__cell--price {
        font-size: 1.25rem;
        padding: var(--space-xs) 0;
    }

    .prc-tbl__cell--price::before {
        display: block;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .prc-tbl__btn {
        width: 100%;
        justify-content: center;
    }
}

.prc__table th,
.prc__table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.prc__table thead {
    background: var(--clr-dark);
}

.prc__table th {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: var(--clr-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prc__table tbody tr:hover {
    background: var(--clr-white);
}

.prc__table tbody tr:last-child td {
    border-bottom: none;
}

.prc__service {
    font-weight: 500;
    color: var(--clr-text-dark);
}

.prc__price {
    color: var(--clr-gold-dark);
    font-weight: 600;
}

.prc__note {
    text-align: center;
    margin-top: var(--space-lg);
    color: var(--clr-text-muted-dark);
    font-size: 0.9375rem;
}

.prc__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.prc__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.prc__btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.prc__btn img {
    filter: brightness(0);
}

/* --------------------------------------------------------------------------
   Guarantee Section (Dark) - Compact Version
   -------------------------------------------------------------------------- */
.gua {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.gua::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(223, 185, 117, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gua__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.gua__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
}

.gua__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.gua__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-md);
}

.gua__desc {
    font-size: 1.0625rem;
    color: var(--clr-text-muted-light);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.gua__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-lg);
}

.gua__list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.9375rem;
    color: var(--clr-text-light);
}

.gua__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-gold);
    font-weight: 700;
}

.gua__badge {
    flex-shrink: 0;
}

.gua__badge-inner {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(223, 185, 117, 0.3);
    position: relative;
}

.gua__badge-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed rgba(25, 24, 29, 0.2);
    border-radius: var(--radius-full);
}

.gua__badge-years {
    font-family: var(--ff-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1;
}

.gua__badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .gua__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gua__list {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .gua__badge {
        order: -1;
        margin: 0 auto var(--space-lg);
    }

    .gua__badge-inner {
        width: 140px;
        height: 140px;
    }

    .gua__badge-years {
        font-size: 3rem;
    }

    .gua__desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------------------------------
   Problems Section (Light)
   -------------------------------------------------------------------------- */
.prb {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
}

.prb__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.prb__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.prb__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.prb__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.prb__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.prb__card {
    background: var(--clr-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--trans-normal);
    border-left: 4px solid transparent;
}

.prb__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--clr-gold);
}

.prb__card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.prb__card-icon img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(37%) saturate(485%) hue-rotate(5deg) brightness(93%) contrast(88%);
}

.prb__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-bottom: var(--space-sm);
}

.prb__card-text {
    font-size: 0.9375rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .prb__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prb__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .prb__card {
        padding: var(--space-md);
    }
}

/* --------------------------------------------------------------------------
   Guarantee Section (Dark) - Original
   -------------------------------------------------------------------------- */
.guar {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark-alt);
}

.guar__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.guar__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.guar__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.guar__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.guar__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: center;
}

.guar__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.guar__feature {
    display: flex;
    gap: var(--space-sm);
}

.guar__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.1);
    border: 1px solid rgba(223, 185, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guar__feature-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.guar__feature-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--clr-text-light);
}

.guar__feature-text {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.guar__cert {
    background: var(--clr-dark-card);
    border: 2px solid var(--clr-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.guar__cert-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guar__cert-badge img {
    filter: brightness(0);
    width: 40px;
    height: 40px;
}

.guar__cert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-light);
}

.guar__cert-text {
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Problems Section (Light)
   -------------------------------------------------------------------------- */
.prob {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
}

.prob__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.prob__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.prob__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.prob__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.prob__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.prob__card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--trans-normal), transform var(--trans-normal);
}

.prob__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.prob__card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
}

.prob__card-icon img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(45%) saturate(456%) hue-rotate(356deg) brightness(90%) contrast(91%);
}

.prob__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-dark);
}

.prob__card-text {
    color: var(--clr-text-muted-dark);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   About Section (Dark)
   -------------------------------------------------------------------------- */
.abt {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
}

.abt__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.abt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.abt__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.abt__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.abt__content {
    padding-left: var(--space-lg);
}

.abt__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.abt__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: var(--space-md);
}

.abt__text {
    font-size: 1rem;
    color: var(--clr-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.abt__text:last-of-type {
    margin-bottom: var(--space-lg);
}

.abt__stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.abt__stat {
    text-align: center;
}

.abt__stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.abt__stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .abt__grid {
        gap: var(--space-xl);
    }

    .abt__content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .abt__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .abt__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .abt__content {
        text-align: center;
    }

    .abt__stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .abt__stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }

    .abt__stat {
        flex: 0 0 auto;
        min-width: 80px;
    }

    .abt__stat-num {
        font-size: 1.5rem;
    }

    .abt__stat-label {
        font-size: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   Team Section (Light)
   -------------------------------------------------------------------------- */
.team {
    padding: var(--space-3xl) 0;
    background: var(--clr-white);
}

.team__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.team__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.team__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.team__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.team__card {
    background: var(--clr-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--trans-normal), transform var(--trans-normal);
}

.team__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team__card-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.team__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

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

.team__card-content {
    padding: var(--space-md);
    text-align: center;
}

.team__card-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--clr-text-dark);
}

.team__card-role {
    color: var(--clr-gold-dark);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.team__card-spec,
.team__card-text {
    color: var(--clr-text-muted-dark);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Reviews Section (Dark)
   -------------------------------------------------------------------------- */
.rev {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark-alt);
}

.rev__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.rev__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.rev__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.rev__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.rev__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.rev__card {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--trans-normal);
}

.rev__card:hover {
    border-color: var(--clr-gold);
}

.rev__card-stars {
    color: var(--clr-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.rev__card-text {
    color: var(--clr-text-muted-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.rev__card-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.rev__card-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.rev__card-info {
    flex: 1;
}

.rev__card-name {
    font-weight: 600;
    color: var(--clr-text-light);
}

.rev__card-service {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.rev__card-date {
    font-size: 0.75rem;
    color: var(--clr-text-muted-light);
}

.rev__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.rev__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--clr-gold);
    color: var(--clr-gold);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--trans-fast), color var(--trans-fast);
}

.rev__btn:hover {
    background: var(--clr-gold);
    color: var(--clr-dark);
}

.rev__btn:hover img {
    filter: brightness(0);
}

.rev__btn img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

/* --------------------------------------------------------------------------
   Blog Section (Light)
   -------------------------------------------------------------------------- */
.blg {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
}

.blg__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.blg__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blg__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.blg__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.blg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.blg__card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--trans-normal), transform var(--trans-normal);
}

.blg__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.blg__card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blg__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

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

.blg__card-content {
    padding: var(--space-md);
}

.blg__card-cat {
    display: inline-block;
    padding: 4px 10px;
    background: var(--clr-gold);
    color: var(--clr-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.blg__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg__card-excerpt {
    color: var(--clr-text-muted-dark);
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.blg__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--clr-gold-dark);
    color: var(--clr-gold-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--trans-fast), color var(--trans-fast);
}

.blg__btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
}

.blg__btn:hover img {
    filter: brightness(0);
}

.blg__btn img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(45%) saturate(456%) hue-rotate(356deg) brightness(90%) contrast(91%);
}

/* --------------------------------------------------------------------------
   FAQ Section (Dark)
   -------------------------------------------------------------------------- */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.faq__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.faq__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.faq__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq__item {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--trans-normal);
}

.faq__item:hover,
.faq__item--open {
    border-color: var(--clr-gold);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    text-align: left;
    font-family: var(--ff-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--clr-text-light);
    cursor: pointer;
    transition: color var(--trans-fast);
}

.faq__item--open .faq__question {
    color: var(--clr-gold);
}

.faq__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-gold);
    transition: transform var(--trans-normal);
}

.faq__item--open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--trans-normal);
}

.faq__item--open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner,
.faq__answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--clr-text-muted-light);
    line-height: 1.6;
    margin: 0;
}

.faq__question img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--trans-normal), filter var(--trans-normal);
    filter: invert(1) brightness(0.7);
}

.faq__item:hover .faq__question img,
.faq__item--open .faq__question img {
    transform: rotate(180deg);
    filter: invert(72%) sepia(54%) saturate(370%) hue-rotate(6deg) brightness(93%) contrast(92%);
}

/* --------------------------------------------------------------------------
   Calculator Section (Light)
   -------------------------------------------------------------------------- */
.calc {
    padding: var(--space-3xl) 0;
    background: var(--clr-white);
}

.calc__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.calc__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.calc__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}

.calc__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-dark);
}

.calc__box {
    background: var(--clr-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.calc__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calc__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.calc__label-text,
.calc__label-field {
    font-weight: 500;
    color: var(--clr-text-dark);
}

.calc__desc {
    color: var(--clr-text-muted);
    margin-top: var(--space-sm);
}

.calc__note {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

.calc__select,
.calc__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--clr-white);
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    color: var(--clr-text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--trans-fast);
}

.calc__select:focus,
.calc__input:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.calc__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.calc__result {
    text-align: center;
    padding: var(--space-lg);
    background: var(--clr-gold);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
}

.calc__result-label {
    font-size: 0.875rem;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
    opacity: 0.8;
}

.calc__result-value {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-dark);
}

.calc__result-note {
    font-size: 0.875rem;
    color: var(--clr-dark);
    margin-top: var(--space-xs);
    opacity: 0.8;
}

.calc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 16px;
    background: var(--clr-dark);
    color: var(--clr-text-light);
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: var(--space-md);
    transition: background var(--trans-fast);
}

.calc__btn:hover {
    background: var(--clr-dark-alt);
}

.calc__btn img {
    filter: invert(1);
}

/* --------------------------------------------------------------------------
   Contact Section (Dark)
   -------------------------------------------------------------------------- */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark-alt);
}

.cta__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.cta__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.cta__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.cta__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.cta__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.cta__text {
    color: var(--clr-text-muted-light);
    line-height: 1.7;
}

.cta__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cta__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.1);
    border: 1px solid rgba(223, 185, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta__feature-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.cta__feature span {
    font-weight: 500;
    color: var(--clr-text-light);
}

.cta__contact {
    margin-top: var(--space-lg);
}

.cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--clr-dark-card);
    border: 1px solid rgba(223, 185, 117, 0.3);
    border-radius: var(--radius-md);
    transition: background var(--trans-fast);
}

.cta__phone:hover {
    background: var(--clr-dark-elevated);
}

.cta__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__phone-icon img {
    filter: brightness(0);
}

.cta__phone-text {
    display: flex;
    flex-direction: column;
}

.cta__phone-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.cta__phone-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
}

/* Form */
.cta__form-wrap {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.cta__form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--clr-text-light);
}

/* Form styles */
.jq_form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.jq_form input[type="text"],
.jq_form input[type="email"],
.jq_form input[type="tel"],
.jq_form textarea,
.jq_form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--clr-dark-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--clr-text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--trans-fast);
}

.jq_form input:focus,
.jq_form textarea:focus,
.jq_form select:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.jq_form textarea {
    resize: vertical;
    min-height: 120px;
}

.jq_form button[type="submit"] {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.jq_form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.jq_form .privacy-note {
    font-size: 0.8125rem;
    color: var(--clr-text-muted-light);
    text-align: center;
}

.jq_form .privacy-note a {
    color: var(--clr-gold);
}

/* --------------------------------------------------------------------------
   Contact Section (CTC)
   -------------------------------------------------------------------------- */
.ctc {
    padding: var(--space-3xl) 0;
    background: var(--clr-dark-alt);
}

.ctc__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.ctc__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.ctc__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.ctc__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--clr-text-light);
}

.ctc__desc {
    color: var(--clr-text-muted-light);
    margin-top: var(--space-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ctc__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.ctc__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ctc__info-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.ctc__info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.1);
    border: 1px solid rgba(223, 185, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ctc__info-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.ctc__info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctc__info-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.ctc__info-value {
    font-weight: 600;
    color: var(--clr-text-light);
}

a.ctc__info-value:hover {
    color: var(--clr-gold);
}

/* CTC Form */
.ctc__form {
    background: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ctc__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.ctc__form-group {
    position: relative;
}

.ctc__form-input,
.ctc__form-textarea,
.ctc__form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--clr-dark-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--clr-text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--trans-fast);
}

.ctc__form-input::placeholder,
.ctc__form-textarea::placeholder {
    color: var(--clr-text-muted-light);
}

.ctc__form-input:focus,
.ctc__form-textarea:focus,
.ctc__form-select:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.ctc__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ctc__form-error {
    display: none;
    font-size: 0.8125rem;
    color: #ff6b6b;
    margin-top: 4px;
}

.ctc__form-error.visible {
    display: block;
}

.ctc__form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.ctc__form-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.ctc__form-btn img {
    filter: brightness(0);
}

.ctc__form-success {
    display: none;
    padding: var(--space-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: #22c55e;
    text-align: center;
    font-weight: 500;
}

.ctc__form-success.visible {
    display: block;
}

@media (max-width: 768px) {
    .ctc__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .ctc__form-row {
        grid-template-columns: 1fr;
    }

    .ctc__form {
        padding: var(--space-lg);
    }

    .ctc__info {
        gap: var(--space-sm);
    }

    .ctc__info-item {
        padding: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 480px) {
    .ctc__header {
        margin-bottom: var(--space-lg);
    }

    .ctc__title {
        font-size: 1.5rem;
    }

    .ctc__desc {
        font-size: 0.9375rem;
    }

    .ctc__form {
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .ctc__form-input,
    .ctc__form-textarea {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }

    .ctc__form-btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .ctc__info-icon {
        width: 40px;
        height: 40px;
    }

    .ctc__info-icon img {
        width: 20px;
        height: 20px;
    }

    .ctc__info-label {
        font-size: 0.75rem;
    }

    .ctc__info-value {
        font-size: 0.9375rem;
    }
}

@media (max-width: 375px) {
    .ctc__container {
        padding: 0 var(--space-sm);
    }

    .ctc__title {
        font-size: 1.25rem;
    }

    .ctc__form {
        padding: var(--space-sm);
    }

    .ctc__form-input,
    .ctc__form-textarea {
        padding: 10px 12px;
        font-size: 0.875rem;
    }

    .ctc__form-btn {
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .ctc__info-item {
        padding: var(--space-xs) var(--space-sm);
        gap: var(--space-sm);
    }

    .ctc__info-icon {
        width: 36px;
        height: 36px;
    }
}

/* --------------------------------------------------------------------------
   SEO Text Section (Light)
   -------------------------------------------------------------------------- */
.seo {
    padding: var(--space-3xl) 0;
    background: var(--clr-light);
}

.seo__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.seo__content {
    color: var(--clr-text-muted-dark);
    line-height: 1.8;
}

.seo__content h2 {
    font-size: 1.5rem;
    color: var(--clr-text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.seo__content h3 {
    font-size: 1.25rem;
    color: var(--clr-text-dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.seo__content p {
    margin-bottom: var(--space-md);
}

.seo__content strong {
    color: var(--clr-gold-dark);
}

.seo__content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.seo__content li {
    margin-bottom: var(--space-xs);
    position: relative;
}

.seo__content li::before {
    content: '•';
    color: var(--clr-gold);
    position: absolute;
    left: -16px;
}

.seo__content a {
    color: var(--clr-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--trans-fast);
}

.seo__content a:hover {
    color: var(--clr-gold-light);
    border-bottom-color: var(--clr-gold-light);
}

/* --------------------------------------------------------------------------
   Footer (Dark)
   -------------------------------------------------------------------------- */
.ftr {
    position: relative;
    background: var(--clr-dark);
    overflow: hidden;
}

.ftr__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(223, 185, 117, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ftr__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    position: relative;
}

/* CTA Bar */
.ftr__cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: var(--clr-dark-card);
    border: 1px solid rgba(223, 185, 117, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
}

.ftr__cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--clr-text-light);
}

.ftr__cta-text {
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
}

.ftr__cta-actions {
    display: flex;
    gap: var(--space-sm);
}

.ftr__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--trans-fast);
}

.ftr__cta-btn--phone {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: var(--clr-dark);
}

.ftr__cta-btn--phone img {
    filter: brightness(0);
}

.ftr__cta-btn--form {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-text-light);
}

.ftr__cta-btn--form img {
    filter: invert(1);
    opacity: 0.7;
}

.ftr__cta-btn:hover {
    transform: translateY(-2px);
}

/* Main Footer */
.ftr__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Brand */
.ftr__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ftr__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ftr__logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ftr__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.ftr__logo-text strong {
    font-family: var(--ff-heading);
    font-size: 1.125rem;
    color: var(--clr-text-light);
}

.ftr__logo-text span {
    font-size: 0.75rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ftr__desc {
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ftr__slogan {
    color: var(--clr-gold);
    font-weight: 600;
    font-style: italic;
}

.ftr__contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.ftr__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
    transition: color var(--trans-fast);
}

a.ftr__contact-item:hover {
    color: var(--clr-gold);
}

.ftr__contact-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--clr-dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftr__contact-icon img {
    filter: invert(1);
    opacity: 0.7;
}

/* Links */
.ftr__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.ftr__heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--clr-text-light);
}

.ftr__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.ftr__nav a {
    color: var(--clr-text-muted-light);
    font-size: 0.9375rem;
    transition: color var(--trans-fast);
}

.ftr__nav a:hover {
    color: var(--clr-gold);
}

/* Trust Badges */
.ftr__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ftr__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ftr__trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(223, 185, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftr__trust-icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(18%) saturate(797%) hue-rotate(356deg) brightness(91%) contrast(88%);
}

.ftr__trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ftr__trust-text strong {
    font-size: 0.9375rem;
    color: var(--clr-text-light);
}

.ftr__trust-text span {
    font-size: 0.8125rem;
    color: var(--clr-text-muted-light);
}

/* Regions */
.ftr__regions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ftr__regions-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.ftr__regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.ftr__region {
    padding: 6px 12px;
    background: var(--clr-dark-card);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    color: var(--clr-text-muted-light);
    transition: color var(--trans-fast), background var(--trans-fast);
}

.ftr__region:hover {
    color: var(--clr-gold);
    background: var(--clr-dark-elevated);
}

/* Bottom */
.ftr__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
}

.ftr__copyright {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
}

.ftr__legal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.ftr__legal a {
    font-size: 0.875rem;
    color: var(--clr-text-muted-light);
    transition: color var(--trans-fast);
}

.ftr__legal a:hover {
    color: var(--clr-gold);
}

.ftr__legal-sep {
    width: 4px;
    height: 4px;
    background: var(--clr-text-muted-light);
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Fixed Call Button
   -------------------------------------------------------------------------- */
.call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: transform var(--trans-fast);
}

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

.call-btn img {
    filter: brightness(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(223, 185, 117, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(223, 185, 117, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(223, 185, 117, 0);
    }
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */

/* Large screens */
@media (max-width: 1200px) {
    .svc__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .svc__card--featured {
        grid-column: span 3;
        grid-row: span 1;
    }

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

    .proc__timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .proc__timeline::before {
        display: none;
    }

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

    .guar__cert {
        max-width: 350px;
        margin: 0 auto;
    }

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

/* Tablets landscape */
@media (max-width: 1024px) {
    .hdr__nav {
        display: none;
    }

    .hdr__phone {
        display: none;
    }

    .hdr__burger {
        display: flex;
    }

    .hero {
        min-height: 550px;
    }

    .hero__title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero__stats {
        gap: var(--space-lg);
    }

    .trust__container {
        gap: var(--space-md);
    }

    .svc__layout {
        grid-template-columns: 280px 1fr;
        gap: var(--space-lg);
    }

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

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

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

    .bfa__item:nth-child(3) {
        grid-column: span 2;
    }

    .geo__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .geo__content {
        order: 1;
    }

    .geo__map {
        order: 2;
    }

    .geo__stats {
        justify-content: center;
    }

    .geo__stat {
        text-align: center;
    }

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

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

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

    .abt__img {
        order: -1;
    }

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

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

    .ftr__main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .ftr__cta-bar {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__indicators {
        right: 20px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero__controls {
        bottom: var(--space-lg);
    }

    .trust__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .trust__item {
        justify-content: flex-start;
    }


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

    .svc__sticky {
        position: relative;
        top: 0;
    }

    .svc__featured {
        display: none;
    }

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

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

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

    .geo__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .geo__stat-num {
        font-size: 2rem;
    }

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

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

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

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

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

    .ftr__links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

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

    .ftr__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
        --space-2xl: 2.5rem;
    }

    .hero {
        min-height: 450px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__btn {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

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

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

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

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

    .bfa__item:nth-child(3) {
        grid-column: span 1;
    }

    .bfa__handle-btn {
        width: 38px;
        height: 38px;
    }

    .bfa__item-info {
        padding: var(--space-xs) var(--space-sm);
    }

    .bfa__item-title {
        font-size: 0.8125rem;
    }

    .bfa__item-type {
        font-size: 0.75rem;
    }

    .bfa__label-before,
    .bfa__label-after {
        padding: 4px 10px;
        font-size: 0.6875rem;
    }

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

    .geo__districts {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .geo__district {
        padding: 10px 6px;
    }

    .geo__district-code {
        font-size: 1.125rem;
    }

    .geo__district-name {
        font-size: 0.6875rem;
    }

    .geo__cta {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

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

    .ftr__heading {
        font-size: 0.8125rem;
        margin-bottom: var(--space-xs);
    }

    .ftr__nav a {
        font-size: 0.75rem;
    }

    .ftr__cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ftr__cta-btn {
        justify-content: center;
    }

    .call-btn {
        width: 55px;
        height: 55px;
        bottom: 16px;
        right: 16px;
    }
}

/* Small mobile (iPhone SE) */
@media (max-width: 375px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
    }

    .hdr__container {
        padding: 0 var(--space-sm);
    }

    .hero__container {
        padding: 0 var(--space-sm);
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .trust__container {
        gap: var(--space-sm);
    }

    .trust__icon {
        width: 40px;
        height: 40px;
    }

    .trust__icon img {
        width: 24px;
        height: 24px;
    }

    .trust__text strong {
        font-size: 1rem;
    }

    .trust__text span {
        font-size: 0.75rem;
    }

    .ftr__container {
        padding: var(--space-lg) var(--space-sm);
    }

    .faq__question {
        padding: var(--space-sm);
        font-size: 0.9375rem;
    }

    .calc__box {
        padding: var(--space-md);
    }

    .calc__result-value {
        font-size: 2rem;
    }

    .rev__card {
        padding: var(--space-md);
    }

    .seo__content h2 {
        font-size: 1.25rem;
    }

    .seo__content h3 {
        font-size: 1.125rem;
    }

    .prc-tbl__container {
        padding: 0 var(--space-sm);
    }

    .prc-tbl__row {
        padding: var(--space-sm);
    }

    .prc-tbl__cell {
        font-size: 0.8125rem;
    }

    .prc-tbl__cell:first-child {
        font-size: 0.9375rem;
    }

    .prc-tbl__cell--price {
        font-size: 1rem;
    }

    .prc-tbl__note {
        font-size: 0.75rem;
        padding: 0 var(--space-xs);
    }
}

/* --------------------------------------------------------------------------
   FAQ Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .faq__container {
        max-width: 100%;
    }

    .faq__question {
        font-size: 1rem;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .faq__question {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9375rem;
    }

    .faq__answer-inner,
    .faq__answer p {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.9375rem;
    }

    .faq__title {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Calculator Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .calc__container {
        max-width: 100%;
    }

    .calc__box {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .calc__box {
        padding: var(--space-md);
    }

    .calc__result {
        padding: var(--space-md);
    }

    .calc__result-value {
        font-size: 2rem;
    }

    .calc__title {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   SEO Text Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .seo__container {
        max-width: 100%;
    }

    .seo__content {
        line-height: 1.7;
    }

    .seo__content h2 {
        font-size: 1.375rem;
        margin-top: var(--space-lg);
    }

    .seo__content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .seo__content {
        font-size: 0.9375rem;
    }

    .seo__content h2 {
        font-size: 1.25rem;
    }

    .seo__content h3 {
        font-size: 1.0625rem;
    }

    .seo__content ul {
        padding-left: var(--space-md);
    }
}

/* --------------------------------------------------------------------------
   Reviews Responsive (additional breakpoints)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .rev__card {
        padding: var(--space-md);
    }

    .rev__card-stars {
        font-size: 1.125rem;
    }

    .rev__card-text {
        font-size: 0.9375rem;
    }

    .rev__card-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .rev__title {
        font-size: 1.5rem;
    }

    .rev__btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Header - Hide topbar and CTA button on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .hdr__topbar {
        display: none;
    }

    .hdr__btn {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .hdr,
    .hero__controls,
    .call-btn,
    .ftr__cta-bar {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        height: auto;
        min-height: 0;
    }
}
