/* ============================================
   FACEAI - SBS Technologies Inspired Theme
   Blue & White Professional Design
   ============================================ */

:root {
    --blue: #0d6efd;
    --blue-dark: #0a58ca;
    --blue-light: #e7f1ff;
    --blue-mid: #3d8bfd;
    --navy: #212529;
    --text: #1a2340;
    --text-muted: #6B7280;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-light: #F0F4FF;
    --border: #E5E9F2;
    --shadow: 0 4px 24px rgba(13, 110, 253, 0.10);
    --shadow-lg: 0 12px 48px rgba(13, 110, 253, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Outfit', sans-serif;
}

.no-scroll { overflow: hidden; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body, input, button, select, textarea { 
    font-family: var(--font); 
    color: var(--text); 
    background: var(--bg); 
    font-size: 16px; 
    line-height: 1.65; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.blue-text { color: var(--blue); }
.white-text { color: var(--white); }

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: var(--white);
    padding: 12px 28px; border-radius: 8px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(43,92,230,0.25);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,92,230,0.35); }
.btn-primary.full-width { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }

.btn-outline-blue {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--blue); color: var(--blue);
    padding: 11px 26px; border-radius: 8px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: all 0.2s;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-contact {
    display: inline-flex; align-items: center;
    border: 2px solid var(--white); color: var(--white);
    padding: 9px 22px; border-radius: 8px;
    font-weight: 600; font-size: 14px;
    transition: all 0.2s; white-space: nowrap;
}
.btn-contact:hover { background: var(--white); color: var(--blue); }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: var(--blue);
    box-shadow: 0 2px 16px rgba(43,92,230,0.2);
    transition: all 0.3s;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800; color: var(--white);
}
.logo i { font-size: 26px; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.15); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 120px 0 80px; min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25); margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: 52px; font-weight: 900; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
}
.hero-sub { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btns .btn-primary { background: var(--white); color: var(--blue); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.hero-btns .btn-primary:hover { background: var(--bg-light); }
.hero-btns .btn-outline-blue { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-btns .btn-outline-blue:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.hero-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hero-img-wrap img { width: 100%; border-radius: 20px; }
.scan-overlay {
    position: absolute; inset: 16px;
    border-radius: 12px; pointer-events: none;
}
.scan-bar {
    position: absolute; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    animation: scanMove 2.5s linear infinite; box-shadow: 0 0 12px #00e5ff;
}
@keyframes scanMove { 0% { top: 0; } 100% { top: calc(100% - 3px); } }
@keyframes scan { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }
.corner {
    position: absolute; width: 22px; height: 22px;
    border-color: #00e5ff; border-style: solid; border-width: 0;
}
.corner.tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.corner.tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 4px 0 0; }
.corner.bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 4px; }
.corner.br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }

