:root {
  --blue: #0D5FE3;
  --blue-dark: #0A4FBF;
  --blue-deeper: #0B1F4A;
  --blue-cta: #0A2A6E;
  --dark-footer: #0B1730;
  --gray-bg: #F5F7FA;
  --gray-border: #E2E6EC;
  --text-dark: #1A1A2E;
  --text-body: #4B5563;
  --text-light: #6B7280;
  --white: #fff;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --section-py: 80px;
  --radius: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =========== HEADER =========== */
.header { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.logo img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-dark); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
.nav a:hover { color: var(--blue); }
.nav-arrow { font-size: 9px; opacity: 0.5; }
.nav-phone { font-weight: 600; font-size: 13px; }

.btn-contact { background: var(--blue); color: var(--white); padding: 10px 28px; border-radius: 50px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.btn-contact:hover { background: var(--blue-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; background: var(--white); border-bottom: 1px solid var(--gray-border); padding: 20px 24px; }
.mobile-nav.active { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dark); border-bottom: 1px solid var(--gray-border); }
.mobile-nav .btn-contact { display: inline-block; margin-top: 16px; text-align: center; }

/* =========== LANGUAGE TOGGLE =========== */
.lang-toggle { background: var(--blue); color: var(--white) !important; padding: 4px 12px; border-radius: 50px; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 1px; }
.lang-toggle:hover { background: var(--blue-dark); color: var(--white) !important; }
.lang-toggle-mobile { background: var(--blue); color: var(--white) !important; display: inline-block !important; padding: 6px 16px !important; border-radius: 50px; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 1px; margin-bottom: 8px; border-bottom: none !important; }
.lang-toggle-mobile:hover { background: var(--blue-dark); }

/* =========== HERO =========== */
.hero { padding: 64px 0 0; text-align: center; overflow: hidden; }
.hero h1 { font-size: 56px; font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.hero h1 .blue { color: var(--blue); }
.hero-subtitle { font-size: 18px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-body); margin-bottom: 20px; max-width: 660px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-desc { font-size: 15px; color: var(--text-body); max-width: 660px; margin: 0 auto 24px; line-height: 1.75; }
.hero-cta-label { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--white); padding: 14px 32px; border-radius: 50px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; fill: var(--white); }

.hero-image-wrap { position: relative; margin-top: 48px; max-width: 920px; margin-left: auto; margin-right: auto; }
.hero-image-wrap img { width: 100%; height: auto; aspect-ratio: 1535 / 804; border-radius: var(--radius) var(--radius) 0 0; }

.hero-badge { position: absolute; width: 56px; height: 56px; background: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.hero-badge svg { width: 28px; height: 28px; fill: var(--blue); }
.hero-badge.tr { top: 16px; right: -28px; }
.hero-badge.bl { bottom: 56px; left: -28px; }

/* =========== PARTNERSHIPS =========== */
.partnerships { background: var(--gray-bg); padding: var(--section-py) 0; text-align: center; }
.sh { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.sh .blue { color: var(--blue); }
.ss { font-size: 15px; color: var(--text-body); max-width: 600px; margin: 0 auto 40px; line-height: 1.65; }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 36px; }
.partner-logos img { height: 38px; width: auto; max-width: 140px; object-fit: contain; }

/* =========== PREVENT IT CALLS =========== */
.prevent { padding: var(--section-py) 0; background: var(--white); }
.prevent-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); margin-bottom: 12px; }
.prevent-top { max-width: 700px; margin-bottom: 36px; }
.prevent-top h2 { font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 24px; }
.prevent-top h2 .ub { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.prevent-top p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.prevent-img { width: 100%; border-radius: var(--radius); }

/* =========== OUR APPROACH (DIFFERENCE) =========== */
.diff { padding: var(--section-py) 0; background: var(--gray-bg); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.diff-grid img { width: 100%; border-radius: var(--radius); }
.diff-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); margin-bottom: 12px; }
.diff-text h2 { font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.diff-text h2 .blue { color: var(--blue); }
.diff-text p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }

/* =========== WHAT WE OFFER =========== */
.offer { padding: var(--section-py) 0; background: var(--gray-bg); }
.offer-header { margin-bottom: 44px; }
.offer-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.offer-header h2 .blue { color: var(--blue); }
.offer-header p { font-size: 15px; color: var(--text-body); max-width: 600px; line-height: 1.7; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 36px 30px; display: flex; flex-direction: column; }
.offer-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.offer-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; flex-grow: 1; }
.btn-outline { display: inline-block; padding: 10px 24px; border: 2px solid var(--blue); color: var(--blue); border-radius: 50px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: background 0.2s, color 0.2s; align-self: flex-start; }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* =========== WHY CHOOSE =========== */
.why { padding: var(--section-py) 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.why-text h2 { font-size: 40px; font-weight: 800; line-height: 1.15; margin-bottom: 32px; }
.why-text h2 .blue { color: var(--blue); }
.why-item { margin-bottom: 22px; display: flex; gap: 10px; }
.why-dot { flex-shrink: 0; width: 24px; height: 24px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-dot svg { width: 12px; height: 12px; fill: var(--white); }
.why-item-content strong { font-size: 15px; }
.why-item-content p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-top: 2px; }
.why-img img { width: 100%; border-radius: var(--radius); }

/* =========== INDUSTRY =========== */
.industry { padding: var(--section-py) 0; text-align: center; background: var(--gray-bg); }
.industry .sub-label { text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--text-light); margin-bottom: 16px; }
.industry-desc { font-size: 15px; color: var(--text-body); max-width: 760px; margin: 0 auto 44px; line-height: 1.75; text-align: center; }
.industry-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: left; border-left: 4px solid var(--blue); display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.ind-icon { margin-bottom: 14px; }
.ind-icon svg { width: 36px; height: 36px; fill: var(--blue); }
.industry-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.industry-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.industry-card .btn-outline { font-size: 10.5px; padding: 8px 18px; }

