/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary: #0f172a; /* Deep Navy */
    --accent: #2563eb; /* Royal Blue */
    --accent-light: #eff6ff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px -5px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-white); color: var(--text-main); line-height: 1.6; overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITIES ===== */
.highlight { color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); }
.btn-primary:hover { background: #1d4ed8; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; width: 100%; padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.3); transition: var(--transition); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-heading); font-size: 24px; font-weight: 800; line-height: 1; letter-spacing: -0.5px; color: var(--primary); }
.brand-tagline { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); }

.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); transition: var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 12px 24px; background: var(--primary); color: #fff; border-radius: 50px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.nav-cta:hover { background: var(--accent); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); transform: translateY(-2px); }

.mobile-toggle { display: none; flex-direction: column; gap: 6px; width: 30px; z-index: 1001; }
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--primary); transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== PAGE CURTAIN ===== */
.page-curtain { position: fixed; inset: 0; z-index: 9999; background: var(--bg-white); display: flex; align-items: center; justify-content: center; transform: scaleY(0); transform-origin: top; pointer-events: none; }
.page-curtain.closing { transform: scaleY(1); transform-origin: top; transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.page-curtain.opening { transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.1s; }
.curtain-brand { color: var(--accent); font-size: 40px; opacity: 1; }

/* ===== SCROLL CONTAINER & SECTIONS ===== */
.scroll-container { height: 100vh; overflow: hidden; position: relative; }
.page-section { height: 100vh; width: 100%; position: absolute; top: 0; left: 0; overflow-y: auto; overflow-x: hidden; opacity: 0; visibility: hidden; padding: 100px 0 60px; background: var(--bg-white); display: flex; flex-direction: column; }
.page-section.active { opacity: 1; visibility: visible; }
.section-content { width: 100%; max-width: 1400px; margin: auto; position: relative; z-index: 2; padding: 0 80px 0 140px; }

/* ===== ANIMATIONS ===== */
[data-animate] { opacity: 0; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="zoom-in"] { transform: scale(0.9); }
.active [data-animate].animated { opacity: 1; transform: translate(0) scale(1); }

/* ===== HERO SECTION ===== */
.hero-section { background: radial-gradient(circle at 80% 20%, var(--accent-light) 0%, var(--bg-white) 60%); }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-left { flex: 1; max-width: 650px; }
.hero-badge { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; background: #fff; border: 1px solid var(--border); border-radius: 50px; margin-bottom: 30px; font-size: 13px; font-weight: 600; color: var(--primary); box-shadow: var(--shadow-sm); }
.badge-line { width: 30px; height: 2px; background: var(--accent); }
.hero-title { font-family: var(--font-heading); font-size: 72px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: var(--primary); letter-spacing: -2px; }
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; }
.stat-item { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; display: flex; align-items: center; }
.stat-number { color: var(--primary); }
.stat-suffix { color: var(--accent); }
.stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 50px; background: var(--border); }
.hero-right { flex: 1; position: relative; }
.hero-image-container { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img { width: 100%; height: auto; object-fit: cover; transform: scale(1.02); }
.floating-badge { position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 16px 24px; border-radius: 20px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14px; color: var(--primary); box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.5); }
.badge-1 { top: 40px; left: -30px; animation: floatBadge 6s ease-in-out infinite; }
.badge-2 { bottom: 40px; right: -30px; animation: floatBadge 6s ease-in-out infinite 3s; }
.floating-badge i { color: var(--accent); font-size: 20px; }

