/* =============================================
   SRUNIQ — Light Professional Theme
   White #FFFFFF | Charcoal #1C1C1E | Red #C0001A
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --white:  #FFFFFF;
  --off:    #F7F8FA;
  --off2:   #EEF0F4;
  --charcoal:#1C1C1E;
  --char2:  #2C2C2E;
  --char3:  #48484A;
  --red:    #C0001A;
  --red2:   #A00015;
  --red-bg: rgba(192,0,26,0.06);
  --red-bdr:rgba(192,0,26,0.15);
  --gray:   #6E6E73;
  --gray2:  #AEAEB2;
  --border: #E5E7EB;
  --border2:#D1D5DB;
  --shadow: 0 1px 3px rgba(0,0,0,0.08),0 4px 16px rgba(0,0,0,0.06);
  --shadow2: 0 4px 24px rgba(0,0,0,0.10),0 1px 4px rgba(0,0,0,0.06);
  --shadow3: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 10px;
  --radius2: 16px;
}

html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',sans-serif;background:var(--white);color:var(--charcoal);overflow-x:hidden;line-height:1.7}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--off)}
::-webkit-scrollbar-thumb{background:var(--red);border-radius:3px}

/* ---- Typography ---- */
h1,h2,h3{font-family:'Playfair Display',serif;line-height:1.2;color:var(--charcoal)}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.6rem,3vw,2.4rem)}
h3{font-size:clamp(1.1rem,2vw,1.35rem)}
p{color:var(--gray);line-height:1.8}
a{text-decoration:none;color:inherit}

.label{font-size:0.72rem;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--red);display:flex;align-items:center;gap:0.4rem;margin-bottom:0.75rem}
.label::before{content:'';width:20px;height:2px;background:var(--red);border-radius:2px;flex-shrink:0}
.section-title{color:var(--charcoal);margin-bottom:0.75rem}
.section-sub{color:var(--gray);max-width:620px;font-size:1rem}
.divider{width:48px;height:3px;background:var(--red);border-radius:2px;margin:1rem 0 1.5rem}
.divider.center{margin:1rem auto 1.5rem}

/* ---- Buttons ---- */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.8rem 1.75rem;border-radius:6px;font-weight:600;font-size:0.88rem;letter-spacing:0.03em;cursor:pointer;transition:var(--transition);border:2px solid transparent;font-family:'Inter',sans-serif}
.btn-primary{background:var(--red);color:#fff;border-color:var(--red)}
.btn-primary:hover{background:var(--red2);border-color:var(--red2);transform:translateY(-2px);box-shadow:0 8px 24px rgba(192,0,26,0.3)}
.btn-outline{background:transparent;color:var(--charcoal);border-color:var(--border2)}
.btn-outline:hover{border-color:var(--red);color:var(--red);transform:translateY(-2px)}
.btn-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,0.5)}
.btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.1)}
.btn-white{background:#fff;color:var(--red);border-color:#fff}
.btn-white:hover{background:var(--off);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.12)}