/* =========== PROCESS =========== */
.process { padding: var(--section-py) 0; background: var(--white); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.process-grid img { width: 100%; border-radius: var(--radius); }
.process-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.process-text h2 em { font-style: italic; color: var(--blue); }
.process-text > p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }
.process-step { margin-bottom: 14px; font-size: 14px; color: var(--text-body); line-height: 1.7; padding-left: 20px; position: relative; }
.process-step::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.process-step strong { color: var(--text-dark); }

/* =========== FAQ =========== */
.faq { padding: var(--section-py) 0; background: var(--gray-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.faq-left h2 { font-size: 40px; font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.faq-left h2 .blue { color: var(--blue); }
.faq-left p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.btn-dark { display: inline-block; background: var(--text-dark); color: var(--white); padding: 12px 28px; border-radius: 50px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.btn-dark:hover { background: #333; }
.faq-item { border: 2px solid var(--blue); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; cursor: pointer; background: var(--white); border: none; width: 100%; text-align: left; font-size: 14.5px; font-weight: 700; color: var(--blue); font-family: var(--font); gap: 14px; transition: background 0.15s; }
.faq-question:hover { background: #f7f9ff; }
.faq-chevron { flex-shrink: 0; width: 30px; height: 30px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.faq-chevron svg { width: 13px; height: 13px; fill: var(--white); }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--white); }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-body); line-height: 1.75; }

/* =========== TESTIMONIALS =========== */
.testimonials { padding: var(--section-py) 0; text-align: center; background: var(--white); }
.quote-icon svg { width: 48px; height: 48px; fill: var(--blue); margin: 0 auto 16px; display: block; }
.testimonials h2 { font-size: 36px; font-weight: 800; margin-bottom: 40px; }
.testimonials h2 .blue { color: var(--blue); }
.video-embed { max-width: 800px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.video-embed iframe { width: 100%; height: 100%; border: none; }

/* =========== CONTACT =========== */
.contact { padding: var(--section-py) 0; background: var(--blue); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; opacity: 0.7; margin-bottom: 14px; }
.contact-left h2 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.contact-left p { font-size: 15px; line-height: 1.75; opacity: 0.85; margin-bottom: 14px; }
.btn-wh-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border: 2px solid var(--white); color: var(--white); border-radius: 50px; font-size: 13px; font-weight: 700; transition: background 0.2s, color 0.2s; margin-top: 8px; }
.btn-wh-outline:hover { background: var(--white); color: var(--blue); }
.btn-wh-outline svg { width: 18px; height: 18px; fill: currentColor; }

.contact-form { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 32px; }
.contact-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row input { width: 100%; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea, .form-row input { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; color: var(--white); font-size: 14px; font-family: var(--font); outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder, .form-row input::placeholder { color: rgba(255,255,255,0.75); }
.form-group input:focus, .form-group textarea:focus, .form-row input:focus { border-color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit { background: var(--white); color: var(--blue); padding: 13px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; width: 100%; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; }
.btn-submit:hover { background: var(--gray-bg); color: var(--blue-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateY(-1px); }

/* =========== BOTTOM CTA =========== */
.bottom-cta { padding: 56px 0; background: var(--blue-cta); color: var(--white); text-align: center; }
.bottom-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.bottom-cta p { font-size: 15px; opacity: 0.85; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.btn-white { display: inline-block; background: var(--white); color: var(--blue-cta); padding: 14px 32px; border-radius: 50px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.92; }

/* =========== FOOTER =========== */
.footer { background: var(--dark-footer); color: var(--white); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 36px; }
.footer-brand img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 15px; height: 15px; fill: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.4); margin-left: 14px; }
.footer-bottom a:hover { color: var(--white); }

/* =========== HOMEPAGE: HERO CTA ROW =========== */
.hero-ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.btn-secondary-link { font-size: 14px; font-weight: 600; color: var(--blue); border-bottom: 1px solid var(--blue); padding-bottom: 2px; white-space: nowrap; transition: opacity 0.2s; }
.btn-secondary-link:hover { opacity: 0.7; }

/* =========== HOMEPAGE: WHO WE SERVE =========== */
.serve-section { padding: var(--section-py) 0; background: var(--white); }
.serve-header { text-align: center; margin-bottom: 48px; }
.serve-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); margin-bottom: 12px; }
.serve-header h2 { font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.serve-sub { font-size: 15px; color: var(--text-body); max-width: 700px; margin: 0 auto; line-height: 1.75; }
.serve-callout { font-size: 17px; font-weight: 600; color: var(--text-dark); margin-top: 20px; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.serve-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.serve-card-img { height: 200px; overflow: hidden; }
.serve-card-img img { width: 100%; height: 100%; object-fit: cover; }
.serve-card-body { padding: 28px 24px; }
.serve-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
.serve-card-body p { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }

/* =========== HOMEPAGE: HOW IT WORKS =========== */
.how-header { text-align: center; margin-bottom: 48px; }
.how-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.how-header h2 .blue { color: var(--blue); }
.how-header p { color: var(--text-body); max-width: 700px; margin: 12px auto 0; font-size: 15px; line-height: 1.75; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-grid .offer-card { text-align: center; }
.step-num { width: 64px; height: 64px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
.step-icon { width: 48px; height: 48px; color: var(--blue); margin: 0 auto 12px; display: block; }
.step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 8px; display: block; }
.how-cta { text-align: center; margin-top: 36px; }

/* =========== HOMEPAGE: PROOF / TESTIMONIAL =========== */
.proof { padding: var(--section-py) 0; background: var(--white); text-align: center; }
.proof h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.proof h2 .blue { color: var(--blue); }
.proof .proof-sub { font-size: 18px; color: var(--text-body); max-width: 600px; margin: 16px auto 32px; line-height: 1.7; }
.proof-quote { background: var(--gray-bg); border-radius: var(--radius); padding: 32px; max-width: 700px; margin: 0 auto; border-left: 4px solid var(--blue); text-align: left; }
.proof-quote p { font-size: 18px; font-style: italic; color: var(--text-body); line-height: 1.7; margin-bottom: 0; }
.proof-attribution { font-style: normal; font-size: 14px; color: var(--text-light); margin-top: 12px; }

/* =========== HOMEPAGE: BOTTOM CTA BAND =========== */
.cta-band { padding: var(--section-py) 0; background: linear-gradient(135deg, var(--blue-deeper) 0%, #0D3B8F 100%); color: var(--white); text-align: center; }
.cta-band .container { max-width: 800px; }
.cta-band h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.cta-band p { font-size: 18px; opacity: 0.85; line-height: 1.7; margin-bottom: 36px; }
.cta-band .hero-ctas { margin-bottom: 0; }
.cta-band .btn-primary { background: var(--white); color: var(--blue-deeper); }
.cta-band .btn-primary:hover { background: var(--gray-bg); }
.cta-band .btn-primary svg { fill: var(--blue); }
.cta-band .btn-secondary-link { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4); }
.cta-band .btn-secondary-link:hover { color: var(--white); border-color: var(--white); opacity: 1; }

/* =========== HOMEPAGE: CONTACT DETAILS =========== */
.contact-address { margin-top: 24px; font-weight: 600; color: var(--white); opacity: 0.95; }
.contact-left .address-line { font-weight: 400; opacity: 0.85; }

/* =========== HOMEPAGE: FORM SELECT =========== */
.form-select { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; color: var(--white); font-size: 14px; font-family: var(--font); outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.form-select:focus { border-color: var(--white); }
.form-select option { color: var(--text-dark); background: var(--white); }

/* =========== INNER PAGE HERO =========== */
.page-hero { padding: 84px 0 76px; text-align: center; background: linear-gradient(150deg, var(--blue-deeper) 0%, #0c3285 55%, var(--blue) 100%); color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 65%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.page-hero h2 { font-size: 44px; font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.page-hero p { font-size: 16px; opacity: 0.85; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.page-hero .prevent-label { color: rgba(255,255,255,0.65); opacity: 1; margin-bottom: 16px; }
.page-hero-icon { width: 68px; height: 68px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.page-hero-icon svg { width: 34px; height: 34px; fill: var(--white); }
.page-hero-cta { margin-top: 28px; }
.btn-hero-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--blue-deeper); padding: 14px 32px; border-radius: 50px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 24px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s; }
.btn-hero-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }

/* =========== INNER PAGE SECTIONS =========== */
.inner-section { padding: var(--section-py) 0; }
.inner-section.alt { background: var(--gray-bg); }
.inner-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.inner-section h2 .blue { color: var(--blue); }
.inner-section p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img { width: 100%; border-radius: var(--radius); }
.inner-section .partner-logos img { height: 32px; }

/* =========== VALUE PROPS GRID =========== */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.value-grid-3 { grid-template-columns: repeat(3, 1fr); }
.value-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 32px 28px; }
.value-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.value-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 0; }
.value-card .ind-icon { margin-bottom: 12px; }

/* =========== CONTACT PAGE FORM (on white bg) =========== */
.contact-page-form { background: var(--blue); border-radius: 16px; padding: 36px; color: var(--white); }
.contact-page-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 22px; }

/* =========== CONTACT INFO =========== */
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-info-item strong { font-size: 15px; display: block; margin-bottom: 2px; }
.contact-info-item p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 0; }
.contact-info-item a { color: var(--blue); font-weight: 600; }

/* =========== CAREERS =========== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.benefit-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 0; }

.job-listing { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.job-listing h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.job-listing p { font-size: 14px; color: var(--text-body); margin-bottom: 0; }
.job-listing .btn-outline { flex-shrink: 0; }

.apply-form { background: var(--blue); border-radius: 16px; padding: 40px; color: var(--white); max-width: 700px; margin: 0 auto; }
.apply-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.apply-form > p { font-size: 15px; opacity: 0.85; margin-bottom: 24px; }

/* =========== SOLUTIONS DETAIL =========== */
.solution-detail { padding: 56px 0; }
.solution-detail:nth-child(even) { background: var(--gray-bg); }
.solution-detail h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.solution-detail p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.solution-detail ul { list-style: none; margin: 16px 0 24px; }
.solution-detail li { font-size: 14px; color: var(--text-body); line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 8px; }
.solution-detail li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

/* =========== FEATURE LIST (inline bullets in two-col layouts) =========== */
.feature-list { list-style: none; margin: 16px 0 24px; padding: 0; }
.feature-list li { font-size: 14px; color: var(--text-body); line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 8px; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

/* =========== BLOG =========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-card-img { width: 100%; height: 200px; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img svg { width: 48px; height: 48px; fill: var(--blue); opacity: 0.4; }
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; flex-grow: 1; }
.blog-card-body .btn-outline { font-size: 10.5px; padding: 8px 18px; }

/* =========== BLOG ARTICLE =========== */
.article { padding: var(--section-py) 0; }
.article-header { margin-bottom: 36px; }
.article-header h1 { font-size: 40px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.article-meta { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.article-meta span { margin-right: 16px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 26px; font-weight: 800; margin: 32px 0 12px; color: var(--text-dark); }
.article-body p { font-size: 15px; color: var(--text-body); line-height: 1.85; margin-bottom: 18px; }
.article-body ul { list-style: none; margin: 12px 0 18px; }
.article-body li { font-size: 15px; color: var(--text-body); line-height: 1.75; padding-left: 20px; position: relative; margin-bottom: 8px; }
.article-body li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

.related-posts { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--gray-border); }
.related-posts h3 { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.related-card { background: var(--gray-bg); border-radius: var(--radius); padding: 24px; }
.related-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 10px; }
.related-card a { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .industry-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav, .btn-contact.desktop { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero h2 { font-size: 28px; }
  .sh, .offer-header h2, .prevent-top h2, .diff-text h2, .process-text h2, .testimonials h2, .contact-left h2, .bottom-cta h2, .inner-section h2 { font-size: 28px; }
  .why-text h2, .faq-left h2 { font-size: 30px; }

  .diff-grid, .why-grid, .process-grid, .faq-grid, .contact-grid, .two-col { grid-template-columns: 1fr; gap: 28px; }
  .offer-grid, .value-grid { grid-template-columns: 1fr; }
  .serve-grid, .how-grid { grid-template-columns: 1fr; }
  .serve-header h2 { font-size: 28px; }
  .industry-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge.tr { right: 8px; }
  .hero-badge.bl { left: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-subtitle { font-size: 16px; letter-spacing: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .job-listing { flex-direction: column; align-items: flex-start; }
}

/* =========== NAV DROPDOWNS =========== */
.nav-dropdown { position: relative; }
.nav-dropdown > a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-dark); display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; cursor: pointer; }
.nav-dropdown > a:hover { color: var(--blue); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--gray-border); border-radius: 8px; padding: 8px 0; min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 1001; padding-top: 16px; margin-top: 0; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 16px; background: transparent; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text-body); transition: background 0.15s, color 0.15s; }
.nav-dropdown-menu a:hover { background: var(--gray-bg); color: var(--blue); }

/* =========== BLOG FEATURED SECTION =========== */
.blog-featured { padding: var(--section-py) 0; background: var(--white); }
.blog-featured h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.blog-featured h2 .blue { color: var(--blue); }
.blog-featured > .container > p { font-size: 15px; color: var(--text-body); max-width: 600px; line-height: 1.7; margin-bottom: 40px; }

/* =========== SOLUTION SUBPAGE =========== */
.solution-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.solution-feature-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 32px 28px; }
.solution-feature-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.solution-feature-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 0; }

/* =========== MID CTA =========== */
.mid-cta { padding: 56px 0; background: var(--blue); color: var(--white); text-align: center; }
.mid-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.mid-cta p { font-size: 15px; opacity: 0.85; max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

/* =========== CAREER PAGE =========== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.value-card-sm { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px 24px; }
.value-card-sm h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.value-card-sm p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 0; }

.testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px 24px; font-style: italic; font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* =========== JOB DETAIL PAGE =========== */
.job-detail-section { padding: var(--section-py) 0; }
.job-detail-section.alt { background: var(--gray-bg); }
.job-detail-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.job-detail-section h2 .blue { color: var(--blue); }

/* =========== IT COST CALCULATOR =========== */
.it-cost-page #site-footer > .bottom-cta { display: none; }

.calc-page-hero h2 { max-width: 760px; margin-left: auto; margin-right: auto; }

.calc-section { padding: 0; }
.calc-shell { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 32px; align-items: start; }
.calc-intro { padding-top: 24px; }
.calc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.calc-intro h2 { font-size: 38px; line-height: 1.18; margin-bottom: 16px; }
.calc-copy { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; }
.calc-points { list-style: none; display: grid; gap: 14px; }
.calc-points li { position: relative; padding-left: 18px; color: var(--text-body); font-size: 14px; line-height: 1.7; }
.calc-points li::before { content: ''; position: absolute; top: 10px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

.calc-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: 24px; box-shadow: 0 24px 60px rgba(11,31,74,0.08); overflow: hidden; }
.calc-form { padding: 32px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.calc-field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-dark); }
.calc-field input { width: 100%; min-width: 0; padding: 14px 16px; border: 1px solid var(--gray-border); border-radius: 12px; background: var(--white); color: var(--text-dark); font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.calc-field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,95,227,0.12); }
.calc-field.is-invalid input,
.calc-lead-form input.is-invalid { border-color: #d14343; box-shadow: none; }
.calc-inline-error { min-height: 18px; font-size: 12px; color: #d14343; line-height: 1.35; }
.calc-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; }
.calc-submit:disabled { cursor: not-allowed; opacity: 0.45; transform: none; }
.calc-helper { font-size: 13px; color: var(--text-light); }

.calc-result { border-top: 1px solid var(--gray-border); }
.calc-result-card { background: linear-gradient(135deg, var(--blue-deeper) 0%, #0D3B8F 55%, var(--blue) 100%); color: var(--white); padding: 28px 32px; }
.calc-result-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.calc-result-list { display: grid; gap: 16px; }
.calc-metric { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.calc-metric:last-child { padding-bottom: 0; border-bottom: none; }
.calc-metric span { font-size: 15px; opacity: 0.88; }
.calc-metric strong { font-size: 28px; line-height: 1; letter-spacing: -0.02em; }
.calc-metric-total strong { font-size: 38px; }

.calc-lead { padding: 28px 32px 32px; background: var(--gray-bg); }
.calc-lead-copy h3 { font-size: 24px; line-height: 1.2; margin-bottom: 10px; }
.calc-lead-copy p { color: var(--text-body); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.calc-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-lead-form .calc-field label { text-transform: none; letter-spacing: 0; font-size: 14px; }
.calc-lead-form input { width: 100%; min-width: 0; padding: 14px 16px; border: 1px solid var(--gray-border); border-radius: 12px; background: var(--white); font-size: 15px; color: var(--text-dark); }
.calc-lead-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,95,227,0.12); }
.calc-hp { position: absolute; left: -9999px; }
.calc-turnstile-wrap { margin: 8px 0 16px; overflow-x: auto; }
.calc-form-message { margin-bottom: 16px; }
.calc-form-message.form-message-error { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.calc-form-message.form-message-success { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.calc-lead-submit { width: 100%; justify-content: center; }

.calc-ways-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.calc-way-card { padding: 28px 24px; }
.calc-way-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(13,95,227,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.calc-way-icon svg { width: 28px; height: 28px; }
.calc-way-card h3 { font-size: 18px; margin-bottom: 10px; }
.calc-way-card p { margin-bottom: 0; }

.calc-proof { padding-top: 64px; padding-bottom: 64px; }
.calc-bottom-cta { background: linear-gradient(135deg, var(--blue-cta) 0%, var(--blue-deeper) 100%); }

@media (max-width: 1180px) {
  .calc-shell { grid-template-columns: 1fr; }
  .calc-intro { padding-top: 0; }
  .calc-ways-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .calc-intro h2 { font-size: 30px; }
  .calc-form,
  .calc-result-card,
  .calc-lead { padding: 24px; }
  .calc-grid,
  .calc-lead-grid,
  .calc-ways-grid { grid-template-columns: 1fr; }
  .calc-actions { align-items: stretch; }
  .calc-actions .btn-primary { width: 100%; justify-content: center; }
  .calc-metric { align-items: flex-start; flex-direction: column; }
  .calc-metric strong { font-size: 24px; }
  .calc-metric-total strong { font-size: 32px; }
}
.job-detail-section ul { list-style: none; margin: 16px 0 24px; }
.job-detail-section li { font-size: 14px; color: var(--text-body); line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 8px; }
.job-detail-section li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.job-detail-section p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }

/* =========== LEGAL PAGES =========== */
.legal-content { padding: var(--section-py) 0; }
.legal-content h2 { font-size: 24px; font-weight: 800; margin: 32px 0 12px; color: var(--text-dark); }
.legal-content h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; color: var(--text-dark); }
.legal-content p { font-size: 15px; color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { list-style: disc; margin: 12px 0 18px 24px; }
.legal-content li { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 6px; }

/* =========== RESPONSIVE ADDITIONS =========== */
@media (max-width: 1024px) {
  .solution-features { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-dropdown-menu { display: none !important; }
  .solution-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
}

/* =========== SELECT DROPDOWN =========== */
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select:focus { border-color: var(--white); }
.form-select option { color: #333; background: var(--white); }

/* =========== BLOG FEATURED SPACING =========== */
.blog-featured { padding: var(--section-py) 0; background: var(--white); }
.blog-featured + .contact { margin-top: 0; }

/* =========== BLOG FILTERS =========== */
.blog-filters { margin-bottom: 32px; }
.filter-pill:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

/* =========== BLOG PAGINATION =========== */
.blog-pagination button:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

/* =========== ABOUT GALLERY RESPONSIVE =========== */
@media (max-width: 768px) {
  .about-gallery { grid-template-columns: 1fr !important; }
  .stats-row { grid-template-columns: 1fr 1fr !important; }
}

/* =========== ARTICLE FEATURED IMAGE =========== */
.article-featured-img {
  margin-bottom: 36px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========== ACCESSIBILITY: SR-ONLY =========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========== ACCESSIBILITY: FOCUS-VISIBLE =========== */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* White outline for dark/blue backgrounds */
.hero :focus-visible,
.contact :focus-visible,
.cta-band :focus-visible,
.footer :focus-visible,
.mid-cta :focus-visible,
.bottom-cta :focus-visible {
  outline-color: var(--white);
}

.btn-primary:focus-visible,
.btn-contact:focus-visible,
.btn-outline:focus-visible,
.btn-submit:focus-visible,
.btn-wh-outline:focus-visible,
.btn-secondary-link:focus-visible {
  outline-offset: 3px;
}

/* =========== STAT BLOCK =========== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* =========== SERVE CARD CTA =========== */
.serve-card-body .btn-outline {
  margin-top: 16px;
}
.serve-cta {
  text-align: center;
  margin-top: 36px;
}


/* =========== BLOG POST: BREADCRUMB =========== */
.blog-breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-border);
  padding: 10px 0;
}
.blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-light);
}
.blog-breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: var(--text-light);
}
.blog-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.blog-breadcrumb a:hover {
  text-decoration: underline;
}

/* =========== BLOG POST: AUTHOR BYLINE =========== */
.blog-author {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}
.blog-author a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

/* =========== BLOG POST: ARTICLE LAYOUT (TOC SIDEBAR) =========== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
}

/* =========== BLOG POST: TABLE OF CONTENTS =========== */
.blog-toc {
  position: sticky;
  top: 96px;
  order: 2;
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
}
.blog-toc-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-toc ol {
  list-style: none;
  counter-reset: toc-counter;
}
.blog-toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
}
.blog-toc ol li::before {
  display: none;
}
.blog-toc ol li a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 2px 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}
.blog-toc ol li a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
}

/* =========== BLOG POST: FAQ ACCORDION =========== */
.blog-faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.blog-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.blog-faq-item summary::-webkit-details-marker { display: none; }
.blog-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  margin-left: 12px;
}
.blog-faq-item[open] summary::after {
  content: '−';
}
.blog-faq-item[open] {
  border-color: var(--blue);
}
.blog-faq-item p {
  padding: 0 20px 16px;
  margin-bottom: 0;
}

/* =========== BLOG POST: CTA BUTTON =========== */
.blog-cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-border);
}