@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 60px; text-align: center; }
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.section-tag .tag-line { width: 40px; height: 2px; background: var(--accent); }
.section-title { font-family: var(--font-heading); font-size: 48px; font-weight: 800; line-height: 1.1; color: var(--primary); letter-spacing: -1px; margin-bottom: 20px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== PRODUCTS SECTION ===== */
.products-section { background: var(--bg-light); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 50px; }
.product-card { background: var(--bg-white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.product-image { position: relative; height: 220px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.product-card:hover .product-overlay { opacity: 1; }
.product-link { width: 50px; height: 50px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 20px; transform: translateY(20px); transition: var(--transition); }
.product-card:hover .product-link { transform: translateY(0); }
.product-info { padding: 24px; text-align: center; }
.product-info h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.product-info p { font-size: 14px; color: var(--text-muted); }
.products-cta { text-align: center; margin-top: 20px; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(5px); z-index: 10000; opacity: 0; visibility: hidden; display: flex; align-items: center; justify-content: center; transition: var(--transition); padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-white); width: 100%; max-width: 900px; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; max-height: 90vh; transform: scale(0.95); opacity: 0; transition: var(--transition); position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.modal-overlay.active .modal-content { transform: scale(1); opacity: 1; }
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(0,0,0,0.5); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; z-index: 10; transition: var(--transition); cursor: pointer; }
.modal-close:hover { background: var(--accent); transform: rotate(90deg); }
.modal-body { overflow-y: auto; padding: 40px; }
.modal-images { display: flex; gap: 15px; margin-bottom: 30px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.modal-images img { height: 300px; min-width: 400px; object-fit: cover; border-radius: 16px; scroll-snap-align: start; box-shadow: var(--shadow-sm); }
.modal-title { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.modal-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.modal-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 30px; }
.modal-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--primary); }
.modal-features li i { color: var(--accent); }

/* ===== SOLUTIONS SECTION ===== */
.solutions-section { background: var(--bg-white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 80px; }
.feature-card { background: var(--bg-light); padding: 40px 30px; border-radius: 24px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.feature-card:hover { background: #fff; border-color: var(--accent-light); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-icon { width: 70px; height: 70px; margin: 0 auto 24px; background: var(--accent-light); color: var(--accent); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; transform: scale(1.1) rotate(5deg); }
.feature-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

.industries-block { background: var(--primary); border-radius: 30px; padding: 60px; color: #fff; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.industries-block::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat; opacity: 0.5; }
.industries-title { font-family: var(--font-heading); font-size: 32px; font-weight: 700; margin-bottom: 40px; position: relative; z-index: 1; }
.industries-title .highlight { color: #fff; font-weight: 300; }
.industries-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.industry-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.industry-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; transition: var(--transition); border: 1px solid rgba(255,255,255,0.2); }
.industry-item:hover .industry-icon { background: #fff; color: var(--primary); transform: translateY(-5px) scale(1.1); }
.industry-item span { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%); }
.about-layout { display: flex; align-items: center; gap: 80px; }
.about-left { flex: 1; }
.about-image-wrap { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img { width: 100%; height: 600px; object-fit: cover; }
.about-experience-badge { position: absolute; bottom: 40px; right: -30px; background: var(--accent); color: #fff; padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3); border: 4px solid #fff; }
.exp-number { display: block; font-family: var(--font-heading); font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.exp-text { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-right { flex: 1; }
.about-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.about-highlights { display: flex; flex-direction: column; gap: 20px; margin: 30px 0 40px; }
.highlight-item { display: flex; align-items: flex-start; gap: 16px; }
.highlight-icon { width: 40px; height: 40px; background: var(--accent-light); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.highlight-item h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.highlight-item p { font-size: 14px; color: var(--text-muted); }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg-white); flex-direction: column; }
.contact-layout { display: flex; gap: 80px; align-items: stretch; margin-top: -20px; }
.contact-left { flex: 1; padding: 60px; background: var(--bg-light); border-radius: 30px; border: 1px solid var(--border); }
.contact-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 30px; margin-bottom: 50px; }
.contact-info-item { display: flex; align-items: center; gap: 20px; }
.info-icon { width: 50px; height: 50px; background: #fff; color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-sm); }
.info-label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span:not(.info-label) { font-size: 16px; font-weight: 600; color: var(--primary); transition: var(--transition); }
.contact-info-item a:hover { color: var(--accent); }
.contact-socials { display: flex; gap: 16px; }
.contact-socials a { width: 44px; height: 44px; background: #fff; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); transition: var(--transition); }
.contact-socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,99,235,0.2); }

.contact-right { flex: 1.2; display: flex; align-items: center; }
.contact-form { width: 100%; background: #fff; padding: 50px; border-radius: 30px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-row { display: flex; gap: 24px; margin-bottom: 24px; }
.form-group { flex: 1; position: relative; }
.form-group.full-width { width: 100%; margin-bottom: 30px; }
.form-group input, .form-group textarea { width: 100%; padding: 18px 20px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-main); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-light); }
.form-group label { position: absolute; left: 20px; top: 18px; font-size: 15px; color: var(--text-muted); transition: var(--transition); pointer-events: none; background: transparent; padding: 0 4px; }
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label { top: -10px; left: 16px; font-size: 12px; font-weight: 600; color: var(--accent); background: #fff; }
.form-group input::placeholder, .form-group textarea::placeholder { color: transparent; }

/* ===== FOOTER ===== */
.site-footer { width: 100%; max-width: 1400px; margin: 60px auto 0; padding: 30px 40px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-icon { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; }
.footer-brand .brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--primary); }
.footer-copy { font-size: 14px; color: var(--text-muted); }

/* ===== PAGE INDICATORS & SOCIAL SIDEBAR ===== */
.page-indicators { position: fixed; left: 20px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 20px; }
.indicator { display: flex; align-items: center; gap: 15px; opacity: 0.5; transition: var(--transition); }
.indicator-num { font-size: 12px; font-weight: 700; color: var(--text-muted); transition: var(--transition); }
.indicator::after { content: ''; width: 3px; height: 15px; background: var(--text-muted); border-radius: 3px; transition: var(--transition); }
.indicator:hover { opacity: 0.8; }
.indicator.active { opacity: 1; transform: translateX(5px); }
.indicator.active .indicator-num { color: var(--accent); font-size: 14px; }
.indicator.active::after { height: 30px; background: var(--accent); }

.social-sidebar { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 16px; }
.social-sidebar a { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.social-sidebar a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateX(-5px); box-shadow: 0 10px 20px rgba(37,99,235,0.2); }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 1001; transition: width 0.3s ease; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .section-content { padding: 0 30px; }
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .hero-left { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .hero-title { font-size: 56px; }
    .hero-stats { justify-content: center; }
    .hero-right { width: 100%; max-width: 700px; }
    .about-layout { flex-direction: column; text-align: center; gap: 50px; }
    .about-experience-badge { right: 20px; }
    .highlight-item { flex-direction: column; align-items: center; text-align: center; }
    .contact-layout { flex-direction: column; gap: 40px; margin-top: 0; }
    .contact-left { padding: 40px; width: 100%; }
    .contact-info-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .contact-socials { justify-content: center; }
    .page-indicators, .social-sidebar { display: none; }
    .page-section { padding: 100px 0 40px; }
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { gap: 20px; }
    .industry-item { width: calc(33.33% - 20px); }
    .modal-images img { min-width: 300px; height: 250px; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 24px; }
    .nav-links { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-white); flex-direction: column; justify-content: center; align-items: center; gap: 40px; transform: translateY(-100%); transition: var(--transition); opacity: 0; visibility: hidden; }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-link { font-size: 24px; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-title { font-size: 42px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-number { font-size: 32px; }
    .floating-badge { padding: 10px 16px; font-size: 12px; }
    .badge-1 { left: -10px; }
    .badge-2 { right: -10px; }
    
    .section-title { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .industry-item { width: calc(50% - 10px); }
    
    .about-img { height: 400px; }
    .about-experience-badge { padding: 16px; bottom: 20px; right: 20px; }
    .exp-number { font-size: 32px; }
    
    .contact-form { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 16px; margin-bottom: 16px; }
    .contact-info-list { flex-direction: column; align-items: flex-start; }
    .site-footer { flex-direction: column; gap: 20px; text-align: center; }
    .section-content { padding: 0 20px; }
    
    .modal-body { padding: 24px; }
    .modal-features { grid-template-columns: 1fr; }
    .modal-images img { min-width: 260px; height: 200px; }
    .modal-title { font-size: 24px; }
}
