*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        :root {
            --navy: #0d1f3c; --dark-bg: #06111f; --red: #c8251d; --red-dark: #a81e17;
            --gold: #e8920a; --orange: #f97316; --green: #10b981; --blue: #1e88e5;
            --light: #f4f6f9; --border: #e8ecf2; --muted: #8a96a8;
            --body-text: #3a4558; --heading: #0d1f3c; --white: #ffffff;
            --shadow: 0 4px 8px rgba(0,0,0,0.09); --shadow-lg: 0 12px 30px rgba(0,0,0,0.14);
        }
        body { color: var(--body-text); font-size: 16px; line-height: 1.7; overflow-x: hidden; width: 100%; }
        main { width: 100%; overflow-x: hidden; }
        .container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section    { padding: 80px 20px; width: 100%; }
        .section-sm { padding: 56px 20px; width: 100%; }
        h1 { font-size: clamp(1.9rem,5vw,3.2rem); font-weight: 800; line-height: 1.12; color: var(--white); }
        h2 { font-size: clamp(1.5rem,3.8vw,2.4rem); font-weight: 700; line-height: 1.2; color: var(--heading); margin-bottom: 14px; }
        h3 { font-size: clamp(1.05rem,2.4vw,1.3rem); font-weight: 700; line-height: 1.3; color: var(--heading); margin-bottom: 10px; }
        h4 { font-size: 0.98rem; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
        p  { margin-bottom: 15px; line-height: 1.8; }
        a  { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; }

        /* BUTTONS */
        .btn { display: inline-block; padding: 14px 28px; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; border-radius: 6px; border: none; cursor: pointer; transition: all 0.25s ease; text-align: center; white-space: nowrap; }
        .btn-red       { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(200,37,29,0.3); }
        .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); color: var(--white); }
        .btn-ghost       { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: var(--white); color: var(--navy); }
        .btn-outline-red       { background: transparent; color: var(--red); border: 2px solid var(--red); }
        .btn-outline-red:hover { background: var(--red); color: var(--white); }
        .btn-gold       { background: var(--gold); color: var(--white); box-shadow: 0 4px 14px rgba(232,146,10,0.35); }
        .btn-gold:hover { background: #c97a08; transform: translateY(-2px); color: var(--white); }

        /* HERO */
        .hero { position: relative; background: var(--dark-bg); overflow: hidden; padding: 72px 20px 80px; }
        .hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 42px, rgba(255,255,255,0.011) 42px, rgba(255,255,255,0.011) 43px); }
        .hero-bar { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--red), var(--gold)); }
        .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 1; }
        .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
        .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,37,29,0.15); border: 1px solid rgba(200,37,29,0.35); border-radius: 4px; padding: 5px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fca5a5; }
        .hero-badge.gold-badge { background: rgba(232,146,10,0.15); border-color: rgba(232,146,10,0.35); color: #fcd34d; }
        .hero h1 span { color: var(--gold); }
        .hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.62); line-height: 1.8; margin: 16px 0 24px; max-width: 680px; }
        .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
        .hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
        .trust-item { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.45); }

        /* CERTIFIED STRIP */
        .certified-strip { background: #ffffff; padding: 36px 20px; border-top: 4px solid var(--gold); border-bottom: 1px solid #e8ecf2; text-align: center; }
        .certified-strip-inner { max-width: 600px; margin: 0 auto; }
        .certified-strip-inner img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

        /* STATS STRIP */
        .stats-strip { background: var(--dark-bg); border-top: 1px solid rgba(255,255,255,0.07); }
        .stats-row { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); }
        .stat-cell { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
        .stat-cell:last-child { border-right: none; }
        .stat-num { display: block; font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1; }
        .stat-lbl { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.38); margin-top: 4px; }

        /* TRUST BAR */
        .trust-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 20px; }
        .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
        .tb-item { display: flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.55); }

        /* SECTION LABELS */
        .section-label { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 10px; }
        .section-label::before, .section-label::after { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--orange); border-radius: 1px; }
        .section-label.red   { color: var(--red); }
        .section-label.red::before, .section-label.red::after { background: var(--red); }
        .section-label.gold  { color: var(--gold); }
        .section-label.gold::before, .section-label.gold::after { background: var(--gold); }
        .section-label.green { color: var(--green); }
        .section-label.green::before, .section-label.green::after { background: var(--green); }
        .section-label.left  { justify-content: flex-start; }
        .section-label.left::before, .section-label.left::after { display: none; }
        .section-head  { text-align: center; margin-bottom: 48px; }
        .section-intro { font-size: 1rem; color: var(--body-text); max-width: 720px; margin: 0 auto; line-height: 1.82; }

        /* BG */
        .bg-white { background: var(--white); }
        .bg-light { background: var(--light); }
        .bg-dark  { background: var(--dark-bg); }

        /* ABOUT SECTION */
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; }
        .about-img-wrap { position: relative; }
        .about-img { width: 100%; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
        .about-img img { width: 100%; height: auto; display: block; object-fit: cover; }
        .about-img-badge { position: static; margin-top: 14px; display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); border-radius: 10px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 24px rgba(200,37,29,0.4); }
        .aib-num { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
        .aib-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.8; }
        .about-content p { font-size: 0.97rem; color: var(--body-text); line-height: 1.85; }
        .about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
        .ah-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; background: var(--light); border-radius: 8px; border-left: 4px solid var(--red); }
        .ah-icon { font-size: 1.2rem; flex-shrink: 0; }
        .ah-text { font-size: 0.88rem; font-weight: 600; color: var(--heading); line-height: 1.45; }
        .ah-sub  { font-size: 0.78rem; color: var(--muted); font-weight: 400; }

        /* VALUES GRID */
        .values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; }
        .value-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow); transition: all 0.3s; }
        .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,37,29,0.2); }
        .vc-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
        .value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
        .value-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 0; }

        /* TIMELINE */
        .timeline { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
        .tl-item { display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: flex-start; padding-bottom: 36px; position: relative; }
        .tl-item:not(:last-child)::before { content: ''; position: absolute; left: 35px; top: 48px; width: 2px; height: calc(100% - 20px); background: linear-gradient(180deg, var(--red), rgba(200,37,29,0.1)); }
        .tl-year { background: var(--red); color: var(--white); border-radius: 8px; padding: 10px 6px; text-align: center; font-size: 0.78rem; font-weight: 800; line-height: 1.2; flex-shrink: 0; box-shadow: 0 4px 14px rgba(200,37,29,0.3); }
        .tl-content { padding-top: 6px; }
        .tl-content h4 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
        .tl-content p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 0; }

        /* FACTORY AUTH BAND */
        .factory-band { background: linear-gradient(135deg, var(--dark-bg) 0%, var(--navy) 100%); padding: 56px 20px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
        .factory-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
        .factory-inner h2 { color: var(--white); margin-bottom: 10px; }
        .factory-inner h2 span { color: var(--gold); }
        .factory-inner p { color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto 32px; font-size: 0.97rem; }
        .brands-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
        .brand-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(232,146,10,0.3); border-radius: 8px; padding: 14px 28px; font-size: 0.9rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }

        /* AREAS GRID */
        .areas-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
        .area-link { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; color: var(--heading); transition: all 0.2s; }
        .area-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,37,29,0.1); }
        .area-link span  { font-size: 0.72rem; color: var(--muted); flex-shrink: 0; }

        /* CTA BAND */
        .cta-band { background: var(--dark-bg); padding: 68px 20px; position: relative; overflow: hidden; }
        .cta-band::before { content: ''; position: absolute; top: 0; left: 0; width: 7px; height: 100%; background: linear-gradient(180deg, var(--red), var(--gold)); }
        .cta-row { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
        .cta-text h2 { color: var(--white); margin-bottom: 7px; }
        .cta-text h2 span { color: var(--gold); }
        .cta-text p  { color: rgba(255,255,255,0.5); font-size: 0.94rem; margin-bottom: 0; }
        .cta-phone { display: flex; align-items: center; gap: 11px; background: var(--red); color: var(--white); padding: 15px 26px; border-radius: 6px; transition: background 0.2s; }
        .cta-phone:hover { background: var(--red-dark); color: var(--white); }
        .cta-phone-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.75; display: block; line-height: 1; margin-bottom: 2px; color: var(--white); }
        .cta-phone-num { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--white); }
        .cta-hrs { font-size: 0.76rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

        /* SOCIAL STRIP */
        .social-strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 20px; }
        .social-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .social-lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-right: 6px; }
        .social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; transition: all 0.2s; border: 1px solid transparent; }
        .social-btn.fb { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.3); color: #7eb2ff; }
        .social-btn.ig { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.3); color: #f9a8c5; }
        .social-btn.yt { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.3); color: #fca5a5; }
        .social-btn.pt { background: rgba(230,0,35,0.15); border-color: rgba(230,0,35,0.3); color: #fca5a5; }
        .social-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }

        /* SEO BLOCK */
        .seo-block { background: var(--light); padding: 56px 20px; }
        .seo-inner { max-width: 1200px; margin: 0 auto; }
        .seo-inner h2 { font-size: 1.3rem; color: var(--heading); margin-bottom: 14px; }
        .seo-inner p  { font-size: 0.9rem; color: var(--body-text); line-height: 1.85; margin-bottom: 14px; }
        .seo-inner a  { color: var(--red); font-weight: 600; }
        .seo-inner a:hover { text-decoration: underline; }

        /* TOP BANNER */
        @keyframes bannerPulse {
            0%   { background-color: rgba(180,28,22,0.92); }
            50%  { background-color: rgba(20,80,160,0.92); }
            100% { background-color: rgba(180,28,22,0.92); }
        }
        .top-banner { width: 100%; animation: bannerPulse 8s ease-in-out infinite; background-color: rgba(180,28,22,0.92); padding: 11px 20px; text-align: center; position: relative; z-index: 100; }
        .top-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .top-banner-text { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.93); letter-spacing: 0.02em; line-height: 1.5; }
        .top-banner-text strong { color: #fff; font-weight: 700; }
        .top-banner-cta { font-size: 0.76rem; font-weight: 700; color: #fff; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; padding: 4px 12px; white-space: nowrap; transition: background 0.2s; }
        .top-banner-cta:hover { background: rgba(255,255,255,0.28); }

        /* RESPONSIVE — mobile defaults */
        @media (max-width: 639px) {
            .hero-inner      { grid-template-columns: 1fr; }
            .values-grid     { grid-template-columns: 1fr; }
            .areas-grid      { grid-template-columns: 1fr; }
            .about-grid      { grid-template-columns: 1fr; }
            .hero       { padding: 36px 14px 44px; }
            .section    { padding: 44px 14px; }
            .section-sm { padding: 36px 14px; }
            .cta-band   { padding: 44px 14px; }
            .factory-band { padding: 44px 14px; }
            .seo-block  { padding: 36px 14px; }
            .hero-btns  { flex-direction: column; }
            .btn        { width: 100%; text-align: center; }
            .cta-row    { flex-direction: column; align-items: flex-start; }
            .cta-phone  { width: 100%; justify-content: center; }
            .cta-hrs    { text-align: center; width: 100%; margin-top: 8px; }
        }

        @media (min-width: 640px) {
            .hero       { padding: 60px 24px 68px; }
            .section    { padding: 64px 24px; }
            .section-sm { padding: 52px 24px; }
            .cta-band   { padding: 64px 24px; }
            .factory-band { padding: 56px 24px; }
            .seo-block  { padding: 52px 24px; }
            .btn        { width: auto; }
            .hero-btns  { flex-direction: row; }
            .hero-inner { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .areas-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .about-grid  { grid-template-columns: 5fr 7fr; gap: 40px; }
            .about-img-badge { position: absolute; bottom: -14px; right: -14px; display: block; margin-top: 0; }
            .cta-row   { flex-direction: row; align-items: center; justify-content: space-between; }
            .cta-phone { width: auto; }
            .cta-hrs   { text-align: right; width: auto; margin-top: 0; }
            .stats-row { grid-template-columns: repeat(4, 1fr); }
        }
        @media (min-width: 1024px) {
            .hero       { padding: 88px 20px 80px; }
            .section    { padding: 80px 20px; }
            .cta-band   { padding: 74px 20px; }
            .factory-band { padding: 72px 20px; }
            .values-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
            .areas-grid  { grid-template-columns: repeat(4, 1fr); gap: 10px; }
            .about-grid  { grid-template-columns: 2fr 3fr; gap: 64px; }
        }
        @media (min-width: 1440px) {
            .container, .about-grid, .stats-row, .cta-row, .seo-inner { max-width: 1360px; }
        }
        @media (max-width: 480px) {
            .top-banner-text { font-size: 0.76rem; }
            .top-banner { padding: 10px 14px; }
        }