/* =========== BLOG POST: BACK TO TOP =========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.back-to-top svg { width: 20px; height: 20px; fill: var(--white); }
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* =========== BLOG POST: HERO SCRIM =========== */
/* Scoped to body.blog-post to avoid darkening solid-blue heroes on other pages */
body.blog-post .page-hero {
  position: relative;
}
body.blog-post .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 0;
  display: none;
}
body.blog-post .page-hero .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  body.blog-post .page-hero::after {
    display: block;
  }
  .article-layout {
    display: block;
  }
  .blog-toc {
    display: none;
  }
}

/* =========== POLISH: CARD HOVER STATES =========== */
.serve-card { transition: box-shadow 0.3s, transform 0.3s; }
.serve-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.09); transform: translateY(-4px); }
.serve-card-img img { transition: transform 0.5s ease; }
.serve-card:hover .serve-card-img img { transform: scale(1.04); }

.value-card { transition: box-shadow 0.3s, transform 0.3s; }
.value-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }

.industry-card { transition: box-shadow 0.3s, transform 0.3s; }
.industry-card:hover { box-shadow: 0 8px 28px rgba(13,95,227,0.12); transform: translateY(-4px); }

.offer-card { transition: box-shadow 0.3s, transform 0.3s; }
.offer-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }

.benefit-card { transition: box-shadow 0.3s, transform 0.3s; }
.benefit-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }

