/* ========================================
   BULFRO MONITECH - Main Stylesheet
   Converted from React/Tailwind to Vanilla CSS
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-secondary: #3b82f6;
    --color-accent: #06b6d4;
    --color-teal: #0ea5c9;
    --color-teal-light: #38bdf8;
    --color-green: #16803c;
    --color-green-light: #4ade80;
    --color-orange: #c2410c;
    --color-orange-light: #fb923c;
    --color-purple: #4f46e5;
    
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    --color-white: #ffffff;
    --color-black: #000000;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --container-max-width: 1280px;
    --container-padding: 1rem;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* Form Success Message */
.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.form-success p {
    margin: 0;
}

/* Utility Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hidden {
    display: none !important;
}

.text-white { color: var(--color-white); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-teal { color: var(--color-teal); }
.text-green { color: var(--color-green); }
.text-cyan { color: var(--color-primary); }
.text-blue { color: #2563eb; }
.text-orange { color: var(--color-orange); }

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   GLOBAL ICON STYLES - Fix oversized icons
   ======================================== */
svg {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* Icon size utility classes */
.icon-sm { width: 1rem !important; height: 1rem !important; min-width: 1rem !important; min-height: 1rem !important; }
.icon-md { width: 1.5rem !important; height: 1.5rem !important; min-width: 1.5rem !important; min-height: 1.5rem !important; }
.icon-lg { width: 2rem !important; height: 2rem !important; min-width: 2rem !important; min-height: 2rem !important; }
.icon-xl { width: 2.5rem !important; height: 2.5rem !important; min-width: 2.5rem !important; min-height: 2.5rem !important; }

/* Mobile menu button icons */
.mobile-menu-btn svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

/* Hero badge icon */
.badge-icon {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
}

/* Button icons */
.btn-icon {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
}

@media (min-width: 640px) {
    .btn-icon {
        width: 1.25rem !important;
        height: 1.25rem !important;
        max-width: 1.25rem !important;
        max-height: 1.25rem !important;
    }
}

/* Stat icons container */
.stat-icon {
    width: 2rem !important;
    height: 2rem !important;
    max-width: 2rem !important;
    max-height: 2rem !important;
}

@media (min-width: 640px) {
    .stat-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
        max-width: 2.5rem !important;
        max-height: 2.5rem !important;
    }
}

/* Stat icons SVG */
.stat-icon svg {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
}

@media (min-width: 640px) {
    .stat-icon svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
        max-width: 1.25rem !important;
        max-height: 1.25rem !important;
    }
}

/* About card icons container */
.about-card-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    max-width: 3.5rem !important;
    max-height: 3.5rem !important;
}

@media (min-width: 640px) {
    .about-card-icon {
        width: 4rem !important;
        height: 4rem !important;
        max-width: 4rem !important;
        max-height: 4rem !important;
    }
}

/* About card icons SVG */
.about-card-icon svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

@media (min-width: 640px) {
    .about-card-icon svg {
        width: 2rem !important;
        height: 2rem !important;
        max-width: 2rem !important;
        max-height: 2rem !important;
    }
}

/* Impact icons container */
.impact-icon {
    width: 3rem !important;
    height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
}

/* Impact icons SVG */
.impact-icon svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

/* Modal close icon */
.modal-close svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

/* Contact icons container */
.contact-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
    max-width: 2.5rem !important;
    max-height: 2.5rem !important;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 2.75rem !important;
        height: 2.75rem !important;
        max-width: 2.75rem !important;
        max-height: 2.75rem !important;
    }
}

/* Contact icons SVG */
.contact-icon svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

/* Scroll to top icon container */
.scroll-to-top {
    width: 3rem !important;
    height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
}

/* Scroll to top icon SVG */
.scroll-to-top svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

/* Scroll indicator */
.scroll-mouse {
    width: 2rem !important;
    height: 3rem !important;
    max-width: 2rem !important;
    max-height: 3rem !important;
}

