@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Host+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --paper: #f6f6f3;
  --purple: #20006c;
  --purple-2: #2d0785;
  --ink: #23006b;
  --lime: #6ff124;
  --muted: #6f6b7b;
  --line: rgba(35, 0, 107, .14);
  --white: #fff;
  --radius: 16px;
  --shadow: 0 24px 60px rgba(32, 0, 108, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn, .nav-links, .footer-wordmark { font-family: 'Host Grotesk', 'DM Sans', sans-serif; }
h1, h2, h3, h4 { font-weight: 400; letter-spacing: -.32px; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  padding: 22px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.brand { align-items: center; display: inline-flex; gap: 10px; font-size: 24px; font-weight: 600; letter-spacing: -1.5px; }
.bolt { color: var(--lime); font-size: 38px; line-height: .65; transform: skew(-13deg); }
.nav-links { align-items: center; display: flex; gap: 36px; font-size: 15px; }
.nav-links a { transition: color .25s ease, transform .25s ease; }
.nav-links a:hover { color: var(--lime); transform: translateY(-2px); }
.header-actions { align-items: center; display: flex; gap: 18px; }
.socials { display: flex; gap: 15px; }
.socials a { align-items: center; border: 1px solid var(--ink); border-radius: 50%; display: inline-flex; font-size: 13px; height: 27px; justify-content: center; transition: background .25s ease, color .25s ease; width: 27px; }
.socials a:hover { background: var(--lime); border-color: var(--lime); }
.menu-toggle { background: transparent; border: 0; color: var(--ink); display: none; font-size: 27px; }

.btn { align-items: center; border: 0; border-radius: 999px; display: inline-flex; gap: 9px; justify-content: center; padding: 13px 23px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.btn::before { background: currentColor; border-radius: 50%; content: ''; height: 5px; width: 5px; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: #7efc32; }
.btn-dark { background: var(--purple); color: var(--white); }
.btn-dark:hover { background: var(--purple-2); }
.btn-outline { background: transparent; border: 1px solid currentColor; color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); }
.btn-small { font-size: 13px; padding: 10px 18px; }

.page-shell { margin: 0 auto; max-width: 1240px; padding: 0 20px; }
.section { padding: 110px 0; }
.section-label { align-items: center; display: flex; gap: 8px; font-size: 13px; opacity: .65; }
.section-label::before { color: var(--lime); content: '✦'; font-size: 16px; }
.section-heading { font-size: clamp(42px, 4.9vw, 63px); font-weight: 400; letter-spacing: -.32px; line-height: 1.1; margin: 25px 0 0; max-width: 760px; }
.section-heading.small { font-size: clamp(36px, 3.9vw, 50px); }
.section-lede { color: var(--muted); max-width: 620px; }

.hero { padding: 6px 0 86px; }
.hero-grid { display: grid; gap: 18px; grid-template-columns: 1.12fr .88fr; }
.hero-copy, .hero-image, .dark-panel, .contact-hero, .project-hero, .blog-hero { border-radius: var(--radius); overflow: hidden; position: relative; }
.hero-copy { background: var(--purple); color: var(--white); min-height: 600px; padding: 80px 78px 30px; }
.hero-copy::after, .dark-panel::after, .contact-hero::after, .project-hero::after, .blog-hero::after { background: radial-gradient(circle at 12px 12px, currentColor 2.5px, transparent 3px), radial-gradient(circle at calc(100% - 12px) 12px, currentColor 2.5px, transparent 3px), radial-gradient(circle at 12px calc(100% - 12px), currentColor 2.5px, transparent 3px), radial-gradient(circle at calc(100% - 12px) calc(100% - 12px), currentColor 2.5px, transparent 3px); content: ''; inset: 0; opacity: .95; pointer-events: none; position: absolute; }
.hero-copy::after, .dark-panel::after, .contact-hero::after, .project-hero::after, .blog-hero::after { color: var(--paper); }
.eyebrow { color: var(--lime); font-size: 14px; font-weight: 600; }
.hero h1 { font-size: clamp(54px, 5.1vw, 68px); font-weight: 400; letter-spacing: -.32px; line-height: 1.1; margin: 30px 0 24px; max-width: 580px; position: relative; z-index: 1; }
.hero-copy p { color: rgba(255,255,255,.72); font-size: 16px; max-width: 490px; position: relative; z-index: 1; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; position: relative; z-index: 1; }
.hero-metrics { align-items: end; display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); margin-top: 110px; position: relative; z-index: 1; }
.metric strong { display: block; font-size: 38px; font-weight: 500; letter-spacing: -2px; }
.metric span { color: rgba(255,255,255,.55); display: block; font-size: 13px; margin-top: 3px; }
.hero-image { min-height: 600px; }
.hero-image img { height: 100%; }
.hero-image::after { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)); content: ''; inset: 0; position: absolute; }
.image-tag { background: rgba(32, 0, 108, .75); bottom: 28px; color: var(--white); font-size: 15px; left: 28px; max-width: 260px; padding: 16px; position: absolute; z-index: 1; }