/* =========== POLISH: BLOG CATEGORY PILL =========== */
.blog-card-date {
  display: inline-block;
  background: rgba(13,95,227,0.08);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* =========== POLISH: FORM ERROR/SUCCESS STATES =========== */
.form-message-error {
  background: rgba(239,68,68,0.14);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.form-message-success {
  background: rgba(34,197,94,0.14);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* =========== POLISH: HERO IMAGE SHADOW =========== */
.hero-image-wrap { box-shadow: 0 24px 80px rgba(13,95,227,0.1); }

/* =========== POLISH: PARTNER LOGO HOVER =========== */
.partner-logos img { transition: opacity 0.2s; }
.partner-logos img:hover { opacity: 0.6; }

/* =========== POLISH: ACTIVE NAV STATE =========== */
.nav a.nav-active,
.nav-dropdown > a.nav-active { color: var(--blue) !important; }

/* =========== POLISH: SECTION TITLE (contact page inline h1) =========== */
.section-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-title { font-size: 32px; }
}

/* =========== POLISH: SCROLL FADE-UP ANIMATION =========== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.08s; }
.fade-up[data-delay="2"] { transition-delay: 0.16s; }
.fade-up[data-delay="3"] { transition-delay: 0.24s; }
.fade-up[data-delay="4"] { transition-delay: 0.32s; }

/* =========== POLISH: STAT SECTION DIVIDERS =========== */
@media (min-width: 769px) {
  .stat-item + .stat-item {
    border-left: 1px solid var(--gray-border);
    padding-left: 28px;
  }
}

/* =========== POLISH: THANK-YOU PAGE COMPONENTS =========== */
.ty-step { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.ty-step-num {
  flex-shrink: 0;
  min-width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}
.ty-step-body h3 { margin-bottom: 6px; font-size: 18px; }
.ty-step-body p { color: var(--text-body); line-height: 1.7; margin-bottom: 0; }
.ty-callout {
  padding: 24px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  text-align: center;
  margin-top: 40px;
}
.ty-callout p { color: var(--text-body); margin-bottom: 8px; }
.ty-callout .ty-phone { font-size: 20px; font-weight: 700; }
.ty-callout .ty-phone a { color: var(--blue); }
.ty-ctas { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========== LAUNCH FIX: TIGHTER SECTION PADDING =========== */
.serve-section,
.proof,
.partnerships,
.testimonials,
.blog-featured { padding: 64px 0; }

/* =========== LAUNCH FIX: TABLE OVERFLOW ON MOBILE =========== */
.article-body table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.article-body td,
.article-body th {
  min-width: 120px;
  padding: 10px 14px;
  border: 1px solid var(--gray-border);
  font-size: 14px;
}
.article-body thead th {
  background: var(--gray-bg);
  font-weight: 700;
}

/* =========== LAUNCH FIX: FOOTER TAP TARGETS =========== */
@media (max-width: 768px) {
  .footer-col a {
    display: block;
    padding-block: 6px;
  }
}

/* =========== LAUNCH FIX: MOBILE HERO IMAGE =========== */
@media (max-width: 768px) {
  .hero-image-wrap {
    margin-top: 28px;
  }
  .hero-image-wrap img {
    border-radius: var(--radius);
    height: 220px;
    object-fit: cover;
  }
}

/* =========== LAUNCH FIX: BLOG SIDEBAR REORDER ON MOBILE =========== */
@media (max-width: 768px) {
  .article-layout {
    display: flex;
    flex-direction: column;
  }
  .blog-toc {
    display: block;
    order: -1;
    position: static;
    margin-bottom: 28px;
  }
  .article-body {
    order: 2;
  }
}

/* =========== LAUNCH FIX: PARTNER LOGOS LARGER =========== */
.partner-logos img { height: 44px; }

/* =========== LAUNCH FIX: NEWSLETTER VISUAL DISTINCTION =========== */
.newsletter-section {
  background: #f0f4ff;
  border-top: 1px solid #dde4f7;
  border-bottom: 1px solid #dde4f7;
}
