/* ===================================================
   Onexpertis - Minimalist Black & White Design System
   Font: Inter | Colors: Strictly B&W
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #111111;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --radius: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: 200ms ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.7;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--gray-50);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: var(--gray-400);
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .grid { gap: 1.5rem; }
    h1 { font-size: 2rem; line-height: 1.2; }
    h2 { font-size: 1.625rem; line-height: 1.2; }
    .section { padding: 3rem 0; }
    .section--alt { padding: 3rem 0; }
}

/* --- Navigation --- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.nav__logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--black);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
    position: relative;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--black);
    opacity: 1;
}

.nav__links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--black);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--black);
}

/* Mobile nav */
.nav__mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
    z-index: 99;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.nav__mobile.is-open {
    display: block;
}

.nav__mobile a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.nav__mobile a.active {
    color: var(--black);
    font-weight: 600;
}

/* Desktop dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__dropdown-arrow {
    font-size: 1.125rem !important;
    transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-arrow {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 300px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 110;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav__dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}

.nav__dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--black);
    opacity: 1;
}

.nav__dropdown-menu a .material-icons-outlined {
    font-size: 1.125rem;
    width: 1.25rem;
    text-align: center;
    color: var(--gray-400);
    flex-shrink: 0;
}

.nav__dropdown-menu a:hover .material-icons-outlined {
    color: var(--black);
}

.nav__dropdown-all {
    border-top: 1px solid var(--gray-100);
    margin-top: 0.25rem;
    padding-top: 0.625rem !important;
    font-weight: 600 !important;
    color: var(--black) !important;
}

/* Mega menu for products */
.nav__mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 900px;
    max-width: 90vw;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 110;
    max-height: 80vh;
    overflow-y: auto;
}

.nav__dropdown:hover .nav__mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.mega-menu__category {
    margin-bottom: 1.5rem;
}

.mega-menu__category:last-child {
    margin-bottom: 0;
}

.mega-menu__category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.mega-menu__category-header .material-icons-outlined {
    font-size: 1.25rem;
    color: var(--black);
}

.mega-menu__category-header h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}

.mega-menu__products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.mega-menu__product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background var(--transition);
    text-decoration: none;
}

.mega-menu__product:hover {
    background: var(--gray-50);
}

.mega-menu__product-image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-menu__product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.mega-menu__product-image .material-icons-outlined {
    font-size: 1.5rem;
    color: var(--gray-300);
}

.mega-menu__product-info {
    flex: 1;
    min-width: 0;
}

.mega-menu__product-brand {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    margin-bottom: 0.25rem;
}

.mega-menu__product-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.3;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mega-menu__product:hover .mega-menu__product-name {
    color: var(--black);
}

.mega-menu__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--black);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.mega-menu__view-all:hover {
    background: var(--gray-200);
}

.mega-menu__view-all .material-icons-outlined {
    font-size: 1rem;
}

/* Mega menu responsive */
@media (max-width: 1024px) {
    .nav__mega-menu {
        width: 700px;
    }
    .mega-menu__products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__mega-menu {
        display: none;
    }
}

/* Mobile dropdown */
.nav__mobile-dropdown {
    border-bottom: 1px solid var(--gray-100);
}

.nav__mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.nav__mobile-dropdown-toggle.active {
    color: var(--black);
    font-weight: 600;
}

.nav__mobile-dropdown-toggle .material-icons-outlined {
    font-size: 1.25rem;
    transition: transform var(--transition);
}

.nav__mobile-dropdown.is-open .nav__mobile-dropdown-toggle .material-icons-outlined {
    transform: rotate(180deg);
}

.nav__mobile-dropdown-menu {
    display: none;
    padding: 0 0 0.5rem 1rem;
}

.nav__mobile-dropdown.is-open .nav__mobile-dropdown-menu {
    display: block;
}

.nav__mobile-dropdown-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-500);
    border-bottom: none;
}

.nav__mobile-dropdown-menu a:hover {
    color: var(--black);
    opacity: 1;
}

/* Nested mobile dropdown for products */
.nav__mobile-nested {
    margin-top: 0.25rem;
    border-bottom: 1px solid var(--gray-50);
}

.nav__mobile-nested:last-child {
    border-bottom: none;
}

.nav__mobile-nested-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
}