.badge-float {
    position: absolute; background: var(--white); color: var(--blue);
    padding: 8px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2); animation: floatBadge 3s ease-in-out infinite;
}
.badge-accuracy { top: 24px; left: -20px; animation-delay: 0s; }
.badge-speed { bottom: 32px; right: -20px; animation-delay: 1.5s; }
.badge-float i { color: #22c55e; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- STATS ---- */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 0; 
    background: #fff; 
    padding: 40px; 
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(13,110,253,0.1); 
    border: 1px solid #e7f1ff; 
    align-items: center;
}
.stat-card {
    text-align: center; padding: 20px;
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-suffix { font-size: 20px; font-weight: 800; color: var(--blue); }
.stat-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-top: 4px; text-transform: uppercase; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---- FEATURES ---- */
.features-section { padding: 88px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-card {
    padding: 36px 28px; background: var(--white);
    border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    transition: all 0.25s; cursor: default;
}
.feature-card:hover {
    border-color: var(--blue); background: var(--blue-light);
    transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.feat-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--blue-light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: background 0.25s;
}
.feat-icon i { font-size: 26px; color: var(--blue); }
.feature-card:hover .feat-icon { background: var(--blue); }
.feature-card:hover .feat-icon i { color: var(--white); }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ---- DASHBOARD ---- */
.dashboard-section { padding: 88px 0; background: var(--bg-light); }
.dashboard-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dashboard-text h2 { font-size: 38px; font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.dashboard-text > p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); font-weight: 500; }
.check-list li i { color: var(--blue); font-size: 18px; flex-shrink: 0; }
.browser-chrome {
    background: #e8ecf4; padding: 10px 16px;
    display: flex; align-items: center; gap: 12px;
    border-radius: 12px 12px 0 0; border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 6px; }
.dot-r, .dot-y, .dot-g { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #FF5F57; } .dot-y { background: #FEBC2E; } .dot-g { background: #28C840; }
.chrome-url { font-size: 12px; color: var(--text-muted); background: var(--white); padding: 4px 12px; border-radius: 6px; flex: 1; }
.dashboard-img-wrap { border-radius: 0 0 12px 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.dashboard-img-wrap > img { border-radius: 0 0 12px 12px; width: 100%; }

/* ---- PRICING ---- */
.pricing-section { padding: 88px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.price-card {
    border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px 28px; background: var(--white);
    position: relative; transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
    border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,92,230,0.15), var(--shadow-lg);
    transform: scale(1.03);
}
.recommended-badge {
    position: absolute; top: -1px; right: -1px;
    background: var(--blue); color: var(--white);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    padding: 6px 14px; border-radius: 0 18px 0 12px;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin-bottom: 12px; }
.plan-price { font-size: 52px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.plan-price .currency { font-size: 24px; vertical-align: top; margin-top: 12px; display: inline-block; }
.plan-price .period { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.plan-desc { font-size: 14px; color: var(--text-muted); margin: 12px 0 24px; line-height: 1.6; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.plan-features li i { color: var(--blue); font-size: 16px; flex-shrink: 0; }
.btn-plan-outline {
    display: block; text-align: center; padding: 12px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-weight: 600; font-size: 15px; color: var(--text);
    transition: all 0.2s;
}
.btn-plan-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-plan-primary {
    display: block; text-align: center; padding: 12px;
    background: var(--blue); color: var(--white);
    border-radius: 8px; font-weight: 600; font-size: 15px;
    transition: background 0.2s, transform 0.2s;
}
.btn-plan-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 88px 0; background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; box-shadow: var(--shadow);
    border: 1.5px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; margin-bottom: 16px; font-size: 15px; display: flex; gap: 2px; }
.testimonial-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue); color: var(--white);
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-section { padding: 88px 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--blue); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: var(--white); border: none; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--navy); text-align: left;
    transition: background 0.2s;
}
.faq-question:hover { background: var(--blue-light); }
.faq-item.open .faq-question { background: var(--blue-light); color: var(--blue); }
.faq-question i { font-size: 14px; transition: transform 0.3s; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.75; padding-top: 8px; }

/* ---- CONTACT ---- */
.contact-section {
    background: linear-gradient(135deg, #212529 0%, #0d6efd 100%);
    padding: 88px 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-text h2 { font-size: 38px; font-weight: 800; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.25; }
.contact-text h2 .white-text { color: var(--white); }
.contact-text > p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info div { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 15px; }
.contact-info i { color: rgba(255,255,255,0.5); width: 20px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.contact-form input, .contact-form select {
    width: 100%; padding: 12px 16px; margin-bottom: 14px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: var(--font); font-size: 14px; color: var(--text);
    background: var(--bg); outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus { border-color: var(--blue); }
.contact-form select { color: var(--text-muted); cursor: pointer; }

/* ---- FOOTER ---- */
.footer { 
    background: #080f25; 
    color: var(--white); 
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.4), transparent);
}
.footer-top {
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px; 
    padding-bottom: 60px;
}
.footer-brand .logo { 
    margin-bottom: 24px; 
    display: inline-flex;
    transform: scale(1.1);
    transform-origin: left;
}
.footer-brand p { 
    font-size: 15px; 
    color: rgba(255,255,255,0.6); 
    line-height: 1.6; 
    margin-bottom: 24px;
}
.footer-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 20px; height: 2px;
    background: var(--blue);
}
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-contact-item i {
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
}
.footer-contact-info h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.footer-contact-info p, .footer-contact-info a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.footer-link-list li {
    margin-bottom: 15px;
}
.footer-link-list a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.footer-link-list a:hover {
    color: var(--blue);
    transform: translateX(5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { 
    font-size: 14px; 
    color: rgba(255,255,255,0.4); 
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 18px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover { 
    background: var(--blue); 
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}
.footer-social a.linkedin:hover { background: #0077b5; }
.footer-social a.facebook:hover { background: #1877f2; }
.footer-social a.instagram:hover { background: #e4405f; }
.footer-social a.x:hover { background: #000; }
.footer-social a.whatsapp:hover { background: #25d366; }

/* ---- RESPONSIVE ---- */

/* Mobile Navigation */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-only {
    display: none;
}

/* Tablet and below */
@media (max-width: 992px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #0060fc;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
    }

    .mobile-only {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 48px !important;
    }

    .hero-sub {
        margin: 0 auto 30px !important;
    }

    .hero-btns {
        justify-content: center;
    }

    .dashboard-visual-wrap {
        padding: 0 !important;
    }

    .system-feat {
        padding: 10px !important;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .hero h1 {
        font-size: 32px !important;
    }

    .hero-badge {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    .stats-section {
        margin-top: -30px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 20px 10px !important;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid #eef2ff;
        padding: 15px 5px !important;
    }

    .stat-num {
        font-size: 28px !important;
    }

    .stat-label {
        font-size: 10px !important;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    .section-header h2 {
        font-size: 28px !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .feature-card {
        padding: 25px !important;
    }

    .dashboard-section h2 {
        font-size: 30px !important;
    }

    .dashboard-visual-wrap .floating-badge,
    .hero-image .floating-badge {
        display: none !important;
    }

    .browser-chrome {
        border-radius: 12px !important;
    }

    [style*="height: 520px"] {
        height: auto !important;
        flex-direction: column;
    }

    [style*="width: 70px"] {
        width: 100% !important;
        height: auto !important;
        flex-direction: row !important;
        padding: 10px !important;
        justify-content: center !important;
        gap: 15px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    [style*="padding: 40px"] {
        padding: 15px !important;
    }

    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    [style*="height: 250px"] {
        height: 150px !important;
    }

    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pricing-card {
        padding: 30px 20px !important;
    }

    .contact-info-card {
        padding: 20px !important;
    }

    .contact-info-card > div {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px !important;
    }

    .contact-section h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px !important;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-primary, 
    .hero-btns .btn-outline-blue {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid #eef2ff;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
    }
}
