:root {
    /* Colors */
    --primary: #cc1e24;
    --primary-hover: #b01a1f;
    --primary-light: rgba(204, 30, 36, 0.1);
    --primary-shadow: rgba(204, 30, 36, 0.2);
    --primary-shadow-lg: rgba(204, 30, 36, 0.4);
    
    --background-light: #f8f6f6;
    --background-dark: #211112;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --white: #ffffff;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-90: rgba(255, 255, 255, 0.9);

    /* Fonts */
    --font-display: 'Inter', sans-serif;

    /* Border Radius */
    --radius-default: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    background-color: var(--background-light);
    color: var(--slate-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* Layout Containers */
.container {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--primary-light);
}

.dark .header {
    background-color: rgba(33, 17, 18, 0.9);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem; /* h-20 */
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-default);
}

.logo-text-ilp {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text-kaz {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

.nav-link:hover {
    color: var(--primary);
    transition: color 0.2s;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: none;
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .phone-link {
        display: block;
    }
}

.btn-consult {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px var(--primary-shadow);
}

.btn-consult:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 17, 18, 0.9) 0%, rgba(33, 17, 18, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-max-width {
    max-width: 48rem; /* max-w-3xl */
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background-color: var(--white-10);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--white-20);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.flags {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 2.5rem;
    line-height: 1.625;
    max-width: 42rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-btns {
        flex-direction: row;
    }
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.2s;
    box-shadow: 0 25px 50px -12px var(--primary-shadow-lg);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--white-10);
    backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid var(--white-20);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.125rem;
    transition: background-color 0.2s;
}

.btn-outline:hover {
    background-color: var(--white-20);
}

/* Services Section */
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-white { background-color: var(--white); }
.dark .bg-dark { background-color: var(--background-dark); }
.bg-light { background-color: var(--background-light); }
.dark .bg-dark-50 { background-color: rgba(33, 17, 18, 0.5); }

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

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
}

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

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-2xl);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.dark .service-card {
    background-color: var(--white-05);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box .material-icons {
    color: var(--primary);
    font-size: 1.875rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--slate-600);
    line-height: 1.625;
}

.dark .card-text {
    color: var(--slate-400);
}

/* Calculator Section */
.calc-container {
    background-color: var(--white);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .calc-container {
        flex-direction: row;
    }
}

.dark .calc-container {
    background-color: var(--white-05);
}

.calc-main {
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .calc-main {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .calc-main {
        width: 66.666667%;
    }
}

.calc-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.calc-group {
    margin-bottom: 2rem;
}

.calc-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.calc-select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--slate-200);
    background-color: var(--white);
    font-family: inherit;
    font-weight: 600;
    color: var(--slate-900);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    transition: all 0.2s;
    cursor: pointer;
}

.dark .calc-select {
    background-color: var(--slate-800);
    border-color: var(--slate-700);
    color: var(--white);
}

.calc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-shadow);
}

.calc-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checkbox-group {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: all 0.2s;
    user-select: none;
}

.dark .checkbox-item {
    border-color: var(--slate-700);
    background-color: var(--slate-800);
}

.checkbox-item:hover {
    border-color: var(--primary-hover);
    background-color: var(--primary-light);
}

.checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--slate-300);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.checkbox-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-input:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.875rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

.dark .checkbox-label {
    color: var(--slate-300);
}

/* Old range slider styles removed */


