@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --secondary: #0ea5e9;
    --accent: #10b981;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border: #f1f5f9;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html, body { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
#main-content, main { padding-top: 20px; }
body { background: white; color: var(--text-dark); line-height: 1.6; padding-top: 80px; font-size: 15px; }

/* Global Reset for images in containers */
.logo { font-size: 1.25rem; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

h1 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-weight: 700; line-height: 1.25; font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-weight: 700; line-height: 1.3; font-size: clamp(0.95rem, 1.5vw, 1.1rem); }
p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.65rem 1.6rem; border-radius: 8px; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; font-size: 0.875rem; gap: 0.4rem; white-space: nowrap; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,102,255,0.15); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ============ HEADER ============ */
header#main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border); transition: var(--transition);
    min-height: 80px; height: auto; display: flex; align-items: center; padding: 0;
}
header.sticky { box-shadow: 0 4px 20px rgba(0,0,0,0.06); background: rgba(255,255,255,1); }

.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 80px; width: 100%; padding: 0; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.logo img { display: block; object-fit: contain; }
.logo i { font-size: 1.4rem; }

/* Desktop Nav */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; margin: 0 auto; }
.nav-link { font-weight: 600; color: var(--text-dark); font-size: 0.875rem; padding: 0.4rem 0; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.dd-arrow { font-size: 0.6rem; margin-left: 3px; transition: 0.3s; }
.sub-arrow { font-size: 0.5rem; }

/* Desktop Dropdowns */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
    background: white; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border); padding: 0.5rem 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1); z-index: 100;
}
.dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 1.25rem; color: var(--text-dark); font-weight: 500; font-size: 0.875rem; transition: 0.2s;
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); padding-left: 1.5rem; }
.has-submenu { position: relative; }
.flyout-menu {
    position: absolute; top: -0.5rem; left: calc(100% + 4px); min-width: 220px;
    background: white; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border); padding: 0.5rem 0;
    opacity: 0; visibility: hidden; transform: translateX(8px);
    transition: all 0.3s ease; z-index: 101;
}
.has-submenu:hover > .flyout-menu { opacity: 1; visibility: visible; transform: translateX(0); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.header-demo-btn { border-radius: 50px; padding: 0.55rem 1.4rem; font-size: 0.8rem; }

.mobile-toggle, .offcanvas-toggle {
    width: 40px; height: 40px; background: var(--bg-light); border: 1px solid var(--border);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--text-dark); cursor: pointer; transition: var(--transition);
}
.mobile-toggle:hover, .offcanvas-toggle:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ============ MOBILE NAV SIDEBAR (Left) ============ */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(8px);
    z-index: 2000; opacity: 0; visibility: hidden; transition: 0.4s;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-sidebar {
    position: fixed; top: 0; left: -100%; width: 300px; max-width: 85vw; height: 100vh;
    background: white; z-index: 2001; transition: 0.5s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column; box-shadow: 8px 0 30px rgba(0,0,0,0.1);
}
.mobile-nav-sidebar.active { left: 0; }
.mobile-nav-header {
    padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border); background: var(--bg-light); flex-shrink: 0;
}
.mobile-nav-logo { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.mobile-nav-logo img { height: 32px; }
.mobile-nav-close {
    width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border);
    background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: 0.3s;
}
.mobile-nav-close:hover { background: #fee2e2; color: #ef4444; }
.mobile-nav-body { flex: 1; overflow-y: auto; padding: 0.75rem 1.25rem 1.5rem; }
.mobile-main-nav { display: flex; flex-direction: column; }
.mobile-main-nav > li { border-bottom: 1px solid var(--border); }
.mobile-main-nav > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 0; font-weight: 600; color: var(--text-dark); font-size: 0.95rem;
}
.mobile-main-nav > li > a i:first-child { margin-right: 8px; color: var(--primary); font-size: 0.8rem; width: 18px; text-align: center; }
.mobile-main-nav > li > a.active { color: var(--primary); }
.mobile-dd-arrow { font-size: 0.65rem; color: var(--text-muted); transition: 0.3s; }
.mobile-submenu { display: none; padding: 0 0 0.75rem 1.75rem; }
.mobile-submenu li a { display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.mobile-submenu li a:hover { color: var(--primary); padding-left: 6px; }
.mobile-nav-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ============ OFF-CANVAS SIDEBAR (Right) ============ */
.offcanvas-overlay {
    position: fixed; inset: 0; background: rgba(15,23,42,0.4); backdrop-filter: blur(8px);
    z-index: 2000; opacity: 0; visibility: hidden; transition: 0.4s;
}
.offcanvas-overlay.active { opacity: 1; visibility: visible; }
.offcanvas-sidebar {
    position: fixed; top: 0; right: -360px; width: 360px; max-width: 85vw; height: 100vh;
    background: white; z-index: 2001; box-shadow: -8px 0 24px rgba(0,0,0,0.05);
    transition: var(--transition); display: flex; flex-direction: column; overflow-y: auto;
}
.offcanvas-sidebar.active { right: 0; }
.offcanvas-header {
    padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border); background: var(--bg-light);
}
.offcanvas-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.offcanvas-body { padding: 1.25rem 1.5rem; }
.offcanvas-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin: 1.5rem 0 0.75rem; font-weight: 800; }
.offcanvas-title:first-child { margin-top: 0; }
.offcanvas-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.offcanvas-actions .btn { width: 100%; }
.offcanvas-links li { margin-bottom: 0.6rem; }
.offcanvas-links li a { display: flex; align-items: center; gap: 8px; color: var(--text-dark); font-weight: 600; font-size: 0.9rem; }
.offcanvas-links li a:hover { color: var(--primary); padding-left: 4px; }
.offcanvas-links li a i { color: var(--primary); font-size: 0.7rem; }
.offcanvas-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem; color: var(--text-muted); font-size: 0.85rem; }
.offcanvas-contact i { color: var(--primary); }
.close-offcanvas {
    width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
    background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.9rem; transition: 0.3s;
}
.close-offcanvas:hover { background: #fee2e2; color: #ef4444; }

/* ============ RESPONSIVE HEADER ============ */
@media (max-width: 1024px) {
    header#main-header { min-height: 60px; height: auto; }
    .navbar { min-height: 60px; padding: 0 10px; }
    .logo img { max-height: none; max-width: 250px; }
    .nav-menu { display: none !important; }
    .header-demo-btn { display: none !important; }
    .mobile-toggle { display: flex !important; }
}
@media (min-width: 1025px) {
    .mobile-toggle { display: none !important; }
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: #0f172a; color: white; }
.bg-dark .section-header span { color: var(--secondary); }
.bg-dark .section-header h2 { color: white; }
.bg-dark .section-header h2 span { color: var(--secondary); }
.bg-dark p { color: #94a3b8; }
.bg-dark .f-card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
.bg-dark .f-card h4 { color: white; }
.bg-dark .f-card:hover { background: rgba(255,255,255,0.05); border-color: var(--secondary); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header span { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.75rem; display: block; margin-bottom: 0.5rem; }
.section-header h2 span { color: var(--primary); }

/* Page Hero (Inner Pages) */
.page-hero { background: #0f172a; padding: 120px 0 70px; position: relative; overflow: hidden; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; color: #94a3b8; max-width: 600px; line-height: 1.7; }
.section-tag { display: inline-block; padding: 0.4rem 1rem; background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.7rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.gradient-text { background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

/* Hero V2 (Homepage) */
.hero-v2 { position: relative; padding: 100px 0 90px; background-size: cover; background-position: center; text-align: center; color: white; }
.hero-v2::before { content: ''; position: absolute; inset: 0; background: rgba(15,23,42,0.85); z-index: 1; }
.hero-v2 .container { position: relative; z-index: 2; }
.hero-v2 h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1.25rem; }
.hero-v2 h1 span { color: #ffd700; }
.btn-hero-outline { padding: 0.6rem 2rem; border: 2px solid white; color: white; border-radius: 6px; font-weight: 600; font-size: 0.875rem; display: inline-block; }
.btn-hero-outline:hover { background: white; color: var(--text-dark); }

/* Hero Services Card */
.hero-services-card {
    background: white; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 1rem; margin-top: -60px; position: relative; z-index: 10;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.hero-service-item { 
    padding: 1.5rem 1rem; text-align: center; border-radius: 14px; 
    transition: var(--transition); border: 1px solid transparent;
    height: 100%; display: flex; flex-direction: column; align-items: center;
    overflow: hidden;
}
.hero-service-item:hover { 
    background: var(--bg-light); 
    transform: translateY(-8px); 
    border-color: var(--primary-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}
.hs-icon { margin-bottom: 1rem; transition: var(--transition); }
.hs-icon img { height: 45px; width: auto; margin: 0 auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.hero-service-item:hover .hs-icon { transform: scale(1.1); }

.hero-service-item h4 { 
    margin-bottom: 0.5rem; font-size: 1rem; font-weight: 800; 
    color: var(--text-dark); transition: var(--transition);
}
.hero-service-item p { 
    font-size: 0.8rem; line-height: 1.5; color: var(--text-muted);
    max-height: 0; opacity: 0; transition: all 0.5s ease;
    transform: translateY(10px);
}
.hero-service-item:hover p { 
    max-height: 100px; opacity: 1; transform: translateY(0);
    margin-top: 0.5rem;
}
.hero-service-item:hover h4 { color: var(--primary); }


/* Partners */
.partners-section { padding: 60px 0; text-align: center; }
.partners-section h2 { margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.partner-slide { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.partner-slide img { max-height: 50px; filter: grayscale(100%); opacity: 0.5; transition: var(--transition); }
.partner-slide img:hover { filter: grayscale(0); opacity: 1; }

/* Feature Cards */
.feature-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.f-card { 
    background: white; padding: 2.5rem 1.5rem; border-radius: 16px; 
    border: 1px solid var(--border); transition: var(--transition); 
    text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center;
}
.f-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary); }
.f-icon { 
    width: 64px; height: 64px; background: var(--primary-light); color: var(--primary); 
    border-radius: 16px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.6rem; margin: 0 auto 1.5rem; transition: var(--transition);
}
.f-card:hover .f-icon { background: var(--primary); color: white; transform: rotate(-5deg) scale(1.1); }
.f-card h4 { margin-bottom: 0.5rem; font-weight: 800; font-size: 1.15rem; transition: var(--transition); }
.f-card p { 
    font-size: 0.85rem; line-height: 1.6; color: var(--text-muted);
    max-height: 0; opacity: 0; transition: all 0.4s ease; overflow: hidden;
}
.f-card:hover p { max-height: 120px; opacity: 1; margin-top: 1rem; }
.f-card:hover h4 { color: var(--primary); }

.f-card.f-card-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white !important;
    border-color: rgba(255,255,255,0.1);
}
.f-card.f-card-premium h4 { color: white !important; }
.f-card.f-card-premium p { color: rgba(255,255,255,0.7) !important; }
.f-card.f-card-premium .f-icon { background: rgba(255,255,255,0.1); color: white; }
.f-card.f-card-premium:hover { border-color: var(--primary); }

/* Learn More Button */
.btn-learn { display: inline-block; padding: 0.6rem 2rem; border: 2px solid var(--primary); color: var(--primary); border-radius: 50px; font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.btn-learn:hover { background: var(--primary); color: white; }

/* Inner Page Cards */
.premium-feature-card { background: white; padding: 2rem 1.5rem; border-radius: 1.25rem; border: 1px solid var(--border); transition: 0.4s; }
.premium-feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--primary); }
.icon-box { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.5rem; }
.premium-feature-card h3 { margin-bottom: 0.75rem; }
.premium-feature-card p { font-size: 0.9rem; }

/* Process Grid */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-item { position: relative; padding: 1.5rem; text-align: center; }
.step-num { font-size: 3rem; font-weight: 900; color: #f1f5f9; line-height: 1; position: absolute; top: -5px; left: 0; z-index: -1; }

/* FAQ */
.faq-card { background: var(--bg-light); border-radius: 12px; margin-bottom: 1rem; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-header { padding: 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-header:hover { background: #f1f5f9; }
.faq-header h4 { margin: 0; font-size: 0.95rem; }
.faq-body { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; }

/* Footer */
#main-footer { background: #0f172a; padding: 60px 0 0; color: #94a3b8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; color: white; font-size: 1.3rem; font-weight: 800; }
.footer-logo img { height: 40px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.05); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
.social-btn:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links-col h4, .footer-contact h4 { color: white; font-size: 1rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem; }
.footer-links-col h4::after, .footer-contact h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--primary); }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links li a { color: #94a3b8; font-weight: 500; font-size: 0.875rem; transition: var(--transition); }
.footer-links li a:hover { color: white; padding-left: 5px; }
.contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.contact-item i { color: var(--primary); margin-top: 4px; font-size: 0.9rem; }
.contact-item p { color: white; font-size: 0.85rem; line-height: 1.5; }

/* Newsletter */
.newsletter-bar { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; border-radius: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.newsletter-info h3 { color: white; font-size: 1.25rem; margin-bottom: 0.25rem; }
.newsletter-info p { font-size: 0.85rem; }
.newsletter-form-wrap { flex: 1; max-width: 400px; }
.newsletter-form { background: white; padding: 0.4rem; border-radius: 50px; display: flex; gap: 0.4rem; }
.newsletter-form input { border: none; outline: none; padding: 0 1rem; flex: 1; border-radius: 50px; font-size: 0.85rem; }
.newsletter-form button { border-radius: 50px !important; font-size: 0.8rem; padding: 0.55rem 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #94a3b8; transition: 0.3s; }
.footer-legal a:hover { color: white; }

/* Swiper */
.swiper-pagination-bullet-active { background: var(--primary); }
.swiper-slide { height: auto; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-services-card { grid-template-columns: repeat(3, 1fr); margin-top: -40px; }
    .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-bar { flex-direction: column; text-align: center; }
    .newsletter-form-wrap { width: 100%; max-width: 100%; }
}

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .dual-grid { grid-template-columns: 1fr !important; text-align: center !important; }
    .hero-image { order: -1; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 45px 0; }
    .page-hero { padding: 90px 0 50px; }
    .hero-v2 { padding: 80px 0 70px; }
    .hero-services-card { grid-template-columns: repeat(2, 1fr); margin-top: -30px; padding: 0.75rem; }
    .feature-cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-services-card { grid-template-columns: 1fr; }
    .container { padding: 0 0.75rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; border-radius: 14px; padding: 0.75rem; }
    .newsletter-form input { padding: 0.6rem; text-align: center; }
}

/* Animations */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