/* ---- Navbar ---- */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;height:70px;display:flex;align-items:center;justify-content:space-between;padding:0 2rem;background:rgba(255,255,255,0.97);border-bottom:1px solid var(--border);transition:var(--transition)}
.navbar.scrolled{box-shadow:var(--shadow)}
.nav-logo{display:flex;align-items:center;gap:0.6rem;font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--charcoal)}
.nav-logo img{height:42px;width:auto;object-fit:contain}
.nav-logo .brand{color:var(--red)}
.nav-logo .brand em{font-style:normal;color:var(--red)}
.nav-links{display:flex;align-items:center;gap:0;list-style:none}
.nav-links>li{position:relative}
.nav-links>li>a{padding:0.5rem 0.9rem;font-size:0.85rem;font-weight:500;color:var(--char3);transition:color 0.2s;display:flex;align-items:center;gap:0.3rem;white-space:nowrap}
.nav-links>li>a:hover,
.nav-links>li>a.active,
.nav-links>li.active-parent>a{color:var(--red)}
.dropdown a.active{color:var(--red);background:var(--red-bg);border-left-color:var(--red);padding-left:1.3rem;font-weight:600}
.nav-links>li>a svg{width:11px;height:11px;transition:transform 0.2s;opacity:0.6}
.nav-links>li:hover>a svg{transform:rotate(180deg)}
.dropdown{position:absolute;top:calc(100% + 6px);left:0;background:#fff;border:1px solid var(--border);border-radius:var(--radius);min-width:230px;padding:0.4rem 0;opacity:0;visibility:hidden;transform:translateY(-6px);transition:var(--transition);box-shadow:var(--shadow2)}
.nav-links>li:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:block;padding:0.6rem 1.1rem;font-size:0.83rem;color:var(--char3);transition:all 0.2s;border-left:2px solid transparent}
.dropdown a:hover{color:var(--red);background:var(--red-bg);border-left-color:var(--red);padding-left:1.3rem}
.nav-right{display:flex;align-items:center;gap:0.75rem}
.nav-login{font-size:0.83rem;font-weight:600;color:var(--red);border:1.5px solid var(--red);padding:0.42rem 1rem;border-radius:5px;transition:var(--transition)}
.nav-login:hover{background:var(--red);color:#fff}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.hamburger span{width:23px;height:2px;background:var(--charcoal);border-radius:2px;transition:var(--transition)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.mobile-nav{display:none;position:fixed;top:70px;left:0;right:0;bottom:0;background:#fff;z-index:999;overflow-y:auto;padding:1.5rem;flex-direction:column;gap:0;border-top:1px solid var(--border)}
.mobile-nav.open{display:flex}
.mobile-nav a{padding:0.9rem 0.5rem;border-bottom:1px solid var(--border);color:var(--char3);font-size:0.95rem;transition:color 0.2s}
.mobile-nav a:hover{color:var(--red)}
.mobile-nav .mob-label{color:var(--red);font-size:0.7rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;padding:1.25rem 0.5rem 0.4rem;display:block}

/* ---- Hero ---- */
.hero{min-height:100vh;display:flex;align-items:center;padding:100px 2rem 60px;position:relative;overflow:hidden;background:var(--charcoal)}
.hero-img-bg{position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=70') center/cover no-repeat;opacity:0.12}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(28,28,30,0.97) 0%,rgba(28,28,30,0.85) 50%,rgba(192,0,26,0.15) 100%)}
.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(192,0,26,0.15);border:1px solid rgba(192,0,26,0.3);border-radius:100px;padding:0.35rem 1rem;font-size:0.75rem;font-weight:700;color:#ff8080;margin-bottom:1.5rem;letter-spacing:0.05em}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:#ff4444;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.3}}
.hero h1{color:#fff;margin-bottom:1.25rem;line-height:1.15}
.hero h1 em{font-style:normal;color:var(--red)}
.hero-desc{color:rgba(255,255,255,0.65);font-size:1.05rem;max-width:520px;margin-bottom:2rem;line-height:1.8}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-stats{display:flex;gap:0;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.1)}
.hero-stat{flex:1;padding:0 1.25rem 0 0;border-right:1px solid rgba(255,255,255,0.08)}
.hero-stat:first-child{padding-left:0}
.hero-stat:last-child{border-right:none}
.hero-stat-num{font-family:'Playfair Display',serif;font-size:1.9rem;font-weight:700;color:#fff}
.hero-stat-num span{color:var(--red)}
.hero-stat-label{font-size:0.75rem;color:rgba(255,255,255,0.45);margin-top:0.1rem;letter-spacing:0.04em}

/* Hero right panel */
.hero-panel{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius2);padding:2rem;backdrop-filter:blur(10px)}
.hero-panel-title{font-size:0.72rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:1.25rem}
.hero-feat{display:flex;align-items:flex-start;gap:0.85rem;padding:0.9rem 0;border-bottom:1px solid rgba(255,255,255,0.06)}
.hero-feat:last-child{border-bottom:none}
.hero-feat-icon{width:36px;height:36px;border-radius:8px;background:var(--red-bg);border:1px solid var(--red-bdr);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;background:rgba(192,0,26,0.2);border-color:rgba(192,0,26,0.35)}
.hero-feat-title{font-size:0.88rem;font-weight:600;color:#fff;margin-bottom:0.2rem}
.hero-feat-sub{font-size:0.78rem;color:rgba(255,255,255,0.45)}

/* ---- Sections ---- */
.section{padding:90px 2rem}
.section.bg-off{background:var(--off)}
.section.bg-charcoal{background:var(--charcoal)}
.section-inner{max-width:1200px;margin:0 auto;width:100%}
.section-header{margin-bottom:3.5rem}
.section-header.center{text-align:center}
.section-header.center .section-sub{margin:0 auto}
.section-header.center .label{justify-content:center}
.section-header.center .divider{margin:1rem auto 1.5rem}

/* ---- Cards ---- */
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius2);padding:2rem;transition:var(--transition);position:relative}
.card:hover{box-shadow:var(--shadow2);transform:translateY(-4px);border-color:var(--red-bdr)}
.card-icon{width:48px;height:48px;border-radius:10px;background:var(--red-bg);border:1px solid var(--red-bdr);display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:1.25rem;transition:var(--transition)}
.card:hover .card-icon{background:var(--red);border-color:var(--red)}
.card h3{color:var(--charcoal);margin-bottom:0.6rem}

/* Service cards */
.service-card{cursor:pointer;overflow:hidden;padding:0}
.service-card-img{width:100%;height:210px;object-fit:cover;transition:transform 0.5s ease;display:block}
.service-card:hover .service-card-img{transform:scale(1.04)}
.service-card-body{padding:1.5rem}
.service-card-body h3{color:var(--charcoal);margin-bottom:0.5rem;font-size:1.15rem}
.service-card-body p{font-size:0.88rem;margin-bottom:1rem}
.service-link{display:inline-flex;align-items:center;gap:0.4rem;font-size:0.83rem;font-weight:700;color:var(--red);letter-spacing:0.02em;transition:gap 0.2s}
.service-card:hover .service-link{gap:0.7rem}
.service-tag{display:inline-block;background:var(--red-bg);color:var(--red);border:1px solid var(--red-bdr);border-radius:4px;font-size:0.7rem;font-weight:700;letter-spacing:0.08em;padding:0.2rem 0.6rem;margin-bottom:0.75rem;text-transform:uppercase}

/* ---- Grids ---- */
.grid-2{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem}

/* ---- Page Hero ---- */
.page-hero{padding:140px 2rem 70px;background:var(--charcoal);position:relative;overflow:hidden}
.page-hero-pattern{position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,0.04) 1px,transparent 1px);background-size:28px 28px}
.page-hero-accent{position:absolute;top:0;right:0;width:500px;height:100%;background:linear-gradient(135deg,transparent 40%,rgba(192,0,26,0.12))}
.page-hero-inner{position:relative;z-index:2;max-width:1200px;margin:0 auto}
.page-hero h1{color:#fff;margin-bottom:0.75rem}
.page-hero p{color:rgba(255,255,255,0.55);max-width:600px;font-size:1rem}
.breadcrumb{display:flex;align-items:center;gap:0.5rem;font-size:0.78rem;color:rgba(255,255,255,0.35);margin-bottom:1.25rem}
.breadcrumb a{color:rgba(255,255,255,0.5);transition:color 0.2s}
.breadcrumb a:hover{color:var(--red)}
.breadcrumb span{color:rgba(255,255,255,0.25)}

/* ---- CTA Banner ---- */
.cta-banner{background:var(--red);border-radius:var(--radius2);padding:3.5rem;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,0.15) 0%,transparent 60%)}
.cta-banner h2{color:#fff;position:relative;z-index:1;margin-bottom:0.75rem}
.cta-banner p{color:rgba(255,255,255,0.8);position:relative;z-index:1;margin-bottom:2rem}
.cta-banner .btn-group{display:flex;gap:1rem;flex-wrap:wrap;position:relative;z-index:1}

/* ---- Stats row ---- */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:0;background:var(--charcoal);border-radius:var(--radius2);overflow:hidden}
.stat-item{padding:2rem;text-align:center;border-right:1px solid rgba(255,255,255,0.06)}
.stat-item:last-child{border-right:none}
.stat-num{font-family:'Playfair Display',serif;font-size:2.4rem;font-weight:700;color:#fff;line-height:1}
.stat-num em{font-style:normal;color:var(--red)}
.stat-label{font-size:0.78rem;color:rgba(255,255,255,0.4);margin-top:0.4rem;letter-spacing:0.04em}

/* ---- Industry pills ---- */
.industry-grid{display:flex;flex-wrap:wrap;gap:0.75rem}
.industry-pill{display:flex;align-items:center;gap:0.5rem;background:#fff;border:1px solid var(--border);border-radius:100px;padding:0.55rem 1.1rem;font-size:0.85rem;font-weight:500;color:var(--char3);transition:var(--transition)}
.industry-pill:hover{border-color:var(--red);color:var(--red);background:var(--red-bg)}
.industry-pill span{font-size:1rem}

/* ---- Testimonials ---- */
.testimonial-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius2);padding:2rem;position:relative}
.testimonial-card::before{content:'"';font-family:'Playfair Display',serif;font-size:5rem;color:var(--red);opacity:0.12;position:absolute;top:-0.5rem;left:1.5rem;line-height:1}
.stars{color:#F59E0B;font-size:0.85rem;margin-bottom:0.75rem}
.testimonial-text{color:var(--gray);font-size:0.92rem;margin-bottom:1.5rem;padding-top:0.5rem;line-height:1.8}
.testimonial-author{display:flex;align-items:center;gap:0.75rem}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:var(--red);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.85rem;flex-shrink:0}
.testimonial-name{font-weight:600;font-size:0.88rem;color:var(--charcoal)}
.testimonial-org{font-size:0.78rem;color:var(--gray2)}