.scroll-wheel {
    width: 0.375rem !important;
    height: 0.75rem !important;
    max-width: 0.375rem !important;
    max-height: 0.75rem !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0f766e, #2563eb);
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 0;
    }
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .about-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .about-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

@media (min-width: 640px) {
    .about-card-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

.about-card:hover .about-card-icon {
    transform: scale(1.1);
}

.about-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .about-card-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.icon-mission {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.icon-team {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
}

.icon-leader {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
}

.icon-innovation {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.about-card-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.625;
}

/* Impact Section */
.impact-section {
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .impact-section {
        margin-top: 5rem;
    }
}

.impact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .impact-header {
        margin-bottom: 3rem;
    }
}

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

@media (min-width: 640px) {
    .impact-grid {
        gap: 1.5rem;
    }
}

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

.impact-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .impact-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.impact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform var(--transition-base);
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.impact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.icon-green {
    background: #dcfce7;
    color: #22c55e;
}

.icon-cyan {
    background: #cffafe;
    color: #06b6d4;
}

.icon-orange {
    background: #ffedd5;
    color: #f97316;
}

.impact-number {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .impact-number {
        font-size: 2.25rem;
    }
}

.impact-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

@media (min-width: 640px) {
    .impact-label {
        font-size: 1rem;
    }
}

@media (min-width: 640px) {
    .about {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 6rem 0;
    }
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .about-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.about-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .about-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

@media (min-width: 640px) {
    .about-card-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

.about-card:hover .about-card-icon {
    transform: scale(1.1);
}

.about-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .about-card-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.icon-mission {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.icon-team {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
}

.icon-leader {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
}

.icon-innovation {
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.about-card-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.625;
}

/* Impact Section */
.impact-section {
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .impact-section {
        margin-top: 5rem;
    }
}

.impact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .impact-header {
        margin-bottom: 3rem;
    }
}

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

@media (min-width: 640px) {
    .impact-grid {
        gap: 1.5rem;
    }
}

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

.impact-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .impact-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.impact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform var(--transition-base);
}

.impact-card:hover .impact-icon {
    transform: scale(1.1);
}

.impact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.icon-green {
    background: #dcfce7;
    color: #22c55e;
}

.icon-cyan {
    background: #cffafe;
    color: #06b6d4;
}

.icon-orange {
    background: #ffedd5;
    color: #f97316;
}

.impact-number {
    font-size: 1.875rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .impact-number {
        font-size: 2.25rem;
    }
}

.impact-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

@media (min-width: 640px) {
    .impact-label {
        font-size: 1rem;
    }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: 4rem 0;
    background: linear-gradient(160deg, #f0f9ff 0%, #e8f5f0 100%);
}

@media (min-width: 640px) {
    .products {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .products {
        padding: 6rem 0;
    }
}

.live-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .live-stats {
        gap: 2rem;
    }
}

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

.stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0891b2;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-unit {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-gray-500);
}

@media (min-width: 640px) {
    .stat-unit {
        font-size: 0.875rem;
    }
}

.stat-description {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (min-width: 640px) {
    .stat-description {
        font-size: 0.875rem;
    }
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--color-gray-300);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.product-card {
    display: block;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
    text-align: left;
}

@media (min-width: 640px) {
    .product-card {
        border-radius: 1.5rem;
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.product-card-image-wrapper {
    position: relative;
    height: 10rem;
    background: var(--color-gray-50);
    overflow: hidden;
}

@media (min-width: 640px) {
    .product-card-image-wrapper {
        height: 12rem;
    }
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image {
    transform: scale(1.08);
}

.product-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
}

.badge-blue {
    color: #1d4ed8;
    background: #dbeafe;
}

.badge-green {
    color: #15803d;
    background: #dcfce7;
}

.product-card-content {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .product-card-content {
        padding: 1.5rem;
    }
}

.product-short-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
}

.product-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0891b2;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0891b2, #3b82f6);
    transition: width var(--transition-base);
}

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

/* Product Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.modal {
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    max-width: 48rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

@media (min-width: 640px) {
    .modal {
        border-radius: 1.5rem;
    }
}

.modal-header {
    position: relative;
}

.modal-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}

@media (min-width: 640px) {
    .modal-image {
        height: 16rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-white);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gray-700);
}

.modal-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
}

.modal-body {
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .modal-body {
        padding: 1.75rem;
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .modal-title {
        font-size: 1.75rem;
    }
}

.modal-description {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.modal-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .modal-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.modal-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.875rem;
}

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

.spec-key {
    color: var(--color-gray-500);
    font-weight: 500;
}

.spec-value {
    color: var(--color-gray-800);
    font-weight: 600;
    text-align: right;
    margin-left: 1rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-quote {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    border-radius: 9999px;
    transition: opacity var(--transition-fast);
}

.btn-quote:hover {
    opacity: 0.9;
}

.btn-close-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-600);
    background: transparent;
    border: 2px solid var(--color-gray-200);
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

.btn-close-secondary:hover {
    border-color: var(--color-gray-400);
}

/* ========================================
   TOP ACCENT LINE
   ======================================== */
.top-accent-line {
    height: 4px;
    background: linear-gradient(to right, var(--color-teal), var(--color-secondary));
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.navbar:not(.scrolled) .logo-bulfro,
.navbar.scrolled .logo-bulfro {
    color: var(--color-teal);
}

.navbar:not(.scrolled) .logo-monitech,
.navbar.scrolled .logo-monitech {
    color: var(--color-gray-900);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link,
.navbar.scrolled .nav-link {
    color: var(--color-gray-700);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: var(--color-teal);
}

.nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    background: rgba(6, 182, 212, 0.8);
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-teal);
}

.navbar.scrolled .nav-cta {
    background: var(--color-teal);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .nav-cta:hover {
    background: #0d9488;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all var(--transition-fast);
    color: var(--color-gray-700);
}

.mobile-menu-btn:hover {
    color: var(--color-teal);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    padding: 0.5rem 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled .mobile-menu {
    background: var(--color-white);
    border-top-color: var(--color-gray-200);
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-teal);
}

.mobile-nav-cta {
    display: block;
    width: calc(100% - 2rem);
    margin: 0.5rem 1rem;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    background: rgba(6, 182, 212, 0.9);
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
}

.mobile-nav-cta:hover {
    background: var(--color-teal);
}

/* ========================================
   CONTACT MAP
   ======================================== */
.contact-map {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 640px) {
    .contact-map {
        margin-top: 2rem;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

.navbar.scrolled .mobile-nav-cta {
    background: var(--color-teal);
}

.navbar.scrolled .mobile-nav-cta:hover {
    background: #0d9488;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 2rem 0;
    color: var(--color-white);
    background: linear-gradient(135deg, #00c6d4 0%, #3b82f6 40%, #4f46e5 100%);
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 3rem 0;
    }
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.25) 2px, transparent 0);
    background-size: 40px 40px;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    opacity: 0.8;
}

.hero-heading-container {
    margin-bottom: 1rem;
    max-width: 56rem;
}

@media (min-width: 640px) {
    .hero-heading-container {
        margin-bottom: 1.5rem;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    min-height: 2.4em;
}

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

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

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

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

.hero-text {
    display: inline-block;
    color: var(--color-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.hero-text.animating {
    opacity: 0;
    transform: translateY(1rem);
}

.hero-indicators {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    height: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    width: 2rem;
    background: #67e8f9;
}

.indicator:not(.active) {
    width: 6px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 42rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        margin-bottom: 5rem;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    border-radius: 9999px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .btn-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .btn-secondary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 1.5rem;
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.stat-card:last-child {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .stat-card:last-child {
        grid-column: span 1;
    }
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .stat-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.stat-icon svg {
    width: 1rem;
    height: 1rem;
    color: #a5f3fc;
}

@media (min-width: 640px) {
    .stat-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .scroll-indicator {
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .scroll-indicator {
        margin-top: 4rem;
    }
}

.scroll-mouse {
    width: 2rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.4; }
}

/* Scroll indicator */
.scroll-mouse {
    width: 2rem !important;
    height: 3rem !important;
    max-width: 2rem !important;
    max-height: 3rem !important;
}

.scroll-wheel {
    width: 0.375rem !important;
    height: 0.75rem !important;
    max-width: 0.375rem !important;
    max-height: 0.75rem !important;
}

/* ========================================
   SERVICES/INDUSTRIES ICONS - Fix oversized
   ======================================== */
.industry-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    max-width: 3.5rem !important;
    max-height: 3.5rem !important;
}

@media (min-width: 640px) {
    .industry-icon {
        width: 4rem !important;
        height: 4rem !important;
        max-width: 4rem !important;
        max-height: 4rem !important;
    }
}

.industry-icon svg {
    width: 1.75rem !important;
    height: 1.75rem !important;
    max-width: 1.75rem !important;
    max-height: 1.75rem !important;
}

@media (min-width: 640px) {
    .industry-icon svg {
        width: 2rem !important;
        height: 2rem !important;
        max-width: 2rem !important;
        max-height: 2rem !important;
    }
}

/* ========================================
   WHY CHOOSE US ICONS - Fix oversized
   ======================================== */
.why-icon {
    width: 3rem !important;
    height: 3rem !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
}

@media (min-width: 640px) {
    .why-icon {
        width: 3.5rem !important;
        height: 3.5rem !important;
        max-width: 3.5rem !important;
        max-height: 3.5rem !important;
    }
}

.why-icon svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

@media (min-width: 640px) {
    .why-icon svg {
        width: 1.75rem !important;
        height: 1.75rem !important;
        max-width: 1.75rem !important;
        max-height: 1.75rem !important;
    }
}

/* ========================================
   TESTIMONIALS STAR ICONS - Fix oversized
   ======================================== */
.star-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

@media (min-width: 640px) {
    .star-icon {
        width: 1.5rem !important;
        height: 1.5rem !important;
        max-width: 1.5rem !important;
        max-height: 1.5rem !important;
    }
}

/* ========================================
   FOOTER CONTACT ICONS - Fix oversized
   ======================================== */
.footer-contact-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

/* ========================================
   SOCIAL LINK ICONS - Fix oversized
   ======================================== */
.social-link svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
}

@media (min-width: 640px) {
    .social-link svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
        max-width: 1.5rem !important;
        max-height: 1.5rem !important;
    }
}

a.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.product-card:hover {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 640px) {
    .whatsapp-float {
        bottom: 6rem;
        right: 2rem;
        width: 4rem;
        height: 4rem;
    }
    
    .whatsapp-float svg {
        width: 2rem;
        height: 2rem;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

@media (min-width: 640px) {
    .scroll-to-top {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 2.5rem;
        right: 2.5rem;
    }
    
    .scroll-to-top svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0e7490;
    background: #cffafe;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-badge.badge-green {
    color: #15803d;
    background: #dcfce7;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #06b6d4;
    animation: pulse 2s infinite;
}

.badge-dot.dot-green {
    background: #22c55e;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-badge-small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .section-badge-small {
        font-size: 0.875rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

/* ========================================
   INDUSTRIES/SERVICES SECTION - Card Grid Styles
   ======================================== */
.industries {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 640px) {
    .industries {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .industries {
        padding: 6rem 0;
    }
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

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

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .industry-card {
        padding: 2rem;
        border-radius: 1.25rem;
    }
}

.industry-card:hover {
    transform: translateY(-8px);
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-teal);
}

.industry-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 0.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .industry-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
        margin-bottom: 1.25rem;
    }
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--color-teal), var(--color-secondary));
    color: var(--color-white);
}

.industry-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 640px) {
    .industry-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.industry-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .industry-title {
        font-size: 1.125rem;
    }
}

.industry-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* ========================================
   WHY CHOOSE US SECTION - Card Styles
   ======================================== */
.why-choose-us {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #00c6d4 0%, #3b82f6 50%, #4f46e5 100%);
    overflow: hidden;
}

@media (min-width: 640px) {
    .why-choose-us {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .why-choose-us {
        padding: 6rem 0;
    }
}

.why-choose-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.3) 2px, transparent 0);
    background-size: 40px 40px;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.why-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .why-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-card-wide {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .why-card-wide {
        grid-column: span 1;
    }
}

.why-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.why-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .why-number {
        font-size: 2rem;
    }
}

.why-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .why-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 1rem;
    }
}