.journey { padding: 100px 0 125px; text-align: center; }
.journey .section-heading { margin-left: auto; margin-right: auto; max-width: 690px; }
.journey-grid { display: grid; gap: 14px; grid-template-columns: .9fr 1fr .9fr; margin-top: 55px; text-align: left; }
.stat-card, .image-card, .white-card { background: var(--white); border-radius: var(--radius); min-height: 310px; padding: 30px; }
.stat-card { display: flex; flex-direction: column; justify-content: space-between; }
.stat-number { font-size: 64px; font-weight: 400; letter-spacing: -4px; line-height: 1; }
.stat-card h3 { font-size: 20px; font-weight: 500; margin: 28px 0 10px; }
.stat-card p, .white-card p { color: var(--muted); font-size: 14px; max-width: 270px; }
.image-card { padding: 0; overflow: hidden; position: relative; }
.image-card img { height: 100%; }
.image-badge { background: rgba(32,0,108,.78); bottom: 16px; color: var(--white); left: 16px; padding: 13px 16px; position: absolute; }
.image-badge strong { display: block; font-size: 24px; }
.chart-card { position: relative; overflow: hidden; }
.chart-card::after { background-image: radial-gradient(circle, var(--lime) 3px, transparent 4px); background-size: 13px 13px; bottom: 28px; content: ''; height: 75px; opacity: .8; position: absolute; right: 20px; transform: rotate(-8deg); width: 120px; }

.dark-panel { background: var(--purple); color: var(--white); padding: 82px 68px; }
.dark-panel .section-label { justify-content: center; }
.dark-panel .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.service-layout { align-items: stretch; display: grid; gap: 18px; grid-template-columns: 1.05fr .95fr; margin-top: 58px; }
.service-image { border-radius: 12px; min-height: 540px; overflow: hidden; position: relative; }
.service-image img { height: 100%; }
.service-image::after { background: linear-gradient(180deg, transparent 55%, rgba(32,0,108,.4)); content: ''; inset: 0; position: absolute; }
.service-list { display: flex; flex-direction: column; justify-content: center; }
.service-item { border-bottom: 1px solid rgba(255,255,255,.19); padding: 22px 12px; transition: padding-left .3s ease, background .3s ease; }
.service-item:first-child { border-top: 1px solid rgba(255,255,255,.19); }
.service-item:hover { background: rgba(255,255,255,.05); padding-left: 22px; }
.service-item h3 { font-size: 22px; font-weight: 400; margin: 0 0 10px; }
.service-item p { color: rgba(255,255,255,.6); font-size: 14px; margin: 0; }

