/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0C1B2E;
  --navy-light: #132940;
  --accent: #1E8FBC;
  --accent-light: #e8f4fa;
  --cta: #E8740C;
  --cta-hover: #d16808;
  --text: #1a1a2e;
  --text-secondary: #555e6e;
  --text-light: #7a8494;
  --bg-light: #f7f8fa;
  --bg-section: #f0f4f8;
  --white: #ffffff;
  --border: #e2e6ec;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(12,27,46,0.06);
  --shadow-md: 0 4px 20px rgba(12,27,46,0.08);
  --shadow-lg: 0 8px 32px rgba(12,27,46,0.10);
  --max-w: 1200px;
  --transition: 0.25s ease;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 680px; line-height: 1.7; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; font-family: inherit; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,116,12,0.3); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-link { background: none; color: var(--accent); padding: 0; font-weight: 600; font-size: 15px; border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; }
.btn-link:hover { color: var(--cta); }
.btn-link svg { transition: transform var(--transition); }
.btn-link:hover svg { transform: translateX(4px); }
.arrow-icon { display: inline-block; width: 16px; height: 16px; }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: all 0.3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max-w); margin: 0 auto; }

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo a { display: flex; flex-direction: column; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; line-height: 1.2; }
.logo-bar { display: block; height: 3px; background: var(--accent); border-radius: 2px; margin-top: 2px; width: 100%; }
.logo-suffix { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 14px; font-size: 14.5px; font-weight: 500; color: var(--text-secondary); border-radius: 8px; transition: all var(--transition); cursor: pointer; background: none; border: none; font-family: inherit; }
.nav-link:hover { color: var(--navy); background: var(--bg-light); }
.nav-link .chevron { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

/* Dropdowns */
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.2s ease; min-width: 280px; padding: 8px; z-index: 100; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: flex; flex-direction: column; padding: 10px 14px; border-radius: 8px; transition: background 0.15s; }
.dropdown-menu a:hover { background: var(--bg-light); }
.dropdown-menu .dd-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.dropdown-menu .dd-desc { font-size: 12.5px; color: var(--text-light); margin-top: 2px; }
.dropdown-simple a { padding: 9px 14px; font-size: 14px; font-weight: 500; color: var(--text-secondary); border-radius: 8px; display: block; }
.dropdown-simple a:hover { background: var(--bg-light); color: var(--navy); }
.dropdown-footer { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 4px; }
.dropdown-footer a { font-weight: 600; color: var(--accent) !important; font-size: 13.5px; }
.header-cta { padding: 10px 22px; font-size: 14px; }