.why-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 640px) {
    .why-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.why-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .why-card-title {
        font-size: 1.25rem;
    }
}

.why-card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-cta {
    margin-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .why-cta {
        margin-top: 3rem;
    }
}

.why-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .why-cta-text {
        font-size: 1.125rem;
    }
}

.why-cta-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

@media (min-width: 640px) {
    .why-cta-phone {
        font-size: 1.75rem;
    }
}

.why-cta-phone:hover {
    opacity: 0.8;
}

/* ========================================
   TESTIMONIALS SECTION - Card Styles
   ======================================== */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 640px) {
    .testimonials {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 6rem 0;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-100);
}

@media (min-width: 640px) {
    .testimonial-card {
        padding: 2rem;
        border-radius: 1.25rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    fill: currentColor;
}

@media (min-width: 640px) {
    .star-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

@media (min-width: 640px) {
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .testimonial-avatar {
        width: 3rem;
        height: 3rem;
    }
}

.testimonial-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.125rem;
}

@media (min-width: 640px) {
    .testimonial-info h4 {
        font-size: 1rem;
    }
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

@media (min-width: 640px) {
    .testimonial-role {
        font-size: 0.875rem;
    }
}

.testimonial-company {
    font-size: 0.75rem;
    color: var(--color-teal);
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, #0d9488, #2563eb);
    border-radius: 9999px;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .btn-testimonials {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-testimonials:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

@media (min-width: 640px) {
    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.testimonial-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .testimonial-stat-value {
        font-size: 1.875rem;
    }
}

.testimonial-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}
.contact {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 640px) {
    .contact {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 6rem 0;
    }
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-info {
        gap: 1.25rem;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

@media (min-width: 640px) {
    .contact-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d9488, #2563eb);
    border-radius: 0.75rem;
    color: var(--color-white);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
    }
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .contact-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .contact-label {
        font-size: 0.875rem;
    }
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

@media (min-width: 640px) {
    .contact-value {
        font-size: 1.125rem;
    }
}

/* Contact Backed Badge */
.contact-backed {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .contact-backed {
        padding: 1.25rem 1.5rem;
        border-radius: 1.25rem;
    }
}

.backed-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.backed-org {
    font-size: 0.875rem;
    color: var(--color-white);
    font-weight: 600;
    margin-top: 0.25rem;
}

.backed-name {
    font-size: 1rem;
    color: #38bdf8;
    font-weight: 700;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .backed-name {
        font-size: 1.125rem;
    }
}

/* Contact Form Container */
.contact-form-container {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
    .contact-form-container {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-form-container {
        padding: 2.5rem;
    }
}

/* Form Success Message */
.form-success {
    padding: 1rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-success p {
    color: #15803d;
    font-weight: 500;
    text-align: center;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-label .required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-900);
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: 0.75rem;
    outline: none;
    transition: all var(--transition-fast);
}

@media (min-width: 640px) {
    .form-input,
    .form-textarea {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-teal);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-gray-400);
}

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

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, #0d9488, #2563eb);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

@media (min-width: 640px) {
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

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

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinner-track {
    opacity: 0.25;
}

.spinner-path {
    opacity: 0.75;
}