.workflow-head { align-items: end; display: flex; justify-content: space-between; }
.workflow-head .section-heading { max-width: 420px; }
.workflow-head .right-title { font-size: clamp(42px, 6vw, 76px); letter-spacing: -4px; line-height: .98; max-width: 245px; }
.workflow-grid { align-items: start; display: grid; gap: 30px; grid-template-columns: minmax(0, 1fr) 310px minmax(0, 1fr); margin-top: 70px; }
.process-column { display: flex; flex-direction: column; gap: 28px; }
.process-card { background: var(--white); border-radius: 14px; box-shadow: 0 12px 34px rgba(32,0,108,.04); overflow: hidden; padding: 26px 26px 0; }
.process-card h3 { font-size: 19px; font-weight: 500; margin: 0 0 12px; }
.process-card p { color: var(--muted); font-size: 13px; margin: 0 0 22px; }
.process-card img { border-radius: 8px; height: 170px; }
.step-number { color: var(--lime); font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.consult-form { background: var(--purple); border-radius: 14px; color: var(--white); padding: 28px; position: sticky; top: 30px; }
.consult-form h3 { font-size: 22px; font-weight: 400; margin: 0 0 24px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { color: rgba(255,255,255,.72); font-size: 12px; }
.field input, .field textarea, .field select, .newsletter input { background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--white); outline: none; padding: 12px 14px; width: 100%; }
.field textarea { border-radius: 14px; min-height: 130px; resize: vertical; }
.field select { appearance: none; }
.field select option { color: var(--ink); }
.consult-form .btn { margin-top: 8px; width: 100%; }

.projects-head, .posts-head { align-items: end; display: flex; justify-content: space-between; }
.projects-grid, .posts-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.project-card, .post-card { display: block; }
.card-media { border-radius: 12px; height: 310px; overflow: hidden; position: relative; }
.card-media img { height: 100%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .card-media img, .post-card:hover .card-media img { transform: scale(1.07); }
.card-copy { background: var(--white); border-radius: 12px; margin-top: 10px; padding: 17px; }
.card-meta { color: var(--muted); display: flex; font-size: 12px; justify-content: space-between; margin-bottom: 8px; }
.card-copy h3 { font-size: 20px; font-weight: 500; letter-spacing: -.8px; margin: 0; }

.cost-panel { background: var(--purple); color: var(--white); }
.cost-panel .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.pricing-grid { display: grid; gap: 14px; grid-template-columns: 1.28fr .72fr; margin-top: 52px; }
.pricing-card, .call-card { background: var(--white); border-radius: 12px; color: var(--ink); overflow: hidden; }
.pricing-card { padding: 28px; }
.pricing-card h3 { font-size: 21px; font-weight: 500; margin: 0 0 9px; }
.pricing-card > p { color: var(--muted); font-size: 14px; max-width: 450px; }
.pricing-options { align-items: center; border-bottom: 1px solid var(--line); display: flex; gap: 10px; justify-content: flex-end; margin: -28px 0 24px; padding: 10px 0 10px 10px; }
.switcher { background: var(--paper); border-radius: 999px; display: inline-flex; padding: 4px; }
.switcher button { background: transparent; border: 0; border-radius: 999px; color: var(--muted); padding: 8px 14px; }
.switcher button.active { background: var(--purple); color: var(--white); }
.feature-list { border-bottom: 1px solid var(--line); list-style: none; margin: 25px 0; padding: 0 0 18px; }
.feature-list li { color: var(--muted); font-size: 14px; margin: 11px 0; }
.feature-list li::before { color: var(--lime); content: '✦'; margin-right: 8px; }
.pricing-bottom { align-items: center; background: var(--paper); display: flex; justify-content: space-between; margin: 0 -28px -28px; padding: 20px 28px; }
.price { font-size: 36px; letter-spacing: -2px; }
.price small { color: var(--muted); font-size: 12px; letter-spacing: 0; }
.call-card { min-height: 420px; position: relative; }
.call-card img { height: 100%; }
.call-card::after { background: linear-gradient(180deg, transparent 30%, rgba(32,0,108,.45)); content: ''; inset: 0; position: absolute; }
.callout { align-items: center; background: rgba(111,241,36,.88); bottom: 18px; color: var(--ink); display: flex; gap: 12px; left: 18px; padding: 12px 16px; position: absolute; right: 18px; z-index: 1; }
.callout-icon { align-items: center; background: var(--lime); border-radius: 50%; display: flex; height: 40px; justify-content: center; width: 40px; }
.callout small { display: block; font-size: 12px; }
.callout strong { font-size: 14px; font-weight: 500; }
.testimonial { align-items: center; display: grid; gap: 45px; grid-template-columns: 190px 1fr; margin-top: 76px; }
.avatar-grid { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.avatar-grid img { border-radius: 8px; filter: grayscale(1); height: 50px; opacity: .45; }
.avatar-grid img:first-child { filter: none; opacity: 1; }
.quote { font-size: clamp(20px, 2.5vw, 30px); line-height: 1.15; max-width: 610px; }
.quote-meta { color: rgba(255,255,255,.55); font-size: 12px; margin-top: 22px; }
.quote-meta strong { color: var(--white); display: block; font-size: 14px; margin-top: 6px; }

.proof .section-heading { margin-left: auto; margin-right: auto; max-width: 540px; text-align: center; }
.proof-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr 1fr; margin-top: 50px; }
.proof-intro { background: var(--purple); border-radius: 12px; color: var(--white); min-height: 210px; overflow: hidden; padding: 25px; position: relative; }
.proof-intro::after { border: 34px solid rgba(111,241,36,.16); border-radius: 50%; bottom: -50px; content: ''; height: 150px; position: absolute; right: -50px; width: 150px; }
.proof-intro h3 { font-size: 20px; font-weight: 400; max-width: 190px; margin: 0 0 28px; }
.proof-numbers { display: grid; gap: 14px; grid-column: span 2; grid-template-columns: repeat(2, 1fr); }
.proof-numbers .white-card { min-height: 98px; padding: 20px; }
.proof-numbers .stat-number { font-size: 32px; }
.proof-numbers .stat-card h3 { font-size: 14px; margin: 12px 0 0; }

.footer-wrap { background: var(--purple); border-radius: var(--radius); color: var(--white); margin: 20px auto; max-width: 1240px; overflow: hidden; padding: 18px; }
.footer-cta { align-items: center; background: var(--lime); border-radius: 12px; color: var(--ink); display: flex; justify-content: space-between; min-height: 180px; overflow: hidden; padding: 30px 42px; position: relative; }
.footer-cta::after { border: 40px solid rgba(32,0,108,.1); border-radius: 50%; content: ''; height: 240px; position: absolute; right: 4%; top: -75px; width: 240px; }
.footer-cta h2 { font-size: clamp(34px, 4.6vw, 60px); font-weight: 400; letter-spacing: -3px; line-height: .98; margin: 0; max-width: 630px; position: relative; z-index: 1; }
.footer-cta .btn { position: relative; z-index: 1; }
.footer-columns { display: grid; gap: 34px; grid-template-columns: 1.2fr .7fr .9fr .8fr; padding: 72px 0 48px; }
.footer-col h3 { font-size: 15px; font-weight: 500; margin: 0 0 15px; }
.footer-col p, .footer-col a { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-col a { display: block; margin: 8px 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--lime); }
.newsletter { display: flex; gap: 8px; margin-top: 18px; }
.newsletter input { border-color: rgba(255,255,255,.2); }
.newsletter button { background: var(--lime); border: 0; border-radius: 50%; color: var(--ink); height: 39px; min-width: 39px; }
.footer-wordmark { border-bottom: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); font-size: clamp(80px, 16vw, 230px); font-weight: 500; letter-spacing: -12px; line-height: .7; overflow: hidden; padding-top: 30px; white-space: nowrap; }
.footer-bottom { align-items: center; display: flex; justify-content: space-between; padding-top: 20px; }
.footer-bottom p { color: rgba(255,255,255,.62); font-size: 12px; margin: 0; }

.page-hero { margin-bottom: 90px; padding-top: 8px; }
.page-hero-image { min-height: 540px; overflow: hidden; position: relative; }
.page-hero-image img { height: 100%; }
.page-hero-card { background: var(--purple); bottom: 0; color: var(--white); left: 0; max-width: 760px; padding: 70px 90px; position: absolute; width: 70%; }
.page-hero-card h1 { font-size: clamp(50px, 5.1vw, 68px); font-weight: 400; letter-spacing: -.32px; line-height: 1.06; margin: 24px 0 0; }
.logos-row { align-items: center; display: flex; justify-content: space-between; padding: 60px 0; opacity: .72; }
.logo-pill { color: var(--purple); font-size: 15px; font-weight: 600; letter-spacing: 1px; }
.profile-grid { align-items: center; display: grid; gap: 60px; grid-template-columns: 1fr 1fr; }
.profile-image { border-radius: 12px; min-height: 510px; overflow: hidden; }
.profile-image img { height: 100%; }
.profile-copy h2, .about-timeline h2, .ethics h2, .team h2 { font-size: clamp(38px, 4.2vw, 56px); font-weight: 400; letter-spacing: -.32px; line-height: 1.08; margin: 20px 0; }
.profile-copy p, .timeline-copy p, .ethic-card p { color: var(--muted); max-width: 470px; }
.mini-stats { display: flex; gap: 60px; margin-top: 55px; }
.mini-stats strong { display: block; font-size: 48px; font-weight: 400; letter-spacing: -3px; }
.mini-stats span { color: var(--muted); font-size: 13px; }
.timeline { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); margin-top: 52px; }
.timeline-item { background: var(--white); border-radius: 12px; overflow: hidden; }
.timeline-copy { padding: 22px; }
.timeline-year { color: var(--lime); font-size: 28px; font-weight: 500; }
.timeline-item img { height: 180px; }
.ethics-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.ethic-card { background: var(--white); border-radius: 12px; min-height: 220px; padding: 26px; }
.ethic-card h3 { font-size: 18px; font-weight: 500; margin: 60px 0 10px; }
.team-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.team-card { position: relative; }
.team-card img { border-radius: 12px; height: 410px; }
.team-meta { background: var(--white); border-radius: 10px; bottom: 12px; left: 12px; padding: 14px; position: absolute; right: 12px; }
.team-meta h3 { font-size: 18px; font-weight: 500; margin: 0 0 2px; }
.team-meta span { color: var(--muted); font-size: 13px; }

