/* ===== Digi Anna Reddy — Pure CSS (No Frameworks) ===== */
/* Fonts */
/* Local fonts — no CDN dependency */
@font-face { font-family: 'Space Grotesk'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/space-grotesk-400.ttf') format('truetype'); }
@font-face { font-family: 'Space Grotesk'; font-weight: 500; font-style: normal; font-display: swap; src: url('fonts/space-grotesk-500.ttf') format('truetype'); }
@font-face { font-family: 'Space Grotesk'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/space-grotesk-600.ttf') format('truetype'); }
@font-face { font-family: 'Space Grotesk'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/space-grotesk-700.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/dm-sans-400.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-weight: 500; font-style: normal; font-display: swap; src: url('fonts/dm-sans-500.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-weight: 600; font-style: normal; font-display: swap; src: url('fonts/dm-sans-600.ttf') format('truetype'); }
@font-face { font-family: 'DM Sans'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/dm-sans-700.ttf') format('truetype'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-style: normal; font-display: swap; src: url('fonts/jetbrains-mono-400.ttf') format('truetype'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 700; font-style: normal; font-display: swap; src: url('fonts/jetbrains-mono-700.ttf') format('truetype'); }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #f8f9fb; color: #0F172A; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(15,23,42,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.navbar-logo img { width: 160px; height: auto; object-fit: contain; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: #cbd5e1; transition: color 0.2s; }
.navbar-links a:hover, .navbar-links a.active { color: #F97316; }
.navbar-cta { display: flex; align-items: center; gap: 1rem; }
.navbar-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #cbd5e1; }
.navbar-phone:hover { color: #fff; }
.navbar-phone svg { width: 16px; height: 16px; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: rgba(15,23,42,0.98); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 1rem; }
.mobile-menu a { display: block; padding: 0.5rem 0; font-size: 1rem; font-weight: 500; color: #cbd5e1; }
.mobile-menu a:hover { color: #F97316; }
.mobile-menu .mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 1023px) {
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Space Grotesk', sans-serif; }
.btn-primary { background: #F97316; color: #fff; padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-primary:hover { background: #EA580C; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-blue { background: transparent; color: #3B82F6; border: 1px solid rgba(59,130,246,0.3); padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-outline-blue:hover { background: rgba(59,130,246,0.1); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; background: linear-gradient(135deg, #0F172A 0%, #0F172A 50%, rgba(15,23,42,0.85) 100%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; mix-blend-mode: lighten; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, #0F172A, rgba(15,23,42,0.8), transparent); }
.hero .container { position: relative; z-index: 10; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 9999px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #F97316; animation: pulse 2s infinite; }
.hero-badge span { color: #F97316; font-size: 0.875rem; font-weight: 500; font-family: 'Space Grotesk', sans-serif; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { font-size: 3.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.hero h1 .orange { color: #F97316; }
.hero-desc { font-size: 1.125rem; color: #cbd5e1; margin-bottom: 1rem; max-width: 32rem; }
.hero-sub { font-size: 1rem; color: #94a3b8; margin-bottom: 2rem; max-width: 32rem; }
.hero-sub strong { color: #F97316; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: #94a3b8; }
.hero-trust .check { display: flex; align-items: center; gap: 0.375rem; }
.hero-trust svg { width: 16px; height: 16px; color: #4ade80; }
.hero-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 6rem; background: linear-gradient(to top, #f8f9fb, transparent); }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.75rem; padding: 1.5rem; text-align: center; }
.stat-card .number { font-size: 2.25rem; font-weight: 700; color: #fff; font-family: 'JetBrains Mono', monospace; margin-bottom: 0.25rem; }
.stat-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; font-family: 'Space Grotesk', sans-serif; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-muted { background: #f1f5f9; }
.section-dark { background: #0F172A; }
.section-label { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #3B82F6; font-family: 'Space Grotesk', sans-serif; }
.section-title { font-size: 2.25rem; font-weight: 700; color: #0F172A; margin-top: 0.5rem; margin-bottom: 1rem; }
.section-title .orange { color: #F97316; }
.section-title-white { color: #fff; }
.section-desc { color: #64748b; max-width: 42rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }

/* ===== CONSULTATION SECTION ===== */
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.consult-img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(59,130,246,0.1); width: 100%; }
.consult-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); margin-bottom: 1rem; font-size: 0.875rem; font-weight: 600; color: #F97316; font-family: 'Space Grotesk', sans-serif; }
.consult-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.consult-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.consult-item svg { width: 20px; height: 20px; color: #F97316; margin-top: 2px; flex-shrink: 0; }
.consult-item .title { font-weight: 600; font-size: 0.875rem; color: #0F172A; }
.consult-item .desc { font-size: 0.875rem; color: #64748b; }
.price-box { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.price-tag { background: #0F172A; border-radius: 0.5rem; padding: 0.75rem 1.25rem; text-align: center; }
.price-tag .amount { font-size: 1.5rem; font-weight: 700; color: #F97316; font-family: 'JetBrains Mono', monospace; }
.price-tag .fee { font-size: 0.75rem; color: #94a3b8; }
.price-note { font-size: 0.875rem; color: #64748b; }
.price-note strong { color: #0F172A; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; border: 1px solid #e2e8f0; transition: all 0.3s; }
.service-card:hover { border-color: rgba(59,130,246,0.3); box-shadow: 0 10px 25px -5px rgba(59,130,246,0.05); }
.service-card .icon-box { width: 3rem; height: 3rem; border-radius: 0.5rem; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-card .icon-box svg { width: 24px; height: 24px; color: #3B82F6; }
.service-card h3 { font-size: 1.125rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin-bottom: 0.75rem; }
.service-card .link { font-size: 0.875rem; font-weight: 600; color: #F97316; display: flex; align-items: center; gap: 0.25rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img { border-radius: 1rem; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1); width: 100%; }
.why-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: #fff; border-radius: 0.75rem; padding: 1.25rem; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); border: 1px solid #e2e8f0; }
.why-badge .num { font-size: 1.875rem; font-weight: 700; color: #F97316; font-family: 'JetBrains Mono', monospace; }
.why-badge .txt { font-size: 0.875rem; color: #64748b; }
.why-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.why-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.why-item .icon-sm { width: 2rem; height: 2rem; border-radius: 0.5rem; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-item .icon-sm svg { width: 16px; height: 16px; color: #3B82F6; }
.why-item .title { font-weight: 600; font-size: 0.875rem; color: #0F172A; }
.why-item .text { font-size: 0.875rem; color: #64748b; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; border: 1px solid #e2e8f0; position: relative; overflow: hidden; transition: all 0.3s; }
.process-card:hover { border-color: rgba(249,115,22,0.3); }
.process-card .big-num { position: absolute; top: 0.75rem; right: 0.75rem; font-size: 3rem; font-weight: 700; color: rgba(0,0,0,0.04); font-family: 'JetBrains Mono', monospace; }
.process-card .icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.process-card .icon-box svg { width: 20px; height: 20px; color: #F97316; }
.process-card .step-label { font-size: 0.75rem; font-weight: 700; color: #F97316; font-family: 'JetBrains Mono', monospace; margin-bottom: 0.5rem; }
.process-card h3 { font-size: 1.125rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; border: 1px solid #e2e8f0; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: #F97316; color: #F97316; }
.testimonial-text { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: #0F172A; font-family: 'Space Grotesk', sans-serif; }
.testimonial-biz { font-size: 0.75rem; color: #94a3b8; }

/* ===== FAQ ===== */
.faq-item { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; margin-bottom: 0.75rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; background: none; border: none; text-align: left; cursor: pointer; }
.faq-question span { font-size: 0.875rem; font-weight: 600; color: #0F172A; font-family: 'Space Grotesk', sans-serif; padding-right: 1rem; }
.faq-question svg { width: 20px; height: 20px; color: #64748b; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question svg { color: #F97316; transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; }
.faq-answer p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 6rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.85); }
.cta-section .container { position: relative; z-index: 10; text-align: center; }
.cta-section h2 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.cta-section h2 .orange { color: #F97316; }
.cta-section p { color: #cbd5e1; max-width: 36rem; margin: 0 auto 2.5rem; font-size: 1.125rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ===== FOOTER ===== */
.footer { background: #0F172A; color: #cbd5e1; }
.footer-gradient { height: 4px; background: linear-gradient(90deg, #3B82F6, #6366F1, #F97316); }
.footer .container { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.footer-brand img { width: 200px; height: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: #94a3b8; line-height: 1.6; margin-bottom: 1rem; }
.footer-wa { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4ade80; }
.footer-wa:hover { color: #86efac; }
.footer-wa svg { width: 16px; height: 16px; }
.footer h4 { color: #fff; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; font-family: 'Space Grotesk', sans-serif; }
.footer-links a { display: block; font-size: 0.875rem; color: #94a3b8; padding: 0.3rem 0; transition: color 0.2s; }
.footer-links a:hover { color: #F97316; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: #94a3b8; }
.footer-contact-item svg { width: 16px; height: 16px; color: #3B82F6; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #94a3b8; transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: #64748b; }
.footer-bottom a { font-size: 0.75rem; color: #64748b; margin-left: 1.5rem; transition: color 0.2s; }
.footer-bottom a:hover { color: #cbd5e1; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; fill: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: #0F172A; padding: 7rem 0 4rem; }
.page-hero .gradient-line { height: 3px; background: linear-gradient(90deg, #3B82F6, #F97316); }
.page-hero .section-label { color: #3B82F6; }
.page-hero h1 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-top: 0.5rem; margin-bottom: 1rem; }
.page-hero h1 .orange { color: #F97316; }
.page-hero p { color: #94a3b8; max-width: 36rem; font-size: 1.125rem; }

/* ===== SERVICES DETAIL ===== */
.service-detail { padding: 3rem 0; border-bottom: 1px solid #e2e8f0; }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.service-detail h3 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.service-detail .subtitle { font-size: 1rem; color: #F97316; font-weight: 600; margin-bottom: 1rem; font-family: 'Space Grotesk', sans-serif; }
.service-detail .desc { font-size: 0.9375rem; color: #475569; line-height: 1.7; margin-bottom: 1.5rem; }
.deliverables-title { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 0.75rem; }
.deliverables-list { list-style: none; }
.deliverables-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #475569; padding: 0.375rem 0; }
.deliverables-list li svg { width: 16px; height: 16px; color: #F97316; flex-shrink: 0; margin-top: 3px; }
.side-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1.25rem; margin-bottom: 1rem; }
.side-card .side-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #3B82F6; margin-bottom: 0.5rem; font-family: 'Space Grotesk', sans-serif; }
.side-card p { font-size: 0.875rem; color: #475569; line-height: 1.6; }

/* ===== ANCHOR GRID ===== */
.anchor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 3rem; }
.anchor-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1rem; text-align: center; transition: all 0.3s; }
.anchor-card:hover { border-color: rgba(59,130,246,0.3); box-shadow: 0 4px 12px rgba(59,130,246,0.05); }
.anchor-card .icon-box { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.anchor-card .icon-box svg { width: 20px; height: 20px; color: #3B82F6; }
.anchor-card h4 { font-size: 0.875rem; font-weight: 600; color: #0F172A; }

/* ===== PORTFOLIO ===== */
.case-study { padding: 3rem 0; border-bottom: 1px solid #e2e8f0; }
.case-study:last-child { border-bottom: none; }
.case-study-header { margin-bottom: 1.5rem; }
.case-study-header .industry { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #3B82F6; font-family: 'Space Grotesk', sans-serif; margin-bottom: 0.5rem; }
.case-study-header h3 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin-bottom: 0.25rem; }
.case-study-header .location { font-size: 0.875rem; color: #94a3b8; }
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.case-study .challenge { margin-bottom: 1.5rem; }
.case-study .challenge h4 { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.case-study .challenge p { font-size: 0.875rem; color: #475569; line-height: 1.6; }
.case-study .what-we-did h4 { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.case-study .what-we-did li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #475569; padding: 0.25rem 0; }
.case-study .what-we-did li svg { width: 16px; height: 16px; color: #F97316; flex-shrink: 0; margin-top: 3px; }
.case-study-testimonial { background: #f8fafc; border-left: 3px solid #F97316; border-radius: 0 0.5rem 0.5rem 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.case-study-testimonial p { font-size: 0.875rem; color: #475569; font-style: italic; line-height: 1.6; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.result-card { background: #0F172A; border-radius: 0.75rem; padding: 1rem; text-align: center; }
.result-card .metric { font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.25rem; }
.result-card .before { font-size: 0.875rem; color: #ef4444; }
.result-card .after { font-size: 1.25rem; font-weight: 700; color: #4ade80; font-family: 'JetBrains Mono', monospace; }
.result-card .change { font-size: 0.75rem; color: #F97316; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #0F172A; margin-bottom: 0.375rem; font-family: 'Space Grotesk', sans-serif; }
.form-group label .required { color: #F97316; }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font-size: 0.875rem; color: #0F172A; background: #fff; transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-input::placeholder { color: #94a3b8; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quick-contact-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1.5rem; margin-bottom: 1rem; }
.quick-contact-card h4 { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 1rem; font-family: 'Space Grotesk', sans-serif; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: #475569; }
.contact-info-item svg { width: 16px; height: 16px; color: #3B82F6; flex-shrink: 0; margin-top: 2px; }

/* ===== ABOUT PAGE ===== */
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center; }
.founder-img { border-radius: 1rem; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1); width: 100%; }
.founder-quote { font-size: 0.9375rem; color: #475569; line-height: 1.7; }
.founder-quote p { margin-bottom: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s; }
.team-card:hover { border-color: rgba(59,130,246,0.3); }
.team-card .initials { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: linear-gradient(135deg, #3B82F6, #6366F1); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; margin-bottom: 1rem; }
.team-card h3 { font-size: 1.125rem; font-weight: 700; color: #0F172A; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8125rem; color: #F97316; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.8125rem; color: #64748b; line-height: 1.6; margin-bottom: 0.75rem; }
.team-card .tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.team-card .tag { font-size: 0.6875rem; background: rgba(59,130,246,0.1); color: #3B82F6; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-weight: 500; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 2rem; transition: all 0.3s; }
.mvv-card:hover { border-color: rgba(59,130,246,0.3); }
.mvv-card .icon-box { width: 3rem; height: 3rem; border-radius: 0.5rem; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mvv-card .icon-box svg { width: 24px; height: 24px; color: #3B82F6; }
.mvv-card h3 { font-size: 1.25rem; font-weight: 700; color: #0F172A; margin-bottom: 0.75rem; }
.mvv-card p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { display: flex; flex-direction: column; align-items: center; }
.timeline-circle { width: 3rem; height: 3rem; border-radius: 50%; background: #0F172A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.timeline-circle span { color: #F97316; font-size: 0.875rem; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.timeline-line { width: 2px; flex: 1; background: linear-gradient(to bottom, #3B82F6, #F97316); margin-top: 0.5rem; opacity: 0.3; }
.timeline-content h3 { font-size: 1.125rem; font-weight: 700; color: #0F172A; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 4rem 0; }
.stats-row .stat { text-align: center; }
.stats-row .stat .num { font-size: 2.5rem; font-weight: 700; color: #F97316; font-family: 'JetBrains Mono', monospace; }
.stats-row .stat .txt { font-size: 0.875rem; color: #94a3b8; margin-top: 0.25rem; }
.office-card { background: #0F172A; border-radius: 1rem; padding: 2rem 3rem; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.office-info .contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.office-info .contact-detail svg { width: 20px; height: 20px; color: #3B82F6; flex-shrink: 0; margin-top: 2px; }
.office-info .contact-detail span, .office-info .contact-detail a { color: #cbd5e1; font-size: 0.9375rem; }
.office-info .contact-detail a:hover { color: #fff; }
.office-quick { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 1.5rem; }
.office-quick h3 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-family: 'Space Grotesk', sans-serif; }
.office-quick .btn { margin-bottom: 0.75rem; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 48rem; margin: 0 auto; padding: 3rem 0; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.125rem; font-weight: 600; color: #0F172A; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { font-size: 0.9375rem; color: #475569; line-height: 1.7; margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content ul li { font-size: 0.9375rem; color: #475569; line-height: 1.7; padding: 0.25rem 0; list-style: disc; }
.legal-content a { color: #3B82F6; }
.legal-content a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .hero-grid, .consult-grid, .why-grid, .founder-grid, .office-grid { grid-template-columns: 1fr; }
  .services-grid, .team-grid, .mvv-grid, .anchor-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 1.875rem; }
  .page-hero h1 { font-size: 2rem; }
  .why-badge { display: none; }
}
@media (max-width: 639px) {
  .services-grid, .team-grid, .mvv-grid, .anchor-grid, .process-grid, .stats-row, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .stat-card .number { font-size: 1.75rem; }
}


/* ===== DISCLAIMER ===== */
.disclaimer { font-size: 0.75rem; color: #94a3b8; line-height: 1.5; margin-top: 0.75rem; font-style: italic; }
.trademark-disclaimer { font-size: 0.6875rem; color: #64748b; line-height: 1.5; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ===== FAQ — CSS-only with details/summary ===== */
details.faq-item { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; margin-bottom: 0.75rem; overflow: hidden; }
details.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; cursor: pointer; font-size: 0.875rem; font-weight: 600; color: #0F172A; font-family: 'Space Grotesk', sans-serif; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: ''; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; flex-shrink: 0; transition: transform 0.2s; }
details.faq-item[open] summary::after { transform: rotate(180deg); }
details.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; }
details.faq-item .faq-answer p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

/* ===== MOBILE MENU — CSS-only checkbox hack ===== */
.menu-checkbox { display: none; }
.menu-checkbox:checked ~ nav .mobile-menu { display: block; }
