/* ===========================================================
   Anzarkhan — company landing page
   Light · pure orange · flat (no gradients, no shadows) · Sarvam-style
   =========================================================== */

:root {
    --orange:      #ff6600;
    --orange-dark: #e65100;
    --orange-soft: #fff3ea;
    --orange-line: #ffdcc2;
    --ink:         #16130f;
    --body:        #55504a;
    --muted:       #8b847c;
    --bg:          #faf8f5;
    --card:        #ffffff;
    --border:      #e9e3da;
    --border-2:    #ddd6cb;
    --radius:      16px;
    --max:         1180px;
    --serif:       ui-serif, Georgia, "Times New Roman", serif;
    --sans:        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
section { padding: 104px 24px; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
    display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.section-header { max-width: 720px; margin: 0 auto 60px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.12; }
.section-header p { color: var(--body); margin-top: 18px; font-size: 1.06rem; max-width: 620px; }
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px; font-size: 0.96rem; font-weight: 600;
    cursor: pointer; border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; border-color: var(--border-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; color: var(--ink); }
.logo-img { height: 40px; width: auto; display: block; }
.logo-img--footer { height: 52px; }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: var(--orange); font-weight: 700; color: #fff; font-size: 1.05rem; font-family: var(--serif); }
.logo-text { font-size: 1.16rem; letter-spacing: -0.01em; }

/* ---------- Navbar ---------- */
.navbar { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; padding: 0 24px; }
.nav-container {
    max-width: var(--max); margin: 0 auto; padding: 11px 12px 11px 22px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 100px;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-link { color: var(--body); font-size: 0.93rem; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 20px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 186px 24px 88px; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { display: inline-block; padding: 7px 16px; border-radius: 100px; margin-bottom: 28px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--orange); background: var(--orange-soft); border: 1px solid var(--orange-line); }
.hero-title { font-family: var(--serif); font-size: clamp(2.7rem, 6.5vw, 4.6rem); line-height: 1.06; font-weight: 600; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--orange); }
.hero-subtitle { color: var(--body); font-size: clamp(1.04rem, 1.8vw, 1.22rem); max-width: 640px; margin: 28px auto 40px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust strip ---------- */
.trust { padding: 12px 24px 44px; text-align: center; }
.trust p { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { padding: 44px 24px; }
.stats-grid {
    max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 600; color: var(--orange); }
.stat-label { color: var(--body); font-size: 0.9rem; margin-top: 8px; }

/* ---------- Companies ---------- */
.companies-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
.company-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; transition: border-color .25s; }
.company-card:hover { border-color: var(--orange-line); }
.company-head { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.company-mark { width: 52px; height: 52px; flex: none; border-radius: 12px; display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--orange); background: var(--orange-soft); border: 1px solid var(--orange-line); }
.company-head h3 { font-size: 1.32rem; }
.company-meta { display: flex; align-items: center; gap: 10px; margin-top: 3px; }
.company-sector { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.company-domain { font-size: 0.85rem; color: var(--orange); font-weight: 600; }
.company-tagline { font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.company-desc { color: var(--body); font-size: 0.97rem; }
.company-services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.company-services li { font-size: 0.8rem; color: var(--body); padding: 6px 13px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); }
.company-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.93rem; color: var(--orange); transition: gap .25s var(--ease); }
.company-link:hover { gap: 12px; color: var(--orange-dark); }
.company-link svg { width: 15px; height: 15px; }

/* ---------- Capabilities ---------- */
.capabilities { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cap-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cap-item { padding: 34px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cap-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 18px; }
.cap-icon svg { width: 100%; height: 100%; }
.cap-item h3 { font-size: 1.12rem; margin-bottom: 9px; }
.cap-item p { font-size: 0.94rem; color: var(--body); }

/* ---------- Approach ---------- */
.approach-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.approach-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.approach-icon { width: 34px; height: 34px; color: var(--orange); margin-bottom: 18px; }
.approach-icon svg { width: 100%; height: 100%; }
.approach-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.approach-card p { color: var(--body); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact { background: #fff; border-top: 1px solid var(--border); }
.contact-container { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 48px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 26px; justify-content: center; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.info-item h4 { font-size: 0.86rem; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.info-item p { color: var(--ink); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-input { width: 100%; padding: 14px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--border-2); color: var(--ink); font-size: 0.97rem; font-family: inherit; transition: border-color .2s; }
.form-input::placeholder { color: var(--muted); }
.form-input:focus { outline: none; border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: 0.9rem; min-height: 1.2em; }
.form-note.ok { color: #1f9d55; }
.form-note.err { color: #e02424; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 24px 30px; }
.footer-top { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand p { color: var(--muted); margin-top: 14px; font-size: 0.94rem; max-width: 280px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--body); font-size: 0.94rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: var(--max); margin: 22px auto 0; text-align: center; color: var(--muted); font-size: 0.88rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 300px); flex-direction: column; justify-content: center; gap: 26px; padding: 40px; background: #fff; border-left: 1px solid var(--border); transform: translateX(100%); transition: transform .35s var(--ease); }
    .nav-links.open { transform: none; }
    .hamburger { display: flex; z-index: 101; }
    .nav-cta .btn-ghost { display: none; }
    .hero { padding-top: 150px; }
    .contact-container { grid-template-columns: 1fr; padding: 30px; }
    .cap-item, .stat-item { border-right: none; }
    section { padding: 76px 20px; }
}
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } .stat-item { border-right: none; } }
@media (prefers-reduced-motion: reduce) { *{animation:none!important;transition:none!important;} .reveal{opacity:1;transform:none;} }