.listing-head { align-items: end; display: flex; justify-content: space-between; margin-bottom: 35px; }
.filter-row { display: flex; gap: 24px; margin: 0 0 28px; }
.filter-row button { background: none; border: 0; color: var(--muted); padding: 8px 0; }
.filter-row button.active, .filter-row button:hover { color: var(--ink); font-weight: 600; }
.listing-grid { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }

.detail-hero { align-items: end; display: grid; gap: 34px; grid-template-columns: 1fr 1.08fr; margin-bottom: 86px; }
.detail-image { border-radius: 12px; min-height: 520px; overflow: hidden; }
.detail-image img { height: 100%; }
.detail-title h1 { font-size: clamp(54px, 5.1vw, 68px); font-weight: 400; letter-spacing: -.32px; line-height: 1.04; margin: 20px 0; }
.detail-title p { color: var(--muted); max-width: 460px; }
.detail-kicker { color: var(--lime); font-size: 14px; }
.detail-body { display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; }
.detail-summary { border-top: 1px solid var(--line); padding-top: 16px; }
.detail-summary h2 { font-size: 29px; font-weight: 500; margin: 0 0 28px; }
.meta-row { border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding: 14px 0; }
.meta-row span:first-child { color: var(--muted); }
.detail-copy section { margin-bottom: 46px; }
.detail-copy h2 { font-size: 28px; font-weight: 500; margin: 0 0 14px; }
.detail-copy p { color: var(--muted); max-width: 630px; }