.calc-sidebar {
    background-color: var(--primary);
    padding: 2.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .calc-sidebar {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .calc-sidebar {
        width: 33.333333%;
    }
}

.calc-bg-text {
    color: rgba(204, 30, 36, 0.2);
    font-size: 4.5rem;
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    user-select: none;
}

.calc-sidebar-content {
    position: relative;
    z-index: 10;
}

.calc-sidebar-label {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.calc-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.calc-list {
    list-style: none;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.calc-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calc-list .material-icons {
    font-size: 0.875rem;
}

.btn-sidebar {
    width: 100%;
    background-color: var(--white);
    color: var(--primary);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.2s;
}

.btn-sidebar:hover {
    box-shadow: var(--shadow-2xl);
}

/* Comparison Section */
.compare-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

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

.compare-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.compare-desc {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
}

.dark .compare-desc {
    color: var(--slate-400);
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-xl);
    transition: background-color 0.2s;
}

.feature-item:hover {
    background-color: var(--background-light);
}

.dark .feature-item:hover {
    background-color: var(--white-05);
}

.feature-item .material-icons {
    color: var(--primary);
    margin-top: 0.25rem;
}

.feature-info h4 {
    font-weight: 700;
}

.feature-info p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.compare-visual {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-3xl);
    border: 1px solid var(--slate-200);
}

.dark .compare-visual {
    background-color: var(--white-05);
    border-color: var(--white-10);
}

.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 16rem;
    gap: 2rem;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-bar {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.bar-label {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    white-space: nowrap;
}

.bar-name {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.025em;
}

.bar-staff {
    background-color: var(--slate-300);
    height: 100%;
}

.dark .bar-staff {
    background-color: var(--slate-700);
}

.bar-ilp {
    background-color: var(--primary);
    height: 33.333333%;
}

.bar-ilp .bar-label {
    color: var(--primary);
}

.compare-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
    text-align: center;
}

.dark .compare-footer {
    border-color: var(--white-10);
}

.economy-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
}

.economy-val {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-top: 0.5rem;
}

.dark .economy-val {
    color: var(--white);
}

/* Stats Section */
.stats {
    background-color: var(--slate-900);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* Risk/Guarantee Section */
.risk-section {
    padding: 0;
    overflow: hidden;
}

.risk-banner {
    background-color: var(--primary);
    color: var(--white);
}

.risk-flex {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .risk-flex {
        flex-direction: row;
        align-items: center;
    }
}

.risk-content {
    padding: 3rem;
}

@media (min-width: 1024px) {
    .risk-content {
        width: 50%;
        padding: 6rem;
    }
}

.risk-content h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1;
}

@media (min-width: 768px) {
    .risk-content h2 {
        font-size: 3rem;
    }
}

.risk-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.625;
}

.contract-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--radius-2xl);
}

.contract-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contract-header .material-icons {
    opacity: 0.5;
    font-size: 1.25rem;
}

.contract-header span {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contract-text {
    font-style: italic;
    font-size: 1.125rem;
}

.risk-visual {
    position: relative;
}

@media (min-width: 1024px) {
    .risk-visual {
        width: 50%;
    }
}

.risk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.shield-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-circle {
    width: 12rem;
    height: 12rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-circle .material-icons {
    font-size: 4.5rem;
}

/* Footer Section */
.footer {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--background-light);
    border-top: 1px solid var(--slate-200);
}

.dark .footer {
    background-color: var(--background-dark);
    border-color: var(--white-05);
}

.cta-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-3xl);
    text-align: center;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 5rem;
    }
}

.dark .cta-box {
    background-color: var(--white-05);
    border-color: var(--white-10);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-desc {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.dark .cta-desc {
    color: var(--slate-400);
}

.cta-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-btns {
        flex-direction: row;
    }
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-2xl);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-contact:hover {
    transform: scale(1.05);
}

.btn-whatsapp-footer {
    background-color: #25D366;
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.2);
}

.btn-telegram {
    background-color: #0088cc;
    box-shadow: 0 20px 25px -5px rgba(0, 136, 204, 0.2);
}

.contact-svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.cta-tag {
    margin-top: 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
}

.footer-links-grid {
    margin-top: 6rem;
    display: grid;
    gap: 3rem;
    font-size: 0.875rem;
    color: var(--slate-500);
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-box {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-default);
}

.brand-text-ilp {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.brand-text-kaz {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: var(--slate-900);
}

.dark .brand-text-kaz {
    color: var(--white);
}

.footer-col-title {
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dark .footer-col-title {
    color: var(--white);
}

.footer-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-ul a:hover {
    color: var(--primary);
}

.address-text {
    line-height: 1.625;
}

.address-email {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Utilities */
.material-icons {
    font-family: 'Material Icons';
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
}

.dark-bg-black {
    background-color: #000;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Shadow utilities from original */
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Colors added to dark mode as needed */
.white-05 { background-color: rgba(255, 255, 255, 0.05); }
.white-10 { background-color: rgba(255, 255, 255, 0.1); }
.white-20 { background-color: rgba(255, 255, 255, 0.2); }
