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

:root {
  --navy: #111827;
  --navy-2: #1a2334;
  --ink: #172033;
  --muted: #718096;
  --line: #d9e0e8;
  --paper: #f8faf7;
  --white: #ffffff;
  --lime: #d5f45b;
  --lime-dark: #aacd2e;
  --orange: #ff815d;
  --orange-dark: #e0603f;
  --sky: #cae6f6;
  --soft-lime: #eef7cf;
  --soft-blue: #eaf3f8;
  --serif: Georgia, 'Times New Roman', serif;
  --display: 'Space Grotesk', sans-serif;
  --body: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 24px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --nav-h: 82px;
  --shadow-sm: 0 6px 18px rgba(17,24,39,.06);
  --shadow-md: 0 24px 50px rgba(17,24,39,.1);
  --shadow-lg: 0 30px 70px rgba(17,24,39,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
button { cursor: pointer; }
::selection { color: var(--navy); background: var(--lime); }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-family: var(--mono); font-size: 1rem; letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); flex: none; }
.eyebrow.light { color: #aab4c3; }
.eyebrow.light::before { background: var(--lime); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.04; letter-spacing: -.055em; }
h1 { font-size: clamp(2.7rem, 7.4vw, 6.8rem); margin-bottom: 2px; }
h2 { font-size: clamp(2.3rem, 4.6vw, 4.4rem); margin-bottom: 2px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 14px; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.75; }
.accent { color: var(--orange); font-family: var(--serif); font-style: italic; font-weight: 400; }

/* Buttons */
.button {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.button:hover { transform: translateY(-3px); }
.button .arrow { font-size: 17px; line-height: 0; transition: transform .3s var(--ease); }
.button:hover .arrow { transform: translate(2px, -2px); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { color: var(--navy); background: var(--orange); box-shadow: var(--shadow-md); }
.button-lime { color: var(--navy); background: var(--lime); box-shadow: 0 14px 32px rgba(213,244,91,.35); }
.button-lime:hover { background: var(--white); }
.button-outline { color: var(--ink); border-color: var(--line); }
.button-outline:hover { background: var(--white); border-color: var(--ink); }
.button-outline-light { color: var(--ink); border-color: var(--line); }
.button-outline-light:hover { color: var(--navy); background: var(--lime); border-color: var(--lime); }
.button-block { width: 100%; }
.button[disabled], .button.is-loading { box-shadow: none; opacity: .72; pointer-events: none; transform: none; }
.button .btn-spinner {
  width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: currentColor;
  border-radius: 50%; display: none; animation: spin .7s linear infinite;
}
.button.is-loading .btn-spinner { display: inline-block; }
.button.is-loading .arrow { display: none; }

/* Navigation */
.site-nav {
  position: sticky; top: 0; z-index: 100; background: rgba(248,250,247,.86);
  border-bottom: 1px solid transparent; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.site-nav.is-scrolled { background: rgba(248,250,247,.96); border-color: var(--line); box-shadow: 0 10px 35px rgba(17,24,39,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.05em; }
.brand em { color: var(--orange); font-family: var(--serif); font-weight: 400; }
.brand-mark { position: relative; display: inline-flex; flex: none; width: 34px; height: 34px; transition: transform .4s var(--ease); }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-mark rect { fill: var(--navy); }
.brand-mark path { fill: none; stroke: var(--lime); stroke-width: 4.2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s ease; }
.brand-mark circle { fill: var(--orange); transform-origin: center; transition: transform .3s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand:hover .brand-mark circle { transform: scale(1.25); }
.site-footer .brand-mark rect { fill: var(--paper); }
.site-footer .brand-mark path { stroke: var(--navy); }
.nav-links ul { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.nav-links li { display: flex; }
.nav-links a:not(.button) { position: relative; padding: 8px 14px; border-radius: 999px; color: #56667c; font-size: 14px; font-weight: 600; transition: color .25s ease, background .25s ease; }
.nav-links a:not(.button):hover { color: var(--ink); background: rgba(17,24,39,.05); }
.nav-links a.is-active { color: var(--ink); background: var(--soft-lime); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; color: var(--navy); background: var(--lime); transition: transform .3s var(--ease); }
.menu-toggle:hover { transform: scale(1.06); }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.nav-overlay { display: none; }

/* Home hero */
.hero {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h));
  padding: 48px 0 40px; color: var(--ink); background: var(--paper); overflow: hidden;
}
.hero::before { position: absolute; inset: 0; content: ''; background: radial-gradient(circle at 90% 12%, rgba(213,244,91,.22), transparent 32%), radial-gradient(circle at 2% 100%, rgba(255,129,93,.10), transparent 40%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero h1 { max-width: 780px; margin-bottom: 20px; line-height: 1.1; letter-spacing: -.03em; }
.hero h1 .accent { color: var(--orange-dark); }
.hero-copy { max-width: 520px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.hero-trust .stars { color: var(--orange); letter-spacing: 1px; }
.hero-visual { position: relative; aspect-ratio: 4 / 5; max-height: min(64vh, 620px); }
.hero-image { position: absolute; inset: 0 0 0 12%; width: 88%; height: 100%; object-fit: cover; border-radius: 180px 180px 24px 24px; filter: saturate(.84) contrast(1.04); }
.hero-visual::after { position: absolute; inset: 0 0 0 12%; border-radius: 180px 180px 24px 24px; content: ''; background: linear-gradient(160deg, transparent 35%, rgba(17,24,39,.55)); }
.floating-tag { position: absolute; z-index: 2; padding: 14px 17px; color: var(--navy); background: var(--lime); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; box-shadow: var(--shadow-sm); animation: float 7s ease-in-out infinite; }
.tag-top { top: 8%; left: 0; transform: rotate(-5deg); }
.tag-bottom { right: -14px; bottom: 8%; background: var(--orange); transform: rotate(5deg); animation-delay: -3.2s; }
.hero-stamp { position: absolute; z-index: 2; right: 6%; top: 4%; width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); font-family: var(--mono); font-size: 10px; text-align: center; text-transform: uppercase; animation: spin 18s linear infinite; }
.hero-stamp::before { content: '✦'; font-size: 22px; color: var(--lime); }
.hero-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 36px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; }
.scroll-cue span { display: block; width: 34px; height: 1px; background: var(--lime); animation: pulse-line 2.4s ease-in-out infinite; }

/* Image-led sections */
.logo-marquee { padding: 26px 0; color: var(--navy); background: var(--lime); overflow: hidden; }
.marquee-track { display: flex; width: max-content; gap: 42px; align-items: center; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--display); font-size: 18px; font-weight: 600; white-space: nowrap; }
.marquee-track i { color: var(--orange); font-style: normal; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split > * { min-width: 0; }
.image-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); }
.image-frame img { width: 80%; height: 80%; object-fit: cover; transition: transform .8s var(--ease); }
.image-frame:hover img { transform: scale(1.05); }
.image-frame.landscape { min-height: 100px; }
.image-frame::after { position: absolute; inset: 0; content: ''; pointer-events: none; background: linear-gradient(140deg, transparent 45%, rgba(17,24,39,.3)); }
.image-caption { position: absolute; z-index: 1; right: 20px; bottom: 18px; left: 20px; display: flex; justify-content: space-between; gap: 12px; color: white; font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.number { display: block; margin-bottom: 18px; color: var(--orange); font-family: var(--mono); font-size: 12px; }
.statement { max-width: 640px; }
.statement p { color: var(--muted); font-size: 18px; line-height: 1.8; }
.ticks { display: grid; gap: 14px; margin: 30px 0 0; padding: 0; list-style: none; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks li::before { content: '↗'; color: var(--orange); font-weight: 700; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 46px; }
.section-head .lead { max-width: 450px; font-size: 16px; }
.dark-section { color: var(--ink); background: var(--soft-blue); }
.dark-section .lead, .dark-section .muted { color: var(--muted); }
.dark-section .eyebrow, .dark-section .eyebrow.light { color: var(--muted); }
.dark-section .eyebrow.light::before { background: var(--orange); }
.dark-section h2, .dark-section h3, .dark-section p, .dark-section li { color: inherit; }
.dark-section .image-frame { background: var(--navy); }

/* Cards */
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project-card { position: relative; min-height: 465px; display: flex; flex-direction: column; justify-content: end; padding: 26px; grid-column: span 7; border-radius: var(--radius); color: var(--white); overflow: hidden; }
.project-card:nth-child(2) { grid-column: span 5; min-height: 465px; }
.project-card:nth-child(3) { grid-column: span 5; min-height: 400px; }
.project-card:nth-child(4) { grid-column: span 7; min-height: 400px; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, rgba(17,24,39,.04) 22%, rgba(17,24,39,.86) 100%); }
.project-card:hover img { transform: scale(1.07); }
.project-info, .project-index { position: relative; z-index: 1; }
.project-index { position: absolute; top: 24px; left: 26px; color: var(--lime); font-family: var(--mono); font-size: 10px; }
.project-info { display: flex; justify-content: space-between; align-items: end; gap: 18px; }
.project-info h3 { margin-bottom: 5px; font-size: 30px; }
.project-info p { margin: 0; color: #c3ccd7; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.project-arrow { width: 50px; height: 50px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--navy); background: var(--lime); font-size: 24px; transition: transform .3s var(--ease); }
.project-card:hover .project-arrow { transform: rotate(45deg); }
.service-grid, .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 340px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .35s var(--ease), box-shadow .35s ease; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card::before { position: absolute; right: -40px; bottom: -60px; width: 150px; height: 150px; content: ''; border-radius: 50%; background: var(--sky); transition: transform .4s var(--ease); }
.service-card:hover::before { transform: scale(1.4); }
.service-num { position: relative; display: flex; justify-content: space-between; margin-bottom: 74px; color: var(--orange); font-family: var(--mono); font-size: 11px; }
.service-icon { color: var(--navy); font-size: 30px; }
.service-card h3, .service-card p, .service-card a { position: relative; }
.service-card h3 { font-size: 27px; }
.service-card p { color: var(--muted); }
.service-card a { display: inline-block; margin-top: 14px; color: var(--navy); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.service-card a:hover { color: var(--orange); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-top: 46px; border-top: 1px solid #364255; }
.stat strong { display: block; color: var(--lime); font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.08em; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: #aab4c3; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Plan / pricing cards */
.plan-card { position: relative; display: flex; flex-direction: column; min-height: auto; padding: 34px 28px 28px; }
.plan-card.is-featured { border-color: var(--navy); background: var(--navy); color: var(--white); }
.plan-card.is-featured::before { background: rgba(213,244,91,.16); }
.plan-card.is-featured .plan-price, .plan-card.is-featured h3 { color: var(--white); }
.plan-card.is-featured p, .plan-card.is-featured .ticks li { color: #b7c0cf; }
.plan-card.is-featured .ticks li::before { color: var(--lime); }
.plan-badge { position: absolute; top: 26px; right: 26px; padding: 6px 12px; border-radius: 999px; color: var(--navy); background: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 18px; font-family: var(--display); font-size: 34px; letter-spacing: -.04em; }
.plan-price span { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0; text-transform: none; }
.plan-card.is-featured .plan-price span { color: #9aa6b8; }
.plan-card .ticks { position: relative; z-index: 1; flex: 1; margin-bottom: 26px; }
.plan-card .button, .plan-card .plan-badge { position: relative; z-index: 1; }

/* Interior headers and content */
.page-hero { padding: 100px 0 76px; background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero .inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.page-hero h1 { max-width: 780px; margin-bottom: 0; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero-visual { position: relative; height: 270px; overflow: hidden; border-radius: 150px 24px 24px 24px; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-visual::after { position: absolute; inset: 0; content: ''; background: rgba(17,24,39,.12); }
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: 32px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-item .num { color: var(--orange); font-family: var(--mono); font-size: 12px; }
.process-item h3 { margin: 0; font-size: 30px; }
.process-item p { max-width: 460px; margin: 0; color: var(--muted); line-height: 1.75; }
.timeline { position: relative; display: grid; gap: 30px; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 59px; width: 1px; content: ''; background: var(--line); }
.timeline-row { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 28px; }
.timeline-year { color: var(--orange); font-family: var(--mono); font-size: 12px; }
.timeline-copy { padding-bottom: 28px; }
.timeline-copy::before { position: absolute; top: 4px; left: 55px; width: 9px; height: 9px; content: ''; border: 3px solid var(--paper); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.timeline-copy h3 { margin-bottom: 8px; font-size: 24px; }
.timeline-copy p { max-width: 580px; margin: 0; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card:nth-child(2), .team-card:nth-child(4) { margin-top: 42px; }
.team-photo { height: 310px; overflow: hidden; border-radius: var(--radius); background: var(--sky); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(18%); transition: transform .7s var(--ease); }
.team-card:hover img { transform: scale(1.06); }
.team-card h4 { margin: 17px 0 3px; font-size: 19px; }
.team-card p { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.quote-block { padding: 58px; border-radius: var(--radius); background: var(--lime); }
.quote-block blockquote { max-width: 860px; margin: 0; color: var(--navy); font-family: var(--display); font-size: clamp(2rem, 4.2vw, 4rem); font-weight: 600; letter-spacing: -.06em; line-height: 1.05; }
.quote-block cite { display: block; margin-top: 26px; color: #53640f; font-family: var(--mono); font-size: 11px; font-style: normal; text-transform: uppercase; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { display: flex; flex-direction: column; padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .35s var(--ease), box-shadow .35s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { flex: 1; color: var(--ink); font-size: 16px; line-height: 1.7; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.testimonial-avatar { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%; color: var(--navy); background: var(--soft-lime); font-family: var(--mono); font-size: 12px; font-weight: 600; }
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { display: block; color: var(--muted); font-size: 12px; }
.dark-section .testimonial-card { background: var(--white); }

/* FAQ */
.faq-list { display: grid; gap: 1px; max-width: 860px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.faq-item { background: var(--white); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; padding: 24px 26px; border: 0; background: none; text-align: left; color: var(--ink); font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.faq-icon { position: relative; flex: none; width: 22px; height: 22px; }
.faq-icon::before, .faq-icon::after { position: absolute; top: 50%; left: 50%; content: ''; background: var(--navy); transform: translate(-50%, -50%); transition: transform .3s var(--ease), opacity .3s ease; }
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { margin: 0 26px 24px; max-width: 720px; color: var(--muted); line-height: 1.75; }
.faq-item.is-open .faq-a { max-height: 240px; }
.faq-item.is-open .faq-q { color: var(--orange); }

/* Trust strip */
.trust-strip { padding: 46px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.trust-item strong { color: var(--ink); font-family: var(--display); font-size: 20px; letter-spacing: -.03em; text-transform: none; }
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }

/* Projects page */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; transition: .3s ease; }
.filter-btn:hover, .filter-btn.is-active { color: var(--navy); border-color: var(--navy); background: var(--lime); }
.project-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-tile { overflow: hidden; border-radius: var(--radius); background: var(--white); }
.project-tile-image { position: relative; height: 390px; overflow: hidden; }
.project-tile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-tile:hover .project-tile-image img { transform: scale(1.06); }
.project-tile-image span { position: absolute; top: 18px; left: 18px; padding: 9px 12px; color: var(--navy); background: var(--lime); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.project-tile-copy { display: flex; justify-content: space-between; gap: 18px; padding: 23px 24px 25px; }
.project-tile-copy h3 { margin: 0 0 5px; font-size: 25px; }
.project-tile-copy p { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.project-tile-copy .tile-arrow { font-size: 23px; transition: transform .3s ease; }
.project-tile:hover .tile-arrow { transform: translate(4px, -4px); color: var(--orange); }
.project-tile.is-hidden { display: none; }
.empty-state { display: none; padding: 70px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state.is-visible { display: block; }
.empty-state strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--display); font-size: 20px; }

/* Detail and contact */
.case-hero { padding: 88px 0 72px; background: var(--paper); color: var(--ink); }
.case-hero .eyebrow.light { color: var(--muted); }
.case-hero .eyebrow.light::before { background: var(--orange); }
.case-hero h1 { max-width: 850px; font-size: clamp(3rem, 8vw, 6.6rem); }
.case-hero .lead { color: var(--muted); }
.case-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 55px; padding-top: 26px; border-top: 1px solid var(--line); }
.case-meta span { display: block; margin-bottom: 7px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.case-meta strong { color: var(--ink); font-weight: 600; }
.case-cover { height: min(64vw, 680px); overflow: hidden; background: var(--navy); }
.case-cover img { width: 100%; height: 100%; object-fit: cover; }
.case-copy { max-width: 780px; margin: 0 auto; }
.case-copy h2 { margin-top: 20px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.case-copy p { color: var(--muted); font-size: 18px; line-height: 1.85; }
.case-image { height: 500px; margin-top: 42px; overflow: hidden; border-radius: var(--radius); }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-card { padding: 34px; border-radius: var(--radius); color: var(--ink); background: var(--soft-lime); }
.contact-card .eyebrow.light { color: var(--muted); }
.contact-card .eyebrow.light::before { background: var(--orange); }
.contact-card h2 { color: var(--ink); font-size: 36px; }
.contact-card p { color: var(--muted); }
.contact-image { height: 260px; margin: 28px -10px -10px; overflow: hidden; border-radius: 18px; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; opacity: .86; }
.contact-list { display: grid; gap: 15px; margin: 32px 0 0; }
.contact-link { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(17,24,39,.15); color: var(--ink); }
.contact-link span { color: var(--orange); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

/* Form */
.form { position: relative; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { position: relative; margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.field .optional { text-transform: none; letter-spacing: 0; opacity: .7; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; color: var(--ink); background: transparent; transition: border-color .2s ease; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }
.field-error { display: none; margin-top: 7px; color: var(--orange-dark); font-family: var(--mono); font-size: 11px; letter-spacing: .02em; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--orange-dark); }
.field.has-error .field-error { display: block; }
.field.is-valid input, .field.is-valid textarea, .field.is-valid select { border-color: var(--lime-dark); }
.form .button { margin-top: 8px; }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.form-note[data-plan-note] { display: none; margin: 0 0 22px; padding: 12px 14px; color: var(--ink); background: var(--soft-lime); border-radius: var(--radius-sm); font-family: var(--mono); font-size: 11px; line-height: 1.6; }
.form-note[data-plan-note].is-visible { display: block; }
.form-banner { display: none; align-items: center; gap: 10px; margin-bottom: 22px; padding: 13px 16px; border-radius: var(--radius-sm); font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.form-banner.is-visible { display: flex; }
.form-banner.is-error { color: #8a2e1c; background: #fdece6; }
.form-success { display: none; flex-direction: column; align-items: flex-start; gap: 14px; padding: 48px 34px; text-align: left; }
.form-success.is-visible { display: flex; animation: fade-up .5s var(--ease); }
.form-success-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--lime); color: var(--navy); font-size: 22px; }
.form-success h3 { margin-bottom: 4px; }
.form-success p { margin: 0; color: var(--muted); }
.form.is-submitted .form-fields { display: none; }

.privacy-layout { display: grid; align-items: start; }
/* .privacy-nav { position: sticky; top: calc(var(--nav-h) + 24px); z-index: 1; display: grid; gap: 4px; max-height: calc(100vh - var(--nav-h) - 48px); overflow-y: auto; padding-right: 6px; }
.privacy-nav a { padding: 6px 0; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.privacy-nav a:hover, .privacy-nav a:focus-visible { color: var(--orange); } */
.policy { max-width: 780px; min-width: 0; overflow-wrap: break-word; }
.policy h2 { margin: 45px 0 12px; font-size: 30px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--muted); line-height: 1.8; }
.policy ul { padding-left: 20px; }
.policy strong { color: var(--ink); }
.policy code { padding: 3px 7px; border-radius: 6px; color: var(--navy); background: var(--soft-lime); font-family: var(--mono); font-size: .9em; word-break: break-word; }
.policy a { color: var(--orange); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* CTA/footer */
.cta {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
  color: var(--white);
  background: #0b0f19; /* replace powderblue with dark premium bg */
}

/* 🔥 Moving Gradient Glow (Right Side) */
.cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle,
    rgba(99,102,241,0.5),
    transparent 70%);
  filter: blur(120px);
  animation: glowMove1 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* 🔥 Second Glow (Left Side) */
.cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle,
    rgba(236,72,153,0.5),
    transparent 70%);
  filter: blur(120px);
  animation: glowMove2 10s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ✨ Animation */
@keyframes glowMove1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, 60px); }
}

@keyframes glowMove2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, -40px); }
}

/* Keep your layout safe */
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}

/* Heading color adjust for dark bg */
.cta h2 {
  max-width: 670px;
  margin: 0;
  color: #fff;
}

/* Actions */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* Note text */
.cta-note {
  color: rgba(255,255,255,0.6);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer { padding: 72px 0 24px; color: #bcc5d0; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 42px; }
.footer-grid > * { min-width: 0; }
.footer-brand { color: var(--white); }
.footer-tagline { max-width: 280px; margin: 20px 0 0; color: #8d99a8; font-size: 14px; line-height: 1.7; }
.footer-meta { display: flex; align-items: center; gap: 9px; margin: 22px 0 0; color: #7d8998; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(213,244,91,.18); flex: none; animation: pulse-dot 2.4s ease-in-out infinite; }
.footer-col h4 { margin: 0 0 18px; color: var(--lime); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: #bdc6d0; font-size: 14px; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid #364255; color: #7d8998; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--lime); }
.top-link { position: fixed; right: 20px; bottom: 20px; z-index: 20; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: var(--lime); box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .3s ease; }
.top-link.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.top-link:hover { transform: translateY(-3px); }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.97); transition: opacity .8s ease, transform .8s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-8px) rotate(var(--r, 0deg)); } }
.tag-top { --r: -5deg; }
.tag-bottom { --r: 5deg; }
@keyframes pulse-line { 0%, 100% { opacity: .5; transform: scaleX(1); } 50% { opacity: 1; transform: scaleX(1.3); } }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } .reveal, .reveal-scale { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .nav-links ul { gap: 4px; }
  .nav-links a:not(.button) { padding: 9px 12px; font-size: 13px; }
  .hero-grid, .page-hero .inner { gap: 42px; }
  .split { gap: 55px; }
  .footer-grid { gap: 28px; }
  .service-grid, .plan-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-inner { min-height: 74px; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 74px 0 0; z-index: 90; display: grid; align-content: start; padding: 28px 16px; background: var(--paper); transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links ul { display: grid; gap: 0; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a:not(.button) { display: block; padding: 17px 4px; border-radius: 0; font-size: 18px; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease, color .2s ease, background .2s ease; }
  .nav-links.is-open a:not(.button) { opacity: 1; transform: none; }
  .nav-links.is-open li:nth-child(1) a { transition-delay: .05s; }
  .nav-links.is-open li:nth-child(2) a { transition-delay: .1s; }
  .nav-links.is-open li:nth-child(3) a { transition-delay: .15s; }
  .nav-links.is-open li:nth-child(4) a { transition-delay: .2s; }
  .nav-links.is-open li:nth-child(5) a { transition-delay: .25s; }
  .nav-links.is-open li:nth-child(6) a { transition-delay: .3s; }
  .nav-links .button { margin-top: 25px; }
  .nav-links li:last-child { border-bottom: 0; }
}
@media (max-width: 860px) and (max-height: 420px) {
  .nav-links { padding: 14px 16px; overflow-y: auto; }
  .nav-links a:not(.button) { padding: 10px 4px; font-size: 15px; }
  .nav-links .button { margin-top: 12px; }
}

@media (max-width: 900px) {
  .section { padding: 86px 0; }
  .hero-grid, .split, .page-hero .inner, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 56px 0 44px; }
  .hero-visual { max-height: none; aspect-ratio: 5 / 4; }
  .page-hero-visual { height: 300px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 35px; }
  .privacy-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px 22px; max-height: none; overflow: visible; }
  .page-hero h1 { max-width: 700px; }
  .contact-grid { gap: 35px; }
  .case-meta { gap: 16px; }
  .trust-strip .container { justify-content: flex-start; gap: 20px 34px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 70px 0; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .hero-visual { aspect-ratio: 1 / 1; }
  .hero-image { left: 8%; width: 92%; border-radius: 120px 120px 18px 18px; }
  .hero-visual::after { left: 8%; border-radius: 120px 120px 18px 18px; }
  .tag-bottom { right: 0; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 28px; }
  .hero-trust { flex-wrap: wrap; }
  .section-head, .cta-inner { display: block; }
  .section-head .lead { margin-top: 20px; }
  .cta-actions { align-items: flex-start; margin-top: 26px; }
  .project-grid, .project-list, .service-grid, .plan-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4) { grid-column: auto; min-height: 400px; }
  .image-frame.tall { min-height: 420px; }
  .image-frame.landscape { min-height: 290px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 35px 15px; }
  .process-item { grid-template-columns: 42px 1fr; gap: 10px; }
  .process-item p { grid-column: 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 25px 12px; }
  .team-card:nth-child(2), .team-card:nth-child(4) { margin-top: 25px; }
  .team-photo { height: 230px; }
  .quote-block { padding: 30px; }
  .case-meta { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .case-cover { height: 70vw; }
  .form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card { padding: 24px; }
  .contact-link { align-items: flex-start; gap: 8px; flex-direction: column; }
  .faq-q { padding: 20px; font-size: 15px; }
  .faq-a p { margin: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 13px; }
  .page-hero { padding: 65px 0 55px; }
  .page-hero h1 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
  .page-hero .inner { gap: 32px; }
  .page-hero-visual { height: 230px; }
  .case-hero { padding: 65px 0 55px; }
  .case-meta strong { display: block; font-size: 14px; line-height: 1.35; }
  .case-image { height: 330px; }
  .privacy-nav { gap: 8px 16px; }
  .privacy-nav a { font-size: 9px; }
  .policy h2 { font-size: 26px; }
  .cta { padding: 58px 0; }
  .cta .button { margin-top: 26px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1180px); }
  h2 { font-size: 2.1rem; }
  .hero { padding-top: 44px; }
  .hero-stamp { right: 4%; width: 74px; height: 74px; font-size: 8px; }
  .floating-tag { padding: 10px 11px; font-size: 8px; }
  .project-card, .project-card:nth-child(2), .project-card:nth-child(3), .project-card:nth-child(4) { min-height: 340px; padding: 20px; }
  .project-index { top: 18px; left: 20px; }
  .project-info h3 { font-size: 25px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:nth-child(2), .team-card:nth-child(4) { margin-top: 0; }
  .team-photo { height: 300px; }
  .case-meta { gap: 18px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero { min-height: auto; padding: 96px 0 56px; }
}