.blog-detail-head { border-bottom: 1px solid var(--line); display: grid; gap: 34px; grid-template-columns: .65fr 1.35fr; padding-bottom: 72px; }
.blog-cover { border-radius: 12px; min-height: 430px; overflow: hidden; }
.blog-cover img { height: 100%; }
.author { align-items: center; display: flex; gap: 12px; }
.author img { border-radius: 50%; height: 42px; width: 42px; }
.author strong { display: block; font-size: 14px; font-weight: 500; }
.author small { color: var(--muted); }
.blog-meta { color: var(--muted); display: flex; gap: 18px; font-size: 13px; margin-top: 50px; }
.blog-detail-title { font-size: clamp(50px, 5.1vw, 68px); font-weight: 400; letter-spacing: -.32px; line-height: 1.05; margin: 20px 0; }
.blog-detail-lede { color: var(--muted); max-width: 560px; }
.article-body { margin: 80px auto 100px; max-width: 760px; }
.article-body h2 { font-size: 27px; font-weight: 500; margin: 44px 0 12px; }
.article-body p { color: var(--muted); font-size: 18px; }

.contact-hero { background: var(--purple); color: var(--white); padding: 80px 90px; }
.contact-hero h1 { font-size: clamp(56px, 5.1vw, 68px); font-weight: 400; letter-spacing: -.32px; line-height: 1.05; margin: 25px 0 0; max-width: 850px; position: relative; z-index: 1; }
.contact-grid { display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; margin-top: 85px; }
.contact-info h2 { font-size: 28px; font-weight: 500; margin: 0 0 24px; }
.contact-info p { color: var(--muted); margin: 0 0 20px; }
.contact-info a { color: var(--ink); display: block; margin: 8px 0; }
.contact-form { background: var(--white); border-radius: 12px; padding: 34px; }
.contact-form h2 { font-size: 28px; font-weight: 500; margin: 0 0 28px; }
.contact-form .field label { color: var(--muted); }
.contact-form .field input, .contact-form .field textarea { border-color: var(--line); color: var(--ink); }
.contact-form .btn { border: 0; }
.faq { display: grid; gap: 60px; grid-template-columns: .8fr 1.2fr; margin-top: 110px; }
.faq-media { border-radius: 12px; overflow: hidden; position: relative; }
.faq-media img { height: 100%; min-height: 400px; }
.faq-phone { background: var(--lime); bottom: 16px; left: 16px; padding: 16px; position: absolute; right: 16px; }
.faq-phone strong { display: block; font-size: 15px; }
.faq-list details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-size: 19px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); font-size: 14px; max-width: 600px; }