/* Mobile toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero-section { padding: 140px 0 80px; background: linear-gradient(170deg, #f7f9fc 0%, #eef3f8 40%, #fff 100%); position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(30,143,188,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero-section h1 { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero-section h1 em { font-style: italic; color: var(--accent); }
.hero-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.team-hub { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; }
.team-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: var(--navy); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 8px 32px rgba(12,27,46,0.25); z-index: 2; }
.team-center span:first-child { font-size: 13px; letter-spacing: 2px; }
.team-center span:last-child { font-size: 15px; letter-spacing: 2px; margin-top: 2px; }
.team-hub::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 85%; height: 85%; border: 2px dashed rgba(30,143,188,0.15); border-radius: 50%; }
.team-node { position: absolute; background: var(--white); border: 2px solid var(--border); border-radius: 14px; padding: 14px 18px; text-align: center; box-shadow: var(--shadow-md); transition: all 0.4s ease; z-index: 1; min-width: 130px; }
.team-node:hover { transform: scale(1.05); border-color: var(--accent); box-shadow: 0 8px 24px rgba(30,143,188,0.15); }
.team-node .node-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.team-node .node-tech { font-size: 11.5px; color: var(--text-light); margin-top: 3px; }
.team-node:nth-child(2) { top: 2%; left: 50%; transform: translateX(-50%); }
.team-node:nth-child(3) { top: 22%; right: 0; }
.team-node:nth-child(4) { top: 55%; right: -2%; }
.team-node:nth-child(5) { bottom: 4%; right: 12%; }
.team-node:nth-child(6) { bottom: 4%; left: 12%; }
.team-node:nth-child(7) { top: 55%; left: -2%; }
.team-node:nth-child(8) { top: 22%; left: 0; }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 48px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border-radius: var(--radius-sm); }
.trust-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.trust-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trust-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.5; }

/* ===== STATS ===== */
.stats-section { padding: 56px 0; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.stat-item .stat-number { font-size: clamp(36px, 5vw, 52px); font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 500; }

/* ===== SERVICES ===== */
.services-section { padding: 96px 0; background: var(--bg-light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-featured { background: var(--white); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-md); margin-bottom: 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; border: 1px solid var(--border); }
.services-featured h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.services-featured p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.featured-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.featured-stat { background: var(--bg-light); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.featured-stat .fs-number { font-size: 24px; font-weight: 800; color: var(--accent); }
.featured-stat .fs-label { font-size: 12.5px; color: var(--text-light); margin-top: 4px; font-weight: 500; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all var(--transition); }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }

/* ===== IDEAL CLIENT ===== */
.ideal-section { padding: 96px 0; background: var(--white); }
.ideal-header { text-align: center; margin-bottom: 56px; }
.ideal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.ideal-card { background: var(--bg-light); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 20px; align-items: flex-start; border: 1px solid transparent; transition: all var(--transition); }
.ideal-card:hover { border-color: var(--accent); background: var(--white); box-shadow: var(--shadow-sm); }
.ideal-num { font-size: 28px; font-weight: 800; color: rgba(30,143,188,0.2); flex-shrink: 0; line-height: 1; }
.ideal-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.ideal-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.ideal-footer { text-align: center; font-size: 15.5px; color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* ===== WHY US ===== */
.why-section { padding: 96px 0; background: var(--bg-light); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all var(--transition); }
.why-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }

/* ===== PROCESS ===== */
.process-section { padding: 96px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-steps { display: flex; gap: 20px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 60px; right: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(30,143,188,0.2)); z-index: 0; }
.step-card { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(12,27,46,0.2); border: 4px solid var(--white); }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; padding: 0 8px; }

/* ===== INDUSTRIES ===== */
.industries-section { padding: 96px 0; background: var(--bg-light); }
.industries-header { text-align: center; margin-bottom: 48px; }
.industries-header .section-subtitle { margin: 0 auto; }
.industries-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.industry-tag { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; font-size: 15px; font-weight: 600; color: var(--navy); transition: all var(--transition); }
.industry-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== FAQ ===== */
.faq-section { padding: 96px 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); background: none; border: none; width: 100%; text-align: left; font-family: inherit; }
.faq-question .chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--text-light); transition: transform 0.3s; }
.faq-item.active .faq-question .chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ===== BOTTOM CTA ===== */
.cta-section { padding: 80px 0; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(30,143,188,0.12) 0%, transparent 70%); border-radius: 50%; }
.cta-section h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 32px; position: relative; }
.cta-section .btn { position: relative; }