.nav__mobile-nested-toggle .material-icons-outlined {
    font-size: 1rem;
    transition: transform var(--transition);
}

.nav__mobile-nested.is-open .nav__mobile-nested-toggle .material-icons-outlined {
    transform: rotate(180deg);
}

.nav__mobile-nested-menu {
    display: none;
    padding-left: 0.75rem;
    padding-bottom: 0.5rem;
}

.nav__mobile-nested.is-open .nav__mobile-nested-menu {
    display: block;
}

.nav__mobile-nested-menu a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.4;
    border-bottom: none;
}

.nav__mobile-nested-menu a:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .nav__links, .nav__cta .btn { display: none; }
    .nav__toggle { display: block; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn--primary:hover {
    background: var(--gray-800);
    opacity: 1;
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--gray-300);
}

.btn--outline:hover {
    border-color: var(--black);
    opacity: 1;
}

.btn--white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--gray-100);
    opacity: 1;
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.1);
    opacity: 1;
}

.btn--block {
    width: 100%;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --- Hero --- */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 720px;
}

.hero p {
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Stats Bar --- */
.stats {
    background: var(--gray-900);
    border-bottom: 1px solid var(--gray-800);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stats__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Cards --- */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 300ms ease;
    position: relative;
}

.card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card__icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.card:hover .card__icon {
    background: var(--black);
    color: var(--white);
}

.card h3 {
    margin-bottom: 0.625rem;
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card__link:hover {
    opacity: 1;
    gap: 0.5rem;
}

/* --- Section Headers --- */
.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section__header p {
    margin-top: 0.75rem;
    font-size: 1.0625rem;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section__label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: currentColor;
}

/* --- About Split --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-split__img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-split__img::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 5rem;
    height: 5rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-split__content h2 {
    margin-bottom: 1.5rem;
}

.about-split__content p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--black);
}

@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
}

/* --- Partners --- */
.partners {
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.partners__label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.partners__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partners__logos span {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.partners__logos span:hover {
    color: var(--black);
}

/* --- Testimonials --- */
.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.testimonial__stars {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.testimonial__text {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.testimonial__name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--black);
}

.testimonial__role {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 2rem;
}

/* --- Contact Form --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: border-color var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- Contact Info Cards --- */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-card:last-child {
    border-bottom: none;
}

.contact-card__icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9375rem;
}

/* --- Booking Form Services Grid --- */
.service-checkbox {
    position: relative;
    cursor: pointer;
}

.service-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-checkbox__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition);
    text-align: center;
}

.service-checkbox input:checked + .service-checkbox__box {
    border-color: var(--black);
    box-shadow: 0 0 0 1px var(--black);
    background: var(--gray-50);
}

.service-checkbox__box:hover {
    border-color: var(--gray-400);
}

.service-checkbox__box .material-icons-outlined {
    font-size: 1.5rem;
    color: var(--black);
}

.service-checkbox__box span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* --- Blog --- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 300ms ease;
}

.blog-card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card__title a {
    color: var(--black);
}

.blog-card__title a:hover {
    opacity: 1;
    text-decoration: underline;
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Blog Post Content */
.post-content {
    max-width: 720px;
    margin: 0 auto;
}

.post-content h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.625rem;
}

.post-content h3 {
    margin: 2rem 0 0.75rem;
    font-size: 1.25rem;
}

.post-content p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.post-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.post-header h1 {
    margin-bottom: 1rem;
}

.post-header__meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.625rem;
}

.footer__links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    opacity: 1;
}