.reveal { animation: revealUp .75s ease both; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: .08s; } .delay-2 { animation-delay: .16s; } .delay-3 { animation-delay: .24s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .site-header { padding: 18px 16px; }
  .nav-links { background: var(--paper); border-bottom: 1px solid var(--line); display: none; flex-direction: column; gap: 20px; left: 0; padding: 24px 20px; position: absolute; right: 0; top: 72px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .header-actions .socials { display: none; }
  .header-actions .btn { display: none; }
  .hero-grid, .service-layout, .pricing-grid, .profile-grid, .detail-hero, .detail-body, .blog-detail-head, .contact-grid, .faq { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; padding: 55px 32px 28px; }
  .hero-image { min-height: 420px; }
  .hero-metrics { margin-top: 75px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid > * { min-height: 250px; }
  .dark-panel { padding: 60px 26px; }
  .workflow-head, .projects-head, .posts-head, .listing-head { align-items: start; flex-direction: column; gap: 20px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .process-column { display: grid; grid-template-columns: repeat(2, 1fr); }
  .consult-form { position: static; }
  .projects-grid, .posts-grid, .listing-grid, .ethics-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-numbers { grid-column: auto; }
  .page-hero-card { padding: 45px 36px; width: 78%; }
  .logos-row { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-cta { align-items: start; flex-direction: column; gap: 28px; padding: 28px; }
}
@media (max-width: 560px) {
  .section { padding: 75px 0; }
  .section-heading { letter-spacing: -2.5px; }
  .hero h1, .page-hero-card h1, .detail-title h1, .contact-hero h1, .blog-detail-title { letter-spacing: -.32px; }
  .hero-copy { min-height: 560px; }
  .hero-metrics { gap: 15px; grid-template-columns: repeat(3, 1fr); }
  .metric strong { font-size: 27px; }
  .metric span { font-size: 11px; }
  .service-image { min-height: 330px; }
  .process-column, .projects-grid, .posts-grid, .listing-grid, .ethics-grid, .team-grid, .timeline { grid-template-columns: 1fr; }
  .card-media { height: 260px; }
  .footer-columns { grid-template-columns: 1fr; padding-top: 50px; }
  .footer-wordmark { font-size: 84px; letter-spacing: -6px; }
  .page-hero-image { min-height: 430px; }
  .page-hero-card { padding: 34px 24px; width: 90%; }
  .mini-stats { gap: 28px; }
  .mini-stats strong { font-size: 38px; }
  .contact-hero { padding: 48px 28px; }
  .contact-form { padding: 24px; }
}
