:root {
  --bg-dark: #1E1E1E;
  --bg-white: #FFFFFF;
  --bg-cream: #FAFAFA; /* Completely removed vintage cream tint, now stark modern gray */
  --accent-green: #3DAF50;
  --accent-green-dark: #2D8C3C;
  --text-dark: #1E1E1E;
  --text-white: #FFFFFF;
  --text-gray: #A0A0A0;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Manrope', sans-serif; }
body { background: var(--bg-white); color: var(--text-dark); overflow-x: hidden; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section-padding { padding: 100px 0; }
.badge { padding: 4px 12px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; display: inline-block; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--text-dark); padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 500; margin-bottom: 24px; font-size: 14px; }
.section-badge span { background: var(--text-dark); color: var(--bg-white); padding: 4px 8px; border-radius: var(--radius-pill); font-size: 12px; }
.section-badge.centered-badge { margin: 0 auto 24px auto; display: flex; width: max-content; }
.section-badge.dark-badge { border-color: var(--bg-white); color: var(--bg-white); }
.section-badge.dark-badge span { background: var(--bg-white); color: var(--bg-dark); }
.section-title { font-size: 40px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.section-title.centered-title { text-align: center; }
.dark-text { color: var(--text-dark); }
.white-text { color: var(--text-white); }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; border-radius: var(--radius-pill); font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--accent-green); color: var(--bg-white); }
.btn-primary:hover { background: var(--accent-green-dark); }
.btn-outline { border: 1px solid var(--bg-white); color: var(--bg-white); background: transparent; }
.btn-outline:hover { background: var(--bg-white); color: var(--bg-dark); }
.btn-white { background: var(--bg-white); color: var(--text-dark); }
.btn-icon-circle { background: var(--bg-white); color: var(--accent-green); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-white .btn-icon-circle { background: var(--accent-green); color: var(--bg-white); }

/* NAVBAR */
.navbar-wrapper { position: fixed; top: 20px; left: 0; width: 100%; z-index: 1000; padding: 0 20px; }
.navbar-container { max-width: 1200px; margin: 0 auto; background: var(--bg-dark); border-radius: var(--radius-pill); display: flex; justify-content: space-between; align-items: center; padding: 12px 20px 12px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.nav-left { display: flex; align-items: center; gap: 10px; color: var(--accent-green); font-size: 20px; font-weight: 700; }
.nav-center { display: flex; gap: 30px; }
.nav-link { color: var(--bg-white); font-weight: 400; transition: color 0.3s; }
.nav-link:hover { color: var(--accent-green); }
.nav-right { display: flex; align-items: center; }
.menu-toggle { display: none; background: none; border: none; color: var(--bg-white); font-size: 24px; cursor: pointer; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; color: var(--bg-white); }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,30,30,0.9) 0%, rgba(30,30,30,0.4) 100%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-title { font-size: 64px; font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.hero-desc { font-size: 16px; color: #D0D0D0; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 60px; }
.hero-partners { display: flex; gap: 30px; align-items: center; opacity: 0.7; filter: grayscale(100%); }
.partner-logo { height: 30px; }
.hero-glass-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border-radius: var(--radius-md); padding: 30px; border: 1px solid rgba(255,255,255,0.2); max-width: 400px; margin-left: auto; }
.glass-flex-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.badge-primary { background: var(--bg-white); color: var(--bg-dark); }
.glass-thumb-wrap { position: relative; width: 100px; height: 70px; border-radius: 10px; overflow: hidden; }
.glass-thumb { width: 100%; height: 100%; object-fit: cover; }
.play-btn { position: absolute; bottom: 5px; right: 5px; width: 24px; height: 24px; border-radius: 50%; background: var(--bg-white); color: var(--accent-green); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.glass-stats { margin-bottom: 15px; }
.stat-number { font-size: 40px; font-weight: 700; color: var(--bg-white); }
.glass-desc { font-size: 14px; color: #E0E0E0; }

/* ABOUT US */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.about-left-card { background: #FFFFFF; border-radius: var(--radius-md); padding: 50px; border: 1px solid #EBEBEB; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.pill-tags { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tag-pill { background: var(--bg-white); padding: 8px 16px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.tag-pill i { color: var(--accent-green); font-size: 18px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-col h3 { font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.stat-col p { font-size: 14px; color: var(--text-gray); font-weight: 500; }
.about-quote { font-size: 30px; font-weight: 300; line-height: 1.4; color: var(--text-dark); }
.about-quote .fade-text { color: var(--text-gray); }
.values-heading { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { background: linear-gradient(rgba(30,30,30,0.9), rgba(30,30,30,0.9)), url('../images/category_bg.png') center/cover; color: var(--bg-white); padding: 30px; border-radius: var(--radius-sm); display: block; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.icon-circle { background: rgba(61,175,80,0.2); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-green); font-size: 24px; margin-bottom: 20px; }
.value-card p { font-size: 15px; line-height: 1.5; color: #D0D0D0; }

/* INNOVATIONS */
.carousel-container { position: relative; margin-top: 50px; display: flex; align-items: center; gap: 20px; }
.nav-arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #E0E0E0; background: var(--bg-white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; flex-shrink: 0; }
.nav-arrow:hover { background: var(--text-dark); color: var(--bg-white); border-color: var(--text-dark); }
.carousel-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; overflow: hidden; }
.carousel-card { display: flex; flex-direction: column; }
.card-media { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 24px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.play-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: var(--bg-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-dark); font-size: 24px; }
.card-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.card-desc { font-size: 15px; color: var(--text-gray); margin-bottom: 20px; line-height: 1.6; }
.read-more { font-weight: 600; color: var(--text-dark); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; transition: color 0.3s; }
.read-more:hover { color: var(--accent-green); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #D0D0D0; cursor: pointer; }
.dot.active { background: var(--accent-green); width: 24px; border-radius: 4px; }

/* SOLUTIONS */
.solutions { background: var(--bg-dark); }
.solutions-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.sticky-wrapper { position: sticky; top: 100px; }
.accordion-list { margin-top: 40px; position: relative; padding-left: 30px; }
.progress-line { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.progress-indicator { position: absolute; left: 0; top: 0; width: 100%; background: var(--accent-green); border-radius: 2px; transition: height 0.3s, top 0.3s; height: 20%; }
.accordion-item { padding: 24px 0; cursor: pointer; color: var(--text-gray); border-bottom: 1px solid rgba(255,255,255,0.1); }
.accordion-item.active { color: var(--bg-white); }
.acc-header { display: flex; align-items: center; gap: 20px; }
.acc-num { font-weight: 700; font-size: 20px; }
.acc-header h3 { font-size: 24px; font-weight: 600; }
.acc-body { max-height: 0; overflow: hidden; transition: all 0.3s; padding-left: 55px; }
.accordion-item.active .acc-body { max-height: 150px; padding-top: 16px; }
.accordion-item.active .acc-body p { background: rgba(255,255,255,0.05); padding: 16px 20px; border-radius: 12px; font-size: 15px; line-height: 1.6; }
.stacked-images { position: sticky; top: 100px; height: calc(100vh - 200px); min-height: 500px; position: relative; }
.stack-card { position: absolute; inset: 0; opacity: 0; transition: all 0.5s ease; border-radius: var(--radius-md); overflow: hidden; transform: translateY(20px); }
.stack-card.active { opacity: 1; transform: translateY(0); z-index: 10; }
.stack-card img { width: 100%; height: 100%; object-fit: cover; }
.glass-stat-overlay { position: absolute; bottom: 30px; right: 30px; background: rgba(255,255,255,0.15); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); padding: 20px 30px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 20px; color: var(--bg-white); }
.circle-icon { width: 50px; height: 50px; background: var(--bg-white); color: var(--accent-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.overlay-text { display: flex; flex-direction: column; }
.huge-num { font-size: 36px; font-weight: 700; line-height: 1; }

/* BLOG */
.blog-list { margin-top: 50px; }
.blog-row { display: grid; grid-template-columns: 3fr 4fr 1fr; gap: 30px; padding: 40px 0; border-top: 1px solid #E0E0E0; align-items: center; transition: background 0.3s; }
.blog-row:first-child { border-top: none; }
.blog-row:hover { background: #FAFAFA; border-radius: 12px; padding-left: 20px; padding-right: 20px; margin-left: -20px; margin-right: -20px; }
.blog-date { color: var(--accent-green); font-weight: 600; font-size: 14px; display: block; margin-bottom: 8px; }
.blog-title { font-size: 24px; font-weight: 700; color: var(--text-dark); }
.blog-center p { font-size: 16px; color: var(--text-gray); line-height: 1.6; }
.blog-right { display: flex; justify-content: flex-end; }
.blog-link { width: 60px; height: 60px; border-radius: 50%; border: 1px solid #E0E0E0; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--text-dark); transition: all 0.3s; }
.blog-row:hover .blog-link { background: var(--accent-green); color: var(--bg-white); border-color: var(--accent-green); }

/* FAQ */
.faq { background: var(--bg-cream); }
.faq-container { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.faq-item { background: var(--bg-white); border-radius: var(--radius-sm); margin-bottom: 16px; padding: 24px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.faq-query { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-size: 18px; font-weight: 600; text-align: left; cursor: pointer; color: var(--text-dark); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(61,175,80,0.1); color: var(--accent-green); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: transform 0.3s; }
.faq-query[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--accent-green); color: var(--bg-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-query[aria-expanded="true"] + .faq-answer { max-height: 200px; padding-top: 16px; border-top: 1px solid #E0E0E0; margin-top: 16px; }
.faq-answer p { color: var(--text-gray); line-height: 1.6; }

/* CONTACT */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.testimonial-block { margin-bottom: 40px; }
.testimonial-quote { font-size: 22px; font-weight: 500; line-height: 1.5; color: var(--text-dark); font-style: italic; }
.separator-line { border: none; height: 1px; background: #E0E0E0; margin: 30px 0; }
.author-info { display: flex; align-items: center; gap: 16px; }
.avatar-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.author-text { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 18px; }
.author-role { color: var(--text-gray); font-size: 14px; }
.contact-card { background: linear-gradient(135deg, var(--accent-green-dark) 0%, var(--accent-green) 100%); border-radius: var(--radius-md); padding: 50px; color: var(--bg-white); }
.contact-title { font-size: 32px; font-weight: 700; margin-bottom: 30px; }
.contact-actions { display: flex; gap: 16px; margin-bottom: 20px; }
.btn-outline-white { border: 1px solid var(--bg-white); background: transparent; padding: 12px 24px; border-radius: var(--radius-pill); color: var(--bg-white); font-weight: 600; transition: all 0.3s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.contact-small { font-size: 14px; opacity: 0.8; }
.contact-right { position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 500px; }
.hero-farmer-img { width: 100%; height: 100%; object-fit: cover; }
.overlay-badge { position: absolute; top: 30px; left: 30px; background: var(--bg-white); border-color: transparent; z-index: 2; }
.farmer-overlay-bottom { position: absolute; bottom: 30px; left: 30px; color: var(--bg-white); z-index: 2; }
.farmer-overlay-bottom .huge-stats { font-size: 50px; font-weight: 700; line-height: 1; }
.farmer-overlay-small { position: absolute; bottom: 30px; right: 30px; background: var(--bg-white); border-radius: 100px; padding: 12px 24px; display: flex; align-items: center; gap: 16px; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.avatar-stack { display: flex; }
.avatar-stack img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-white); margin-left: -12px; }
.avatar-stack img:first-child { margin-left: 0; }
.overlay-text-small { display: flex; flex-direction: column; }
.overlay-text-small .name { font-weight: 700; font-size: 14px; }
.overlay-text-small .company { font-size: 12px; color: var(--text-gray); }
.icon-circle-small { width: 32px; height: 32px; background: var(--text-dark); color: var(--bg-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* FOOTER */
.footer { background: var(--bg-dark); color: var(--bg-white); padding-top: 100px; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px; margin-bottom: 60px; }
.footer-tagline { color: #A0A0A0; font-size: 16px; margin-bottom: 30px; line-height: 1.6; }
.social-label { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: var(--bg-white); border: 1px solid rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.3s; }
.social-icons a:hover { background: var(--accent-green); border-color: var(--accent-green); }
.footer-title { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #A0A0A0; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-green); }
.newsletter-form { display: flex; background: rgba(255,255,255,0.05); padding: 8px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.1); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 20px; color: var(--bg-white); outline: none; font-family: inherit; }
.newsletter-form input::placeholder { color: #808080; }
.btn-white-pill { background: var(--bg-white); color: var(--bg-dark); border: none; padding: 12px 24px; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; transition: background 0.3s; }
.btn-white-pill:hover { background: #E0E0E0; }
.footer-sep { border: none; height: 1px; background: rgba(255,255,255,0.1); }
.footer-middle { padding: 30px 0; display: flex; justify-content: space-between; font-size: 14px; color: #A0A0A0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding-top: 50px; }
.giant-text { font-size: 11vw; font-weight: 700; line-height: 0.8; letter-spacing: -2px; background: linear-gradient(180deg, #FFFFFF 0%, #808080 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; text-align: center; }

/* RESPONSIVE */

/* Mobile menu - full screen overlay */
.nav-center.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    z-index: 1000;
}

.nav-center.mobile-open .nav-link {
    display: flex;
    align-items: center;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 56px;
}

.nav-center.mobile-open .nav-link:last-child {
    border-bottom: none;
}

/* Grids */
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }

/* === TABLET (992px) === */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-glass-card { margin: 0 auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .carousel-track { grid-template-columns: 1fr; }
    .solutions-container { grid-template-columns: 1fr; }
    .faq-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .blog-row { grid-template-columns: 1fr; gap: 15px; }
    .grid-3-col { grid-template-columns: repeat(2, 1fr); }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .detail-layout { flex-direction: column; }
    .detail-img, .detail-content { width: 100%; }
}

/* === MOBILE (768px) === */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 16px; }
    .section-padding { padding: 60px 0; }

    /* Navbar */
    .nav-center, .nav-right .btn { display: none; }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        -webkit-tap-highlight-color: transparent;
    }
    .navbar-wrapper { top: 10px; padding: 0 10px; }
    .navbar-container { padding: 10px 16px; }
    .nav-logo-icon { font-size: 20px; }
    .nav-logo-text { font-size: 16px; }

    /* Hero */
    .hero { height: auto; min-height: auto; padding-top: 90px; padding-bottom: 48px; }
    .hero-title { font-size: 1.6rem; line-height: 1.2; margin-bottom: 16px; }
    .hero-desc { font-size: 0.85rem; margin-bottom: 24px; line-height: 1.6; }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.85rem;
        min-height: 48px;
    }
    .hero-glass-card {
        padding: 20px;
        max-width: 100%;
        margin-top: 24px;
    }
    .stat-number.glass-stat { font-size: 28px; }
    .glass-desc { font-size: 0.8rem; }
    .glass-thumb-wrap { width: 70px; height: 50px; }

    /* Section titles */
    .section-title { font-size: 1.5rem; margin-bottom: 16px; }
    .section-badge { font-size: 0.75rem; padding: 6px 12px; margin-bottom: 16px; }

    /* Categories */
    .grid-3-col { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
    .value-card { padding: 20px; }
    .icon-circle { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
    .value-card h3 { font-size: 1rem !important; margin-bottom: 6px !important; }
    .value-card p { font-size: 0.8rem; }

    /* Product cards */
    .grid-4-col { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
    .carousel-card { border-radius: 12px !important; }
    .card-title { font-size: 0.9rem !important; }
    .card-desc { font-size: 0.78rem !important; line-height: 1.4 !important; }
    .carousel-card .btn { padding: 10px !important; font-size: 0.78rem !important; }

    /* Brands */
    .py-10 { padding: 48px 0 !important; }

    /* Contact banner */
    .contact-card {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
        padding: 32px 20px !important;
    }
    .contact-title { font-size: 1.25rem !important; margin-bottom: 8px !important; }
    .contact-small { font-size: 0.85rem !important; }
    .contact-card .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer { padding-top: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-middle { flex-direction: column; align-items: center; gap: 12px; text-align: center; font-size: 0.75rem; }
    .footer-title { font-size: 0.9rem; margin-bottom: 16px; }
    .footer-links a { font-size: 0.85rem; }
    .footer-tagline { font-size: 0.85rem; }
    .giant-text { font-size: 15vw; }

    /* Stats */
    .stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-col h3 { font-size: 1.5rem; }
    .about-quote { font-size: 1.1rem; }

    /* Values */
    .values-cards { grid-template-columns: 1fr !important; gap: 12px; }

    /* Buttons global */
    .btn { min-height: 48px; font-size: 0.85rem; }

    /* Contact hero (contact page) */
    .contact-hero h1 { font-size: 1.6rem !important; }
}

/* === SMALL MOBILE (480px) === */
@media (max-width: 480px) {
    .hero-title { font-size: 1.35rem; }
    .section-title { font-size: 1.25rem; }
    .grid-3-col, .grid-4-col { grid-template-columns: 1fr; gap: 12px; }
    .footer-top { gap: 24px; }
    .giant-text { font-size: 18vw; }
    .contact-card { padding: 24px 16px !important; }
}

/* === ULTRA RESPONSIVE INLINE FIXES === */
@media (max-width: 768px) {
    /* Override inline paddings for hero sections */
    .catalog-hero, .about-hero, .contact-hero { 
        padding: 100px 15px 50px 15px !important; 
    }
    
    /* Override giant inline font sizes across the site */
    h1[style*="font-size: 48px"], 
    h1[style*="font-size: 56px"], 
    h1[style*="font-size: 64px"],
    .modern-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    h2[style*="font-size: 32px"], 
    h3[style*="font-size: 28px"], 
    h3[style*="font-size: 26px"] {
        font-size: 1.5rem !important;
    }

    p[style*="font-size: 18px"] {
        font-size: 1rem !important;
    }

    /* Force grids to collapse to 1 column */
    div[style*="grid-template-columns: 1fr 1fr"],
    .service-grid,
    .contact-grid,
    .premium-grid,
    .catalog-layout {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Reset min-heights that break mobile */
    div[style*="min-height: 400px"] {
        min-height: 250px !important;
    }

    /* Fix image stacks and paddings */
    div[style*="padding: 50px"] {
        padding: 24px !important;
    }

    /* Contact Cards */
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 15px !important;
    }
}