/* ---- Process steps ---- */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.process-steps::before{content:'';position:absolute;top:24px;left:12.5%;right:12.5%;height:2px;background:linear-gradient(90deg,var(--red),rgba(192,0,26,0.2));z-index:0}
.step{text-align:center;position:relative;z-index:1;padding:0 1rem}
.step-num{width:48px;height:48px;border-radius:50%;background:var(--red);color:#fff;font-weight:800;font-size:1rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;box-shadow:0 4px 16px rgba(192,0,26,0.3)}
.step h4{color:var(--charcoal);font-family:'Inter',sans-serif;font-weight:700;font-size:0.92rem;margin-bottom:0.4rem}
.step p{font-size:0.82rem;color:var(--gray)}

/* ---- Forms ---- */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:0.82rem;font-weight:600;color:var(--charcoal);margin-bottom:0.4rem}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:0.8rem 1rem;background:#fff;border:1.5px solid var(--border);border-radius:7px;color:var(--charcoal);font-size:0.9rem;font-family:'Inter',sans-serif;transition:border-color 0.2s;outline:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(192,0,26,0.08)}
.form-group textarea{resize:vertical;min-height:120px}
.form-group select option{color:var(--charcoal)}

/* ---- Download banner ---- */
.download-bar{background:linear-gradient(135deg,var(--off) 0%,#fff 100%);border:1.5px solid var(--border);border-radius:var(--radius2);padding:2rem 2.5rem;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.download-icon{width:56px;height:56px;border-radius:12px;background:var(--red-bg);border:1.5px solid var(--red-bdr);display:flex;align-items:center;justify-content:center;font-size:1.6rem;flex-shrink:0}
.download-info h4{color:var(--charcoal);font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;margin-bottom:0.2rem}
.download-info p{font-size:0.82rem;color:var(--gray);margin:0}

/* ---- FAQ ---- */
.faq-item{border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;margin-bottom:0.75rem;transition:border-color 0.2s}
.faq-item:hover{border-color:var(--red-bdr)}
.faq-q{padding:1.1rem 1.25rem;font-weight:600;font-size:0.92rem;color:var(--charcoal);cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:#fff;user-select:none}
.faq-q::after{content:'+';font-size:1.3rem;color:var(--red);transition:transform 0.25s;line-height:1}
.faq-item.open .faq-q::after{content:'−'}
.faq-a{display:none;padding:0 1.25rem 1.1rem;font-size:0.88rem;color:var(--gray);line-height:1.8;background:#fff}
.faq-item.open .faq-a{display:block}

/* ---- Footer ---- */
footer{background:var(--charcoal);padding:70px 2rem 0}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,0.07)}
.footer-logo{display:flex;align-items:center;gap:0.6rem;margin-bottom:1rem}
.footer-logo img{height:38px;width:auto;object-fit:contain}
.footer-logo-text{font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:700;color:#fff}
.footer-tagline{font-size:0.82rem;color:rgba(255,255,255,0.35);font-style:italic;margin-bottom:1rem}
.footer-brand p{font-size:0.88rem;color:rgba(255,255,255,0.45);max-width:280px;margin-bottom:1rem;line-height:1.7}
.footer-col h4{font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:1.25rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.55rem}
.footer-col ul li a{font-size:0.85rem;color:rgba(255,255,255,0.5);transition:color 0.2s}
.footer-col ul li a:hover{color:#fff}
.footer-contact-item{display:flex;align-items:flex-start;gap:0.6rem;margin-bottom:0.75rem}
.footer-contact-item span:first-child{color:var(--red);font-size:0.9rem;flex-shrink:0;margin-top:0.15rem}
.footer-contact-item a,.footer-contact-item p{font-size:0.83rem;color:rgba(255,255,255,0.5);margin:0;transition:color 0.2s}
.footer-contact-item a:hover{color:#fff}
.footer-bottom{max-width:1200px;margin:0 auto;padding:1.5rem 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:0.78rem;color:rgba(255,255,255,0.25)}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{font-size:0.78rem;color:rgba(255,255,255,0.3);transition:color 0.2s}
.footer-bottom-links a:hover{color:rgba(255,255,255,0.7)}

/* ---- Disclaimer ---- */
.disclaimer-bar{background:rgba(255,255,255,0.04);border-top:1px solid rgba(255,255,255,0.06);padding:0.6rem 2rem;text-align:center;font-size:0.72rem;color:rgba(255,255,255,0.2);max-width:100%}

/* ---- Back to top ---- */
#back-top{position:fixed;bottom:1.75rem;right:1.75rem;width:42px;height:42px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;pointer-events:none;transition:var(--transition);z-index:500;font-size:1.1rem;color:#fff;border:none;box-shadow:0 4px 16px rgba(192,0,26,0.4)}
#back-top.visible{opacity:1;pointer-events:all}
#back-top:hover{background:var(--red2);transform:translateY(-3px)}

/* ---- Scroll animations ---- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.65s ease,transform 0.65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-30px);transition:opacity 0.65s ease,transform 0.65s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(30px);transition:opacity 0.65s ease,transform 0.65s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}
.d1{transition-delay:0.1s}.d2{transition-delay:0.2s}.d3{transition-delay:0.3s}.d4{transition-delay:0.4s}.d5{transition-delay:0.5s}

/* ---- Split layout ---- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.split-img{width:100%;border-radius:var(--radius2);object-fit:cover;box-shadow:var(--shadow3)}
.split-img-wrap{position:relative}
.img-badge{position:absolute;bottom:1.25rem;left:1.25rem;background:#fff;border-radius:var(--radius);padding:1rem 1.25rem;box-shadow:var(--shadow2)}
.img-badge-val{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:var(--charcoal);line-height:1}
.img-badge-label{font-size:0.72rem;color:var(--gray);margin-top:0.2rem;font-weight:500}

/* ---- Compliance badges ---- */
.compliance-row{display:flex;flex-wrap:wrap;gap:0.75rem;margin-top:1rem}
.compliance-badge{background:#fff;border:1.5px solid var(--border);border-radius:7px;padding:0.5rem 1rem;font-size:0.8rem;font-weight:700;color:var(--charcoal);display:flex;align-items:center;gap:0.4rem}
.compliance-badge span{color:var(--red)}

/* ---- Responsive ---- */
/* ---- Tablet ---- */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr;gap:2rem}
  .hero-panel{display:none}
  .split{grid-template-columns:1fr;gap:2.5rem}
  .split-img{height:300px !important}
  .stats-row{grid-template-columns:1fr 1fr}
  .stat-item:nth-child(2){border-right:none}
  .process-steps::before{display:none}
  .process-steps{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-inner{grid-template-columns:1fr 1fr}
  /* Contact page two-col → stack */
  .contact-grid{grid-template-columns:1fr !important}
  /* Careers grid */
  .career-vals{grid-template-columns:1fr 1fr !important}
}

/* ---- Mobile ---- */
@media(max-width:768px){
  .nav-links,.nav-right{display:none}
  .hamburger{display:flex}

  /* Sections */
  .section{padding:55px 1.1rem}
  .hero{padding:85px 1.1rem 45px}
  .page-hero{padding:105px 1.1rem 48px}
  .page-hero h1{font-size:clamp(1.6rem,7vw,2.4rem)}

  /* Hero stats */
  .hero-stats{flex-direction:column;gap:1rem;padding-top:1.5rem}
  .hero-stat{border-right:none;border-bottom:1px solid rgba(255,255,255,0.08);padding:0 0 1rem}
  .hero-stat:last-child{border-bottom:none;padding-bottom:0}
  .hero h1{font-size:clamp(1.8rem,8vw,2.8rem)}
  .hero-desc{font-size:0.95rem}
  .hero-btns{flex-direction:column;gap:0.75rem}
  .hero-btns .btn{width:100%;justify-content:center;text-align:center}

  /* Grids */
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}

  /* Stats */
  .stats-row{grid-template-columns:1fr 1fr}
  .stat-num{font-size:1.8rem}

  /* Split */
  .split{grid-template-columns:1fr;gap:2rem}
  .split-img{height:240px !important}
  .split > div:first-child{order:1}
  .split > div:last-child{order:2}
  .img-badge{bottom:0.75rem;left:0.75rem;padding:0.75rem 1rem}
  .img-badge-val{font-size:1.2rem}

  /* Process steps */
  .process-steps{grid-template-columns:1fr;gap:1.25rem}
  .process-steps::before{display:none}

  /* Download bar */
  .download-bar{flex-direction:column;text-align:center;padding:1.75rem 1.25rem;gap:1.25rem}
  .download-bar > div{flex-direction:column;align-items:center;gap:0.75rem;text-align:center}

  /* CTA banner */
  .cta-banner{padding:2rem 1.25rem}
  .cta-banner .btn-group{flex-direction:column;gap:0.75rem}
  .cta-banner .btn-group .btn{width:100%;justify-content:center}

  /* Contact page */
  .contact-grid{grid-template-columns:1fr !important;gap:2rem !important}
  .form-row-2{grid-template-columns:1fr !important}

  /* Footer */
  .footer-inner{grid-template-columns:1fr;gap:1.75rem}
  .footer-bottom{flex-direction:column;text-align:center;gap:0.75rem}
  .footer-bottom-links{justify-content:center}

  /* Compliance row */
  .compliance-row{gap:0.5rem}
  .compliance-badge{font-size:0.74rem;padding:0.35rem 0.7rem}

  /* Industry pills */
  .industry-grid{gap:0.5rem}
  .industry-pill{font-size:0.8rem;padding:0.45rem 0.85rem}

  /* Testimonials */
  .testimonial-text{font-size:0.88rem}

  /* Cards */
  .card{padding:1.5rem}
  .service-card-body{padding:1.25rem}

  /* Breadcrumb */
  .breadcrumb{flex-wrap:wrap;font-size:0.72rem}

  /* Careers form */
  .career-grid{grid-template-columns:1fr !important}
  .career-vals{grid-template-columns:1fr 1fr !important}

  /* Section header */
  .section-header{margin-bottom:2.5rem}

  /* Back to top */
  #back-top{bottom:1.25rem;right:1.25rem;width:38px;height:38px;font-size:1rem}

  /* Traceability chain */
  .trace-chain{max-width:340px;margin:0 auto}

  /* Nav logo */
  .nav-logo img{height:34px}
  .nav-logo .brand{font-size:1rem}
  .navbar{padding:0 1.1rem}

  /* Form inputs on mobile */
  .form-group input,.form-group textarea,.form-group select{font-size:16px} /* prevents zoom on iOS */

  /* Compliance strip label */
  .compliance-strip-label{display:none}

  /* Stat boxes in service pages */
  .stat-boxes-row{flex-direction:column !important}
  .stat-boxes-row > div{min-width:100% !important}

  /* Page hero inner */
  .page-hero-inner .label{font-size:0.68rem}

  /* Footer brand */
  .footer-logo img{height:32px}
  .footer-logo-text{font-size:1rem}
}

/* ---- Extra small (≤420px) ---- */
@media(max-width:420px){
  .stats-row{grid-template-columns:1fr}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.06)}
  .stat-item:last-child{border-bottom:none}
  .career-vals{grid-template-columns:1fr !important}
  .hero h1{font-size:1.75rem}
  .hero-badge{font-size:0.68rem;padding:0.28rem 0.75rem}
}