/* ===== FOOTER ===== */
.site-footer { background: #080f1a; padding: 72px 0 0; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.site-footer h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); padding: 5px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== BLOG / ARCHIVE ===== */
.page-header { padding: 140px 0 60px; background: linear-gradient(170deg, #f7f9fc 0%, #eef3f8 40%, #fff 100%); text-align: center; }
.page-header h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.page-header p { font-size: 17px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 64px 0 96px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 12.5px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card h2 a { transition: color var(--transition); }
.blog-card h2 a:hover { color: var(--accent); }
.blog-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Single post */
.single-post-content { max-width: 760px; margin: 0 auto; padding: 140px 24px 96px; }
.single-post-content .post-meta { font-size: 13px; color: var(--text-light); margin-bottom: 16px; display: flex; gap: 16px; }
.single-post-content h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 32px; }
.single-post-content .featured-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.single-post-content .featured-image img { width: 100%; }
.post-content { font-size: 17px; color: var(--text); line-height: 1.8; }
.post-content h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content ul, .post-content ol { margin: 16px 0; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: var(--bg-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text-secondary); }
.post-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.post-content code { background: var(--bg-light); padding: 2px 8px; border-radius: 4px; font-size: 0.9em; }
.post-content pre { background: var(--navy); color: #e2e8f0; padding: 24px; border-radius: var(--radius-sm); overflow-x: auto; margin: 24px 0; }
.post-content pre code { background: none; padding: 0; color: inherit; }

/* Generic page */
.page-content { max-width: 900px; margin: 0 auto; padding: 140px 24px 96px; }
.page-content h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }

/* 404 */
.error-404 { text-align: center; padding: 180px 24px 120px; }
.error-404 h1 { font-size: 120px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-404 h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.error-404 p { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding-bottom: 64px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 8px; font-weight: 600; font-size: 14px; border: 1px solid var(--border); color: var(--text-secondary); transition: all var(--transition); }
.pagination a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-featured { grid-template-columns: 1fr; padding: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta-desktop { display: none; }
  .mobile-toggle { display: block; }

  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 16px; gap: 0; }
  .main-nav.open .nav-item { width: 100%; }
  .main-nav.open .nav-link { padding: 12px 16px; width: 100%; }
  .main-nav.open .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none; padding: 0 0 0 20px; min-width: unset; display: none; }
  .main-nav.open .nav-item.dd-open .dropdown-menu { display: block; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .ideal-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-section h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .featured-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero { padding: 140px 0 60px; background: linear-gradient(170deg, #f7f9fc 0%, #eef3f8 40%, #fff 100%); text-align: center; }
.contact-hero .section-subtitle { margin: 0 auto; }
.contact-section { padding: 64px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.contact-form-wrap h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }

/* Native form styles */
.nex-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nex-contact-form .form-group { margin-bottom: 20px; }
.nex-contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.nex-contact-form input,
.nex-contact-form select,
.nex-contact-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 15px; color: var(--text); transition: border-color var(--transition); background: var(--white); }
.nex-contact-form input:focus,
.nex-contact-form select:focus,
.nex-contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,143,188,0.1); }
.nex-contact-form input::placeholder,
.nex-contact-form textarea::placeholder { color: var(--text-light); }
.nex-contact-form select { 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='none' stroke='%237a8494' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* WPForms override styles */
.contact-form-area .wpforms-container .wpforms-form .wpforms-field-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.contact-form-area .wpforms-container .wpforms-form input[type="text"],
.contact-form-area .wpforms-container .wpforms-form input[type="email"],
.contact-form-area .wpforms-container .wpforms-form input[type="tel"],
.contact-form-area .wpforms-container .wpforms-form textarea,
.contact-form-area .wpforms-container .wpforms-form select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; }
.contact-form-area .wpforms-container .wpforms-form input:focus,
.contact-form-area .wpforms-container .wpforms-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,143,188,0.1); }
.contact-form-area .wpforms-container .wpforms-form .wpforms-submit-container button { background: var(--cta); border: none; border-radius: var(--radius-sm); padding: 14px 28px; font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer; width: 100%; }
.contact-form-area .wpforms-container .wpforms-form .wpforms-submit-container button:hover { background: var(--cta-hover); }

/* Contact info side */
.contact-info-card { background: var(--navy); border-radius: var(--radius); padding: 36px; color: #fff; margin-bottom: 20px; }
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.ci-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 15px; color: rgba(255,255,255,0.85); }
.contact-info-item a:hover { color: var(--accent); }
.contact-quick-facts { background: var(--bg-light); border-radius: var(--radius); padding: 28px 32px; }
.contact-quick-facts h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.quick-fact { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.quick-fact + .quick-fact { border-top: 1px solid var(--border); }
.qf-num { width: 28px; height: 28px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.quick-fact span:last-child { font-size: 14px; color: var(--text-secondary); }

/* ===== SERVICE & INDUSTRY PAGES ===== */
.service-hero { padding: 140px 0 60px; background: linear-gradient(170deg, #f7f9fc 0%, #eef3f8 40%, #fff 100%); text-align: center; }
.service-hero .section-subtitle { margin: 0 auto; }
.service-problem, .service-what, .service-tech, .service-who { padding: 80px 0; }
.service-content-block { max-width: 800px; margin: 0 auto; }
.service-content-block .section-eyebrow { margin-bottom: 20px; }
.service-content-block .post-content { font-size: 17px; }

.service-capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.capability-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: all var(--transition); }
.capability-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.capability-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.capability-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; }

.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tech-tag { display: inline-block; padding: 10px 20px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--navy); transition: all var(--transition); }
.tech-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== ABOUT PAGE ===== */
.about-hero { padding: 140px 0 60px; background: linear-gradient(170deg, #f7f9fc 0%, #eef3f8 40%, #fff 100%); text-align: center; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nex-contact-form .form-row { grid-template-columns: 1fr; }
  .service-capabilities { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .team-node { animation: float 6s ease-in-out infinite; }
  .team-node:nth-child(odd) { animation-delay: -3s; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
}