.footer__social {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__social a {
    color: var(--gray-400);
    font-size: 0.8125rem;
    font-weight: 500;
}

.footer__social a:hover {
    color: var(--white);
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.footer__bottom a {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.footer__bottom a:hover {
    color: var(--white);
    opacity: 1;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__credit {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__credit p {
    color: var(--gray-600);
    font-size: 0.75rem;
}

.footer__credit a {
    color: var(--gray-400);
    text-decoration: underline;
}

.footer__credit a:hover {
    color: var(--white);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

/* --- Sidebar / Support Card --- */
.sidebar-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.sidebar-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.sidebar-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.sidebar-card__item .material-icons-outlined {
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.sidebar-card__item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-card__item small {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    display: block;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 1.5rem;
}

.breadcrumbs a {
    color: var(--gray-400);
}

.breadcrumbs a:hover {
    color: var(--white);
    opacity: 1;
}

.breadcrumbs__current {
    color: var(--white);
    font-weight: 500;
}

/* --- Mission/Vision Cards --- */
.mv-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
}

.mv-card--dark {
    background: var(--black);
    color: var(--white);
}

.mv-card--dark h3 { color: var(--white); }
.mv-card--dark p { color: var(--gray-400); }

.mv-card--light {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.mv-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-card--dark .mv-card__icon {
    background: var(--gray-800);
    color: var(--white);
}

.mv-card--light .mv-card__icon {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.mv-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

/* --- Team --- */
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 300ms ease;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-card__img {
    aspect-ratio: 1;
    background: var(--gray-100);
    overflow: hidden;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.team-card:hover .team-card__img img {
    transform: scale(1.05);
}

.team-card__info {
    padding: 1.25rem;
}

.team-card__name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
}

.team-card__role {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

.team-card__bio {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

/* --- Form Section Number Badges --- */
.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.form-section-badge {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
}

/* --- Booking Page Layout --- */
.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-layout form {
        padding: 1.25rem;
    }

    .booking-layout .grid--4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .service-checkbox__box {
        padding: 0.75rem 0.5rem;
        gap: 0.375rem;
    }

    .service-checkbox__box .material-icons-outlined {
        font-size: 1.25rem;
    }

    .service-checkbox__box span:last-child {
        font-size: 0.6875rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-layout .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-layout form {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .form-section-title {
        font-size: 0.75rem;
    }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Service Detail Page --- */
.service-hero__icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-hero__icon .material-icons-outlined {
    font-size: 2rem;
    color: var(--white);
}

.service-sections {
    max-width: 840px;
    margin: 0 auto;
}

.service-section {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-section:last-child {
    border-bottom: none;
}

.service-section__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-200);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    width: 3.5rem;
    line-height: 1;
}

.service-section__content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-section__content p {
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 640px) {
    .service-section {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 0;
    }
    .service-section__number {
        font-size: 1.75rem;
    }
}

/* --- Card Features List --- */
.card__features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.card__features li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 6px;
    height: 6px;
    background: var(--gray-300);
    border-radius: 50%;
}

.card:hover .card__features li::before {
    background: var(--black);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 300ms ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    opacity: 1;
}

.whatsapp-float svg {
    transition: transform 300ms ease;
}

.whatsapp-float:hover svg {
    transform: rotate(15deg);
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}

/* --- Product Detail Responsive --- */
@media (max-width: 768px) {
    .product-detail-grid { grid-template-columns: 1fr !important; }
}

/* --- Product Filters --- */
.product-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.filter-tab:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: var(--shadow);
}

.filter-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.filter-tab .material-icons-outlined {
    font-size: 1.125rem;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.375rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-tab.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.filter-tab:hover .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

@media (max-width: 768px) {
    .product-filters {
        gap: 0.375rem;
        padding: 0.75rem;
        margin-left: 0;
        margin-right: 0;
    }
    .filter-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    .filter-tab .material-icons-outlined {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .product-filters {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .product-filters::-webkit-scrollbar {
        display: none;
    }
    .filter-tab {
        flex-shrink: 0;
    }
}

/* --- Product Cards --- */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--gray-300);
}

.product-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 300ms ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__image--placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

.product-card__image--placeholder .material-icons-outlined {
    font-size: 4rem;
    color: var(--gray-300);
}

.product-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.625rem;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    margin-bottom: 0.625rem;
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.product-card__desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: gap 200ms ease;
}

.product-card__link:hover {
    gap: 0.5rem;
}

.product-card__link .material-icons-outlined {
    font-size: 1rem;
}

/* Service products section */
.service-products {
    padding: 4rem 0;
    background: var(--gray-50);
}

.service-products__header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-products__header h2 {
    margin-bottom: 0.75rem;
}

.service-products__header p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .product-card__image {
        height: 180px;
    }
    .product-card__body {
        padding: 1rem;
    }
    .service-products {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .product-card__image {
        height: 160px;
    }
    .product-card__body {
        padding: 0.875rem;
    }
    .product-card__title {
        font-size: 1rem;
    }
    .product-card__desc {
        font-size: 0.8125rem;
    }
    .service-products {
        padding: 2rem 0;
    }
    .service-products__header {
        margin-bottom: 2rem;
    }
}

.product-category-section {
    margin-bottom: 4rem;
}

.product-category-section:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-category-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .product-category-section {
        margin-bottom: 2rem;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in up animation */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up[data-delay="100"] { animation-delay: 0.1s; }
.fade-in-up[data-delay="200"] { animation-delay: 0.2s; }
.fade-in-up[data-delay="300"] { animation-delay: 0.3s; }

/* Intersection Observer controlled animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced card hover */
.card {
    transition: transform 300ms ease, box-shadow 300ms ease;
    will-change: transform;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card__icon {
    transition: all 300ms ease;
}

.card:hover .card__icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--black);
}

.card:hover .card__icon .material-icons-outlined {
    color: var(--white);
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

/* Link underline animation */
.card__link {
    position: relative;
}

.card__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 300ms ease;
}

.card__link:hover::after {
    width: 100%;
}

/* Stats animation */
.stats__number {
    transition: transform 300ms ease;
}

.stats__item:hover .stats__number {
    transform: scale(1.1);
}

/* Hero staggered animation */
.hero h1 {
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__actions {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

@media (max-width: 640px) {
    .hero {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* --- Service Pages Mobile Optimization --- */
@media (max-width: 768px) {
    /* Service hero icons */
    .service-hero__icon {
        width: 70px !important;
        height: 70px !important;
    }

    .service-hero__icon .material-icons-outlined {
        font-size: 2rem !important;
    }

    /* Stats grid - single column on mobile */
    .stats__grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .stats__item {
        padding: 1rem !important;
    }

    .stats__label {
        font-size: 0.8125rem !important;
    }

    /* Service sections */
    .service-section {
        padding: 1.5rem !important;
    }

    .service-section__number {
        font-size: 2.5rem !important;
        margin-bottom: 0.75rem;
    }

    /* Why Choose section - center on mobile */
    .card[style*="text-align: center"] > div[style*="width: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }

    .card[style*="text-align: center"] > div[style*="width: 60px"] .material-icons-outlined {
        font-size: 1.5rem !important;
    }

    /* Industries icons - smaller on mobile */
    .grid--4 > div[style*="text-align: center"] .material-icons-outlined {
        font-size: 2.25rem !important;
    }

    .grid--4 > div[style*="text-align: center"] {
        padding: 1rem !important;
    }

    /* How It Works - numbered steps */
    .grid--4 > div[style*="position: relative"] > div[style*="width: 50px"] {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }

    /* Service Areas cards */
    .card .material-icons-outlined[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    /* FAQs */
    .card h3[style*="font-size: 1rem"] {
        font-size: 0.9375rem !important;
    }

    .card h3 .material-icons-outlined[style*="font-size: 1.25rem"] {
        font-size: 1.125rem !important;
    }

    /* Section headers */
    .section__header {
        max-width: 100%;
        padding: 0 1rem;
    }

    .section__header h2 {
        font-size: 1.5rem !important;
    }

    .section__header p {
        font-size: 0.9375rem !important;
    }

    /* CTA banner */
    .cta-banner h2 {
        font-size: 1.5rem !important;
    }

    .cta-banner p {
        font-size: 0.9375rem !important;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 0.8125rem !important;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - further optimizations */
    .service-hero__icon {
        width: 60px !important;
        height: 60px !important;
    }

    .service-hero__icon .material-icons-outlined {
        font-size: 1.75rem !important;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    /* Reduce padding on very small screens */
    .section {
        padding: 2rem 0 !important;
    }

    .section--alt {
        padding: 2rem 0 !important;
    }

    .container {
        padding: 0 1rem;
    }

    /* Card spacing */
    .card {
        padding: 1.25rem !important;
    }

    /* Grid gaps */
    .grid {
        gap: 1rem !important;
    }

    /* Industry icons - even smaller */
    .grid--4 > div[style*="text-align: center"] .material-icons-outlined {
        font-size: 2rem !important;
    }

    .grid--4 > div[style*="text-align: center"] h4 {
        font-size: 0.875rem !important;
    }
}
