@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400;0,500;0,600;1,400&family=Comfortaa:wght@300;400;500;600&display=swap');

:root {
  --ink: #151e25;
  --ink-2: #0d151b;
  --green: #39bd86;
  --green-dark: #0e5146;
  --deep: #082f2b;
  --mint: #edf9f5;
  --soft: #f1f1f1;
  --yellow: #ffe286;
  --line: rgba(15, 28, 35, .14);
  --heading: 'Comfortaa', sans-serif;
  --body: 'Afacad', sans-serif;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: #111; background: #fff; font-family: var(--body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 16% 0%, rgba(57,189,134,.06), transparent 32%), #fff; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--heading); font-weight: 400; }
p { margin-top: 0; }
main { min-height: 60vh; }
.content-width { width: min(var(--max), calc(100% - 64px)); margin-left: auto; margin-right: auto; }
.section-space { padding-top: 105px; padding-bottom: 105px; }
.center-action { display: flex; justify-content: center; margin-top: 55px; }
.motion-marker { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.reveal { opacity: 0; transform: translate3d(0, 34px, 0) scale(.985); transition: opacity .85s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms), transform .85s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; height: 112px; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); transition: height .3s ease, box-shadow .3s ease; }
.site-header.is-scrolled { height: 88px; box-shadow: 0 12px 35px rgba(10,25,25,.09); }
.header-inner { width: min(1420px, calc(100% - 50px)); height: 100%; margin: auto; display: flex; align-items: center; gap: 45px; }
.brand { width: 175px; flex: 0 0 175px; text-decoration: none; }
.brand img { height: 62px; object-fit: contain; object-position: left center; }
.main-nav { margin-left: auto; height: 76px; border-radius: 999px; background: #efefef; padding: 0 54px; display: flex; align-items: center; justify-content: center; gap: 34px; transition: height .3s ease; }
.is-scrolled .main-nav { height: 62px; }
.main-nav a { text-decoration: none; white-space: nowrap; font-size: 16px; transition: color .2s ease, transform .2s ease; }
.main-nav a:hover { color: var(--green-dark); transform: translateY(-2px); }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 8px; }
.menu-button span { display: block; height: 2px; margin: 7px 0; background: var(--ink); }

/* Shared */
.section-heading { max-width: 820px; margin: 0 auto 62px; text-align: center; }
.section-heading .eyebrow { display: inline-block; margin-bottom: 14px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 14px; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.15; letter-spacing: -1.5px; }
.section-heading p { max-width: 720px; margin: 22px auto 0; font-size: 20px; }
.pill-button { display: inline-flex; min-width: 178px; min-height: 50px; align-items: center; justify-content: center; padding: 12px 28px; border: 0; border-radius: 18px; background: var(--green); color: #fff; text-decoration: none; transition: transform .22s ease, background .22s ease, box-shadow .22s ease; }
.pill-button:hover { transform: translateY(-3px); background: #2cab78; box-shadow: 0 12px 25px rgba(57,189,134,.25); }
.pill-button--light { background: #fff; color: #111; border: 1px solid var(--line); margin-left: 12px; }
.breadcrumb { color: #7a7d7d; font-size: 17px; }
.arrow-icon { display: grid; place-items: center; width: 100%; height: 100%; }
.tiny-arrow, .case-arrow, .round-link { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); text-decoration: none; color: #111; font-size: 22px; }
.dots { color: #aaa; letter-spacing: 7px; font-size: 17px; }
.dots--center { text-align: center; margin-top: 40px; }
.placeholder { position: relative; overflow: hidden; background: linear-gradient(135deg, #0c211f, #37b17e); color: #fff; min-height: 240px; }
.placeholder img { height: 100%; object-fit: cover; }
.placeholder > span { position: absolute; left: 18px; bottom: 15px; background: rgba(0,0,0,.62); border-radius: 99px; padding: 7px 13px; font-size: 13px; letter-spacing: .04em; }

/* Home Hero */
.home-hero { position: relative; min-height: 880px; padding: 110px 0 80px; overflow: hidden; color: #fff; background: #082f2b; border-radius: 0 0 36px 36px; }
.home-hero::before { content: ''; position: absolute; inset: -30% -20% auto; height: 70%; background: radial-gradient(circle, rgba(57,189,134,.13), transparent 62%); animation: floatGlow 9s ease-in-out infinite alternate; }
@keyframes floatGlow { to { transform: translate3d(8%, 5%, 0) scale(1.15); } }
.hero-copy { position: relative; z-index: 2; width: min(840px, calc(100% - 40px)); margin: auto; text-align: center; }
.hero-copy h1 { margin: 0; color: var(--green); font-size: clamp(46px, 5.4vw, 76px); line-height: 1.05; letter-spacing: -2px; }
.hero-copy p { margin: 24px auto 0; max-width: 790px; font-size: 20px; line-height: 1.6; }
.hero-slider-window { position: relative; width: 100%; height: 390px; margin-top: 35px; overflow: hidden; clip-path: ellipse(64% 49% at 50% 50%); }
.hero-slider-window::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 60px 30px #082f2b; }
.hero-slider-track { position: absolute; top: 12px; left: calc(50% - 720px); display: flex; gap: 28px; width: max-content; transition: transform 1.15s cubic-bezier(.7,0,.2,1); will-change: transform; }
.hero-slide { width: 310px; height: 360px; flex: 0 0 310px; }
.hero-slide img { height: 100%; object-fit: cover; }
.hero-tagline { position: relative; z-index: 2; margin: 18px 0 0; text-align: center; font-family: var(--heading); font-size: clamp(19px,2vw,28px); letter-spacing: -.5px; }
.hero-tagline span { color: var(--green); }

/* Page hero */
.page-hero { position: relative; width: min(1420px, calc(100% - 46px)); min-height: 560px; margin: 28px auto 20px; padding: 90px 70px; overflow: hidden; border-radius: 44px; background: linear-gradient(125deg, #0d2523, #101922 58%, #122129); color: #fff; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 60px; }
.page-hero::after { content: ''; position: absolute; width: 560px; height: 560px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(57,189,134,.56), transparent 65%); filter: blur(22px); opacity: .55; }
.page-hero__glow { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(57,189,134,.14), transparent 42%); }
.page-hero__copy, .page-hero__media { position: relative; z-index: 2; }
.page-hero__copy h1 { margin: 0 0 24px; font-size: clamp(40px, 4.7vw, 68px); line-height: 1.12; color: var(--green); }
.page-hero__copy > p:not(.breadcrumb) { max-width: 680px; font-size: 21px; }
.page-hero__copy .breadcrumb { color: rgba(255,255,255,.65); margin-bottom: 44px; }
.page-hero__media { height: 410px; overflow: hidden; border-radius: 34px 72px 34px 72px; border: 2px solid rgba(57,189,134,.55); }
.page-hero__media img { height: 100%; object-fit: cover; }
.page-hero--compact { min-height: 370px; grid-template-columns: 1fr; text-align: center; }
.page-hero--compact .page-hero__copy { max-width: 900px; margin: auto; }

/* Strategic */
.strategic-scroll { height: 190vh; padding-top: 80px; }
.strategic-sticky { position: sticky; top: 95px; min-height: calc(100vh - 100px); display: flex; flex-direction: column; justify-content: center; }
.strategic-sticky .section-heading { margin-bottom: 44px; }
.strategic-stage { position: relative; width: min(1306px, calc(100% - 56px)); height: 550px; margin: 0 auto; overflow: hidden; border-radius: 60px; background: radial-gradient(circle at 5% 20%, #195346, transparent 35%), linear-gradient(120deg, #0d181e, #151d25); }
.strategy-card, .strategy-image { position: absolute; border-radius: 34px; will-change: transform, opacity; box-shadow: 0 18px 38px rgba(0,0,0,.16); }
.strategy-card { display: flex; align-items: center; justify-content: center; padding: 40px; text-align: center; }
.strategy-card--green { left: 5%; top: 22%; width: 24%; height: 53%; background: linear-gradient(135deg, #007f68, #35bd85); color: #fff; }
.strategy-card--green h3 { margin: 0; font-size: 31px; line-height: 1.32; text-align: left; }
.strategy-card--black { left: 29%; top: 22%; width: 24%; height: 53%; background: #000; color: #fff; }
.strategy-card--black p, .strategy-card--white p { margin: 0; font-size: 18px; }
.strategy-card--white { left: 54%; top: 22%; width: 24%; height: 53%; z-index: 3; background: #fff; color: #111; }
.strategy-image { right: 4%; top: 9%; width: 30%; height: 79%; overflow: hidden; }
.strategy-image img { height: 100%; object-fit: cover; }

/* Testimonials */
.testimonials-section { padding-top: 40px; }
.testimonials-shell { position: relative; width: min(1200px, calc(100% - 52px)); margin: auto; padding: 70px 80px 66px; border-radius: 44px; background: #eaf8f4; box-shadow: 0 8px 16px rgba(0,0,0,.18); text-align: center; }
.testimonials-shell .section-heading { margin-bottom: 38px; }
.testimonials-shell .section-heading h2 { font-size: 42px; }
.testimonials-shell .section-heading p { font-size: 19px; }
.testimonial-card { position: relative; width: 610px; height: 405px; margin: 0 auto 55px; border-radius: 42px; background: linear-gradient(135deg, #d8e2df, #eff5f3); box-shadow: 18px 18px 34px rgba(0,0,0,.16); overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; left: 0; top: 52px; width: 160px; height: 280px; border-radius: 0 70px 70px 0; background: #eaf8f4; z-index: 2; }
.testimonial-card img { position: absolute; left: 160px; bottom: 0; width: 58%; height: 94%; object-fit: contain; filter: grayscale(1); }
.testimonial-card h3 { position: absolute; right: 50px; top: 75px; z-index: 3; margin: 0; text-align: left; font-size: 33px; line-height: .92; }
.testimonial-quote { position: absolute; z-index: 4; left: -135px; top: 84px; width: 275px; font-family: var(--heading); font-size: 20px; line-height: 1.32; }
.slider-arrow { position: absolute; top: 54%; width: 52px; height: 52px; border: 0; border-radius: 50%; background: #777; color: #fff; font-size: 28px; }
.slider-arrow--left { left: 44px; }
.slider-arrow--right { right: 44px; }

/* Services */
.client-marquee { width: 100%; overflow: hidden; margin-bottom: 95px; }
.client-marquee > div { display: flex; width: max-content; gap: 28px; animation: marquee 22s linear infinite; }
.client-marquee span { width: 180px; height: 62px; display: grid; place-items: center; padding: 0 22px; background: #1d1f1f; color: #fff; border-radius: 8px 8px 22px 8px; font-family: var(--heading); }
@keyframes marquee { to { transform: translateX(-50%); } }
.services-home > .section-heading { margin-bottom: 62px; }
.services-intro { width: min(1120px, calc(100% - 64px)); margin: auto auto 80px; display: grid; grid-template-columns: 1.45fr .95fr; gap: 28px; align-items: end; }
.services-visual { position: relative; height: 370px; overflow: hidden; border-radius: 28px 28px 70px 28px; background: #02110e; color: #fff; }
.services-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.05), rgba(0,0,0,.7)); }
.services-visual img { height: 100%; object-fit: cover; opacity: .65; }
.services-visual h3 { position: absolute; z-index: 2; right: 35px; top: 50%; width: 40%; transform: translateY(-50%); font-size: 22px; }
.services-copy { padding: 52px 42px; border-radius: 45px 45px 45px 15px; background: #eee; font-size: 18px; }
.service-grid { width: min(1120px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 330px; padding: 35px 28px 62px; border-radius: 31px 31px 65px 31px; background: #eef7f4; box-shadow: 0 4px 0 rgba(0,0,0,.03); transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 18px 40px rgba(20,30,30,.12); }
.service-card.tone-1, .service-card.tone-3 { background: #f1f1f1; }
.service-card.tone-3, .service-card.tone-4 { background: var(--ink); color: #fff; }
.service-card h3 { margin: 0 0 22px; font-size: 22px; line-height: 1.2; }
.service-card p { font-size: 15px; line-height: 1.45; }
.service-card .tiny-arrow { position: absolute; right: -2px; bottom: -2px; }

/* About */
.about-layout { width: min(1060px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: .9fr 1.35fr; gap: 30px; align-items: stretch; }
.about-image { position: relative; height: 530px; overflow: hidden; border-radius: 28px 28px 90px 28px; }
.about-image::after { content: ''; position: absolute; inset: 18px; border: 2px solid #fff; border-radius: 22px 22px 78px 22px; pointer-events: none; }
.about-image img { height: 100%; object-fit: cover; }
.about-image .round-link { position: absolute; right: 7px; bottom: 48px; z-index: 2; width: 66px; height: 66px; }
.about-content { display: grid; gap: 28px; }
.about-lead { display: flex; align-items: center; padding: 45px; border-radius: 36px; background: linear-gradient(110deg, #006246, #087d4e); color: #fff; font-family: var(--heading); font-size: 29px; line-height: 1.3; }
.about-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.about-small-grid article { padding: 40px 34px; border-radius: 37px; background: var(--ink); color: #fff; font-size: 17px; }

/* Statistics */
.statistics-panel { width: min(1260px, calc(100% - 64px)); min-height: 650px; margin: auto; display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: 40px; background: radial-gradient(circle at 70% 0%, #bdff80, transparent 35%), linear-gradient(125deg, #152129 15%, #007356 50%, #122029 100%); color: #fff; }
.statistics-panel article { padding: 310px 48px 50px; border-right: 1px solid rgba(255,255,255,.1); background: linear-gradient(165deg, transparent 0 28%, rgba(20,30,38,.95) 28% 100%); }
.statistics-panel article:nth-child(even) { background: linear-gradient(165deg, transparent 0 28%, rgba(2,65,52,.3) 28% 100%); }
.statistics-panel strong { display: block; color: #ffe060; font-family: var(--heading); font-size: 80px; line-height: 1; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.statistics-panel.is-counting strong { animation: statPop .8s ease both; }
.statistics-panel article:nth-child(2) strong { animation-delay: .12s; }.statistics-panel article:nth-child(3) strong { animation-delay: .24s; }.statistics-panel article:nth-child(4) strong { animation-delay: .36s; }
@keyframes statPop { 0% { opacity:0; transform: translateY(60px) scale(.7); } 100% { opacity:1; transform:none; } }
.statistics-panel h3 { color: #ffe060; text-transform: uppercase; font-size: 27px; }
.statistics-panel p { font-size: 14px; }

/* Case studies */
.case-grid { width: min(1180px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 24px; align-items: start; }
.case-card { position: relative; }
.case-image { position: relative; height: 190px; overflow: hidden; border-radius: 24px 24px 50px 24px; }
.case-card--featured .case-image { height: 350px; }
.case-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.case-card:hover img { transform: scale(1.08); }
.case-arrow { position: absolute; right: 9px; bottom: 10px; }
.case-card h3 { margin: 22px 0 3px; color: var(--green); font-size: 27px; }
.case-card span { text-transform: uppercase; color: #12473f; font-size: 14px; }
.case-card p { font-size: 16px; }
.case-summary { width: min(650px, calc(100% - 64px)); margin: 30px 14% 0 auto; }
.case-summary .pill-button { margin-top: 20px; }

/* FAQ */
.faq-panel { width: min(1180px, calc(100% - 64px)); min-height: 620px; margin: auto; padding: 64px 70px; border-radius: 55px; background: radial-gradient(circle at 0 0, rgba(57,189,134,.2), transparent 35%), var(--ink); color: #fff; display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; }
.faq-left h3 { margin: 45px 0 16px; font-size: 46px; line-height: 1.25; }
.faq-left h3 span, .faq-item button span { color: var(--green); }
.faq-left > p { max-width: 520px; }
.faq-left form { margin-top: 55px; padding: 25px; border: 1px solid var(--green); border-radius: 18px; display: grid; gap: 14px; }
.faq-left form h4 { margin: 0; font-size: 27px; }
.faq-left input, .faq-left textarea { width: 100%; border: 0; border-radius: 13px; padding: 11px 15px; }
.faq-left textarea { height: 82px; resize: vertical; }
.faq-left form button, .faq-filter { border: 0; border-radius: 14px; background: var(--green); color: #fff; min-height: 42px; padding: 8px 30px; justify-self: start; }
.faq-list { position: relative; padding-top: 75px; }
.faq-filter { position: absolute; top: 0; right: 0; min-width: 170px; }
.faq-item { margin-bottom: 20px; border: 1px solid var(--green); border-radius: 14px; overflow: hidden; }
.faq-item > button { width: 100%; min-height: 60px; border: 0; background: transparent; color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; font-size: 22px; }
.faq-item > p { max-height: 0; margin: 0; overflow: hidden; padding: 0 28px; opacity: 0; transition: max-height .4s ease, opacity .4s ease, padding .4s ease; }
.faq-item.is-open > p { max-height: 130px; opacity: 1; padding: 0 28px 22px; }
.faq-list .dots { text-align: right; }

/* Certifications */
.certificate-grid { width: min(1240px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.certificate-card { height: 380px; border-radius: 38px; background: #fff; box-shadow: 0 8px 15px rgba(0,0,0,.18); display: grid; place-items: center; }
.badge { position: relative; width: 245px; height: 255px; padding: 75px 30px 30px; text-align: center; color: #fff; background: #162129; clip-path: polygon(50% 0, 94% 27%, 94% 73%, 50% 100%, 6% 73%, 6% 27%); outline: 10px solid var(--green); }
.badge::after { content: ''; position: absolute; left: -25px; right: -25px; top: 55%; height: 32px; transform: rotate(12deg); background: #ddd; }
.badge h3, .badge p, .badge span { position: relative; z-index: 2; margin: 0; }
.badge h3 { font-size: 30px; }.badge p { font-size: 18px; }.badge span { color: var(--green); font-size: 30px; }

/* Reviews */
.review-stage { position: relative; width: min(1280px, calc(100% - 64px)); height: 440px; margin: auto; }
.review-card { position: absolute; top: 50px; width: 52%; min-height: 320px; padding: 46px; background: #fff; box-shadow: 0 3px 7px rgba(0,0,0,.24); display: grid; grid-template-columns: 90px 1fr; gap: 16px; }
.review-card--back { left: 0; transform: scale(.93); }.review-card--front { left: 25%; top: 0; z-index: 2; min-height: 400px; }
.review-card p, .review-card a { grid-column: 1 / -1; }.review-card a { color: #138bc2; text-decoration: none; }
.avatar { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: #2a6a20; color: #fff; font-size: 32px; }.avatar--blue { background: #118ccb; }
.stars { color: #ff7900; font-size: 36px; letter-spacing: 3px; }

/* Contact CTA */
.contact-panel { position: relative; width: min(1180px, calc(100% - 64px)); min-height: 540px; margin: auto; overflow: hidden; border-radius: 60px; padding: 75px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; color: #fff; background: radial-gradient(circle at 20% 70%, rgba(57,189,134,.9), transparent 40%), linear-gradient(120deg, #00583f, #001b16); }
.contact-panel::before { content: ''; position: absolute; inset: -30%; opacity: .25; background: repeating-linear-gradient(145deg, transparent 0 40px, rgba(255,255,255,.12) 41px 43px); transform: rotate(5deg); }
.contact-panel > * { position: relative; z-index: 2; }
.contact-panel form { display: grid; gap: 17px; }
.contact-panel input, .contact-panel textarea { width: 100%; border: 0; border-radius: 24px; padding: 17px 23px; background: #fff; color: #111; }
.contact-panel textarea { height: 220px; resize: vertical; border-radius: 25px; }
.contact-panel h2 { margin: 0 0 20px; font-size: 53px; line-height: 1.17; }
.contact-panel p { font-size: 20px; }

/* Blog */
.blog-row { width: min(1190px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.blog-intro, .blog-card { min-height: 360px; overflow: hidden; border-radius: 28px; }
.blog-intro { padding: 190px 28px 30px; color: #ffe26f; background: linear-gradient(145deg, #39bd86, #009b65); }
.blog-intro h3 { margin: 0; font-size: 33px; line-height: 1.05; }.blog-intro p { font-weight: 600; }
.blog-card { background: var(--ink); color: #fff; }
.blog-card > img { height: 185px; object-fit: cover; }
.blog-card > div { position: relative; min-height: 175px; padding: 25px; }
.blog-card h3 { margin: 0 0 30px; font-size: 21px; line-height: 1.04; text-transform: uppercase; }
.blog-card a { position: absolute; right: 18px; bottom: 18px; padding: 8px 25px; border-radius: 99px; background: var(--green); color: #fff; text-decoration: none; font-size: 13px; }
.slider-progress { width: min(650px, calc(100% - 64px)); height: 10px; margin: 70px auto 0; border-radius: 99px; background: #ddd; overflow: hidden; }.slider-progress span { display: block; width: 40%; height: 100%; border-radius: inherit; background: #18594f; }

/* Footer */
.site-footer { position: relative; min-height: 690px; overflow: hidden; padding: 75px 45px 110px; background: #020403; color: #fff; }
.footer-glow { position: absolute; left: 12%; right: 0; bottom: -260px; height: 430px; background: radial-gradient(ellipse, #3bd38e, transparent 65%); filter: blur(40px); opacity: .75; }
.footer-grid { position: relative; z-index: 2; width: min(1400px, 100%); margin: auto; display: grid; grid-template-columns: 1.7fr .85fr .8fr .9fr; gap: 65px; }
.footer-lead { padding-right: 45px; border-right: 1px solid rgba(255,255,255,.35); }
.footer-lead h2 { margin: 0 0 28px; color: var(--green); font-size: 61px; line-height: .98; }.footer-lead h2 small { display: block; margin-bottom: 10px; color: #fff; font-size: 31px; }
.footer-lead > p { font-family: var(--heading); font-size: 26px; }
.newsletter { display: grid; grid-template-columns: 2fr .95fr; gap: 12px; margin-bottom: 40px; }.newsletter input, .newsletter button { min-height: 61px; border: 0; padding: 0 18px; color: #fff; background: #333; }.newsletter button { background: #858585; }
.social-row { display: flex; gap: 45px; margin-bottom: 45px; }.social-row a { text-decoration: none; font-size: 41px; font-weight: 600; }
.footer-logo { width: 245px; padding: 18px 28px; border-radius: 999px; background: #fff; }.footer-logo img { height: 65px; object-fit: contain; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }.footer-column h3 { margin: 0 0 24px; font-size: 25px; text-transform: uppercase; }.footer-column a { text-decoration: none; font-size: 15px; }.footer-column strong { margin-top: 16px; font-family: var(--heading); font-weight: 400; font-size: 19px; }.footer-column p { font-size: 15px; }.footer-spacer { height: 18px; }

/* General page sections */
.statement-panel { width: min(1120px, calc(100% - 64px)); min-height: 380px; margin: auto; padding: 75px; border-radius: 38px; background: var(--ink); color: #fff; text-align: center; }
.statement-panel > span { color: var(--green); text-transform: uppercase; font-size: 23px; }.statement-panel h2 { max-width: 760px; margin: 10px auto 48px; color: var(--green); text-transform: uppercase; font-size: 42px; }
.statement-chips { display: flex; justify-content: center; align-items: center; gap: 16px; }.statement-chips b { min-width: 130px; padding: 13px 25px; border-radius: 99px; background: #eee; color: #111; font-family: var(--heading); font-weight: 400; }.statement-chips b:first-child { background: #ffe263; }.statement-chips i { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #000; font-size: 30px; font-style: normal; }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
.split-intro__image { height: 520px; border-radius: 30px 30px 95px 30px; }.split-intro__copy > span { color: var(--green); text-transform: uppercase; letter-spacing: .14em; }.split-intro__copy h2 { font-size: 42px; line-height: 1.25; }.split-intro__copy p { font-size: 19px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { position: relative; min-height: 260px; padding: 34px; border-radius: 32px; background: #f0f0f0; box-shadow: 0 5px 13px rgba(0,0,0,.08); }.feature-card--green { background: linear-gradient(140deg, #064a3d, #37b77f); color: #fff; }.feature-card > span { position: absolute; top: 24px; right: 25px; color: rgba(0,0,0,.25); font-size: 35px; }.feature-card--green > span { color: rgba(255,255,255,.3); }.feature-card h3 { margin: 42px 0 18px; font-size: 24px; }
.benefit-layout { display: grid; grid-template-columns: .6fr 1.4fr; gap: 28px; }.benefit-image { height: 550px; border-radius: 45px; }.benefit-layout .feature-grid { grid-template-columns: repeat(2, 1fr); }
.facts-panel { overflow: hidden; border-radius: 42px; display: grid; grid-template-columns: .65fr 1.35fr; min-height: 430px; background: var(--ink); color: #fff; }.facts-panel > .placeholder { min-height: 430px; }.facts-panel > div { display: grid; grid-template-columns: 1fr 1fr; padding: 45px; gap: 20px; }.facts-panel article { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.2); }.facts-panel strong { color: #ffe263; font-family: var(--heading); font-size: 50px; }.facts-panel h3 { color: #ffe263; margin: 0; }

/* Clients */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }.logo-card { height: 170px; display: grid; place-items: center; border-radius: 28px; background: var(--ink); color: #fff; box-shadow: 0 9px 18px rgba(0,0,0,.1); }.logo-card span { width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #1a2828; text-align: center; font-family: var(--heading); }
.world-panel { min-height: 430px; padding: 70px; border-radius: 45px; background: radial-gradient(circle at 0 0, rgba(57,189,134,.7), transparent 38%), #0e171d; color: #fff; display: grid; grid-template-columns: .45fr 1fr; align-items: center; gap: 50px; }.world-panel strong { color: var(--green); font-family: var(--heading); font-size: 80px; }.world-panel h3 { color: var(--green); font-size: 35px; }.map-placeholder { height: 300px; display: grid; place-items: center; border-radius: 180px; border: 1px dashed rgba(255,255,255,.25); color: rgba(255,255,255,.4); font-family: var(--heading); font-size: 33px; text-align: center; }

/* About Page */
.about-transform__panel { min-height: 420px; border-radius: 45px; padding: 65px; background: linear-gradient(125deg, #13212a, #0d151a); color: #fff; display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; align-items: center; }.about-transform__panel h3 { color: var(--green); font-size: 48px; }.about-transform__panel p { border-bottom: 1px solid rgba(255,255,255,.3); padding: 16px 0; font-size: 20px; }
.journey-panel { padding: 50px; border-radius: 38px; background: var(--ink); color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }.journey-panel h3 { color: var(--green); font-size: 36px; }.journey-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.journey-images img { height: 180px; object-fit: cover; border-radius: 18px; }.journey-images img:nth-child(1) { grid-row: span 2; height: 372px; }
.vision-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 12px; }.vision-grid article { min-height: 300px; padding: 45px; background: var(--ink); color: #fff; }.vision-grid article h3 { color: var(--green); font-size: 36px; }.vision-grid .placeholder { min-height: 300px; }
.office-grid { display: grid; grid-template-columns: .7fr 1.6fr .7fr; gap: 14px; }.office-grid img { height: 330px; object-fit: cover; border-radius: 25px; }
.founder-card { overflow: hidden; border-radius: 45px; background: linear-gradient(145deg, #0b3e35, #0c161b); color: #fff; display: grid; grid-template-columns: 1fr .9fr; min-height: 430px; }.founder-card > div { padding: 60px; }.founder-card span { color: var(--green); text-transform: uppercase; }.founder-card h2 { font-size: 39px; }.founder-card img { height: 100%; object-fit: cover; filter: grayscale(1); }

/* Case pages */
.filter-row { display: flex; gap: 20px; align-items: center; margin-bottom: 55px; flex-wrap: wrap; }.filter-row button { min-width: 130px; border: 0; border-radius: 99px; padding: 10px 25px; background: var(--green); color: #fff; }.filter-row span { padding: 8px 18px; border-radius: 99px; background: #eee; }
.case-overview__panel { border-radius: 38px; overflow: hidden; background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr 1.1fr; }.case-overview__panel > div:first-child { padding: 65px; }.case-overview__panel h2 { color: var(--green); font-size: 39px; }.case-overview__panel .placeholder { min-height: 410px; }
.client-background__grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 18px; }.client-background__grid article { padding: 35px; border-radius: 30px; background: var(--ink); color: #fff; }.client-background__grid article h3 { color: var(--green); }.client-background__grid .placeholder { grid-row: span 2; border-radius: 36px; }.client-background__grid article:last-child { grid-column: 3; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }.process-grid article { min-height: 320px; padding: 40px; border-radius: 32px; background: linear-gradient(145deg, #0d2523, #141c22); color: #fff; }.process-grid article > span { float: right; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--green); color: var(--green); }.process-grid h3 { margin-top: 65px; color: var(--green); font-size: 26px; }
.proof-panel { min-height: 360px; padding: 80px 15%; border-radius: 60px; text-align: center; color: #fff; background: radial-gradient(circle at 0 50%, #000 0 12%, transparent 12.5%), radial-gradient(circle at 100% 50%, #000 0 12%, transparent 12.5%), var(--ink); }.proof-panel h2 { font-size: 42px; }

/* Blog Pages */
.blogs-page .blog-grid { margin-top: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }.blog-grid--three { grid-template-columns: repeat(3,1fr); }
.blog-list-card { position: relative; padding-bottom: 25px; }.blog-list-card img { height: 250px; object-fit: cover; border-radius: 30px; }.blog-list-card > span { display: inline-block; margin-top: 20px; padding: 5px 15px; border-radius: 99px; background: var(--ink); color: #fff; font-size: 13px; }.blog-list-card h2 { margin: 13px 0 8px; color: var(--green-dark); font-size: 27px; line-height: 1.2; }.blog-list-card small { text-transform: uppercase; }.blog-list-card .tiny-arrow { position: absolute; right: 8px; top: 220px; }
.pagination { text-align: center; padding-top: 75px; font-family: var(--heading); font-size: 24px; }
.article-header { padding-top: 45px; }.article-title { margin-top: 45px; padding: 70px; border-radius: 28px; background: var(--ink); color: var(--green); text-align: center; }.article-title h1 { max-width: 950px; margin: auto; font-size: 37px; }
.article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 55px; padding-top: 30px; }.article-aside { position: sticky; top: 110px; align-self: start; }.article-aside img { height: 200px; object-fit: cover; border-radius: 20px; }.article-aside > div { margin-top: 30px; padding: 28px; background: #f0f0f0; }.article-aside a { display: block; margin-top: 8px; text-decoration: none; font-size: 14px; }
.article-content { padding-top: 35px; }.article-content > p { font-size: 19px; }.article-content section { padding: 25px 0; scroll-margin-top: 130px; }.article-content h2 { font-size: 25px; }

/* Author */
.author-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }.author-portrait { position: relative; height: 580px; border: 22px solid var(--green); }.author-portrait img { height: 100%; object-fit: cover; }.author-copy h1 { color: var(--green); font-size: 54px; }.author-copy p { font-size: 20px; }
.books-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: 28px; }.books-layout blockquote { margin: 0; padding: 70px 42px; border-radius: 35px; background: linear-gradient(145deg, #0f2521, #39bd86); color: #ffe78d; font-family: var(--heading); font-size: 24px; text-align: center; }.books-layout blockquote footer { margin-top: 45px; }.book-grid { padding: 42px; border-radius: 35px; background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }.book-grid .placeholder { height: 210px; border-radius: 22px; }.book-grid h3 { color: var(--green); }

/* Careers */
.career-panel { padding: 75px 55px; border-radius: 45px; background: var(--ink); color: #fff; text-align: center; }.career-panel h1 { font-size: 51px; }.career-panel h2 { color: var(--green); font-size: 28px; }.career-panel > p { max-width: 760px; margin: auto; }
.career-collage { margin-top: 55px; display: grid; grid-template-columns: 1fr 1.15fr .85fr 1.1fr .9fr; gap: 20px; align-items: center; }.career-collage .placeholder, .career-collage > div { height: 250px; border-radius: 24px; }.career-collage > div { display: grid; place-items: center; padding: 20px; background: #888; font-family: var(--heading); font-size: 23px; }.career-collage > div:last-child { background: var(--green); }
.positions-panel { overflow: hidden; border-radius: 45px; display: grid; grid-template-columns: 1fr 1.15fr; color: #fff; background: #050706; }.position-copy { padding: 65px; }.position-copy h2 { font-size: 45px; }.position-copy > span { display: inline-block; padding: 10px 20px; border-radius: 99px; background: #777; }.position-copy h3 { font-size: 29px; }.job-meta { display: flex; gap: 40px; }.career-form { padding: 65px; background: radial-gradient(circle at 100% 50%, rgba(57,189,134,.8), transparent 50%), linear-gradient(135deg,#07100d,#0c261e); display: grid; gap: 18px; }.career-form h2 { font-size: 38px; }.career-form input, .career-form textarea, .career-form select { border: 0; border-radius: 99px; padding: 14px 20px; }.career-form textarea { min-height: 150px; border-radius: 20px; }.career-form label { text-decoration: underline; font-family: var(--heading); font-size: 21px; }.career-form label input { display: block; padding-left: 0; }

/* Resources */
.resources-page { min-height: 1200px; display: grid; grid-template-columns: 360px 1fr; background: linear-gradient(140deg, #fff, #f5f5f5); }.resources-title { min-height: 620px; padding: 190px 70px; background: #000; color: #fff; }.resources-title h1 { font-size: 48px; line-height: 1.03; }.resources-title span { color: var(--green); }.resources-content { padding: 70px 8% 100px; }.resource-grid { margin-top: 35px; display: grid; grid-template-columns: repeat(3,1fr); gap: 65px 55px; }.resource-item { text-align: center; }.resource-logo { width: 130px; height: 130px; margin: auto; border-radius: 50%; display: grid; place-items: center; background: #145b89; color: #fff; font-family: var(--heading); font-size: 40px; font-weight: 600; }.resource-logo--1 { background: #5a150e; color: #ff9b19; }.resource-logo--2 { background: #6fb3a1; }.resource-logo--3 { background: #52b9aa; }.resource-logo--4 { background: #1c1c1c; color: #5aa0ff; }.resource-item h3 { text-transform: uppercase; font-size: 20px; }

/* Contact */
.contact-page { background: radial-gradient(circle at 20% 10%, rgba(57,189,134,.09), transparent 35%); }.contact-page-panel { padding: 70px; border-radius: 45px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: radial-gradient(circle at 55% 50%, rgba(57,189,134,.65), transparent 28%), #030b13; color: #fff; }.contact-page-panel h1 { font-size: 54px; }.contact-page-panel h1 small { font-size: 20px; color: #aaa; }.contact-details { margin-top: 75px; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }.contact-page-panel form { display: grid; gap: 16px; align-content: center; }.contact-page-panel form h2 { font-size: 48px; }.contact-page-panel input, .contact-page-panel textarea { border: 0; border-radius: 14px; padding: 15px 20px; }.contact-page-panel textarea { min-height: 150px; }
.map-panel { min-height: 520px; border-radius: 30px; background: linear-gradient(125deg, #f4fbf8, #e5eef1); border: 1px solid rgba(57,189,134,.35); box-shadow: 0 0 20px rgba(57,189,134,.2); display: grid; grid-template-columns: 280px 1fr; padding: 60px; gap: 45px; align-items: center; }.map-controls { padding: 28px; border-radius: 25px; background: rgba(255,255,255,.85); box-shadow: 0 15px 35px rgba(20,40,40,.12); display: grid; gap: 13px; }.map-controls input { border: 1px solid #ddd; border-radius: 99px; padding: 11px 15px; }.map-controls button { border: 0; border-radius: 99px; padding: 9px 14px; margin: 4px; }.map-route { position: relative; height: 330px; }.map-route svg { width: 100%; height: 100%; }.map-route path { fill: none; stroke: var(--green); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 12 5; animation: routeFlow 7s linear infinite; }.map-route span { position: absolute; padding: 9px 13px; border-radius: 12px; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,.1); font-size: 13px; }.map-route span:first-child { left: 8%; top: 18%; }.map-route span:last-child { right: 2%; bottom: 22%; } @keyframes routeFlow { to { stroke-dashoffset: -160; } }

/* Legal */
.legal-title { min-height: 260px; border-radius: 55px; display: grid; place-items: center; background: radial-gradient(circle at 0 0, rgba(57,189,134,.25), transparent 35%), var(--ink); color: var(--green); }.legal-title h1 { font-size: 55px; }
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 70px; padding-top: 45px; }.legal-toc { position: sticky; top: 120px; align-self: start; padding: 38px 30px; background: #efefef; }.legal-toc a { display: block; margin-top: 10px; text-decoration: none; }.legal-content { padding-bottom: 120px; }.legal-intro { color: var(--green-dark); font-size: 21px; }.legal-content section { padding: 18px 0; scroll-margin-top: 120px; }.legal-content h2 { color: var(--green); font-size: 25px; }
.not-found { min-height: 70vh; display: grid; place-items: center; align-content: center; text-align: center; }.not-found h1 { margin: 0; color: var(--green); font-size: 130px; }

/* Responsive */
/* Service detail pages — supplied layout with agency-style motion */
.service-detail-page { --service-accent: var(--green); --service-accent-2: var(--green-dark); overflow: hidden; background: linear-gradient(180deg,#fff 0,#fff 92%,rgba(57,189,134,.04)); }
.service-detail-page .section-heading .eyebrow { color: var(--service-accent-2); }
.service-detail-page .pill-button { background: var(--service-accent); }
.service-detail-hero { padding-top: 28px; }
.service-detail-hero > .breadcrumb { margin: 0 0 34px 20px; }
.service-detail-hero__panel { position: relative; min-height: 560px; overflow: hidden; border-radius: 46px 46px 95px 46px; padding: 68px 72px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 58px; color: #fff; background: linear-gradient(125deg,#0d171d 0%,#111b22 62%,#0a2923 100%); isolation: isolate; }
.service-detail-hero__panel::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,#000,transparent 75%); }
.service-detail-hero__panel::after { content: ''; position: absolute; left: 48%; bottom: -46%; width: 65%; height: 90%; z-index: -1; background: radial-gradient(ellipse,var(--service-accent),transparent 67%); opacity: .35; filter: blur(55px); animation: servicePulse 6s ease-in-out infinite alternate; }
@keyframes servicePulse { to { transform: translate3d(9%,-6%,0) scale(1.1); opacity: .52; } }
.service-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.service-hero-glow--one { width: 360px; height: 360px; right: 12%; top: -23%; background: radial-gradient(circle,rgba(255,255,255,.22),transparent 68%); filter: blur(5px); }
.service-hero-glow--two { width: 190px; height: 190px; left: -55px; bottom: -75px; border: 1px solid rgba(255,255,255,.17); box-shadow: 0 0 0 32px rgba(255,255,255,.025),0 0 0 64px rgba(255,255,255,.018); }
.service-detail-hero__copy { position: relative; z-index: 3; }
.service-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; color: var(--service-accent); text-transform: uppercase; letter-spacing: .18em; font-size: 13px; }
.service-kicker::before { content: ''; width: 52px; height: 1px; background: currentColor; }
.service-detail-hero__copy h1 { max-width: 620px; margin: 0; font-size: clamp(43px,5vw,72px); line-height: 1.06; letter-spacing: -2.5px; text-wrap: balance; }
.service-detail-hero__copy p { max-width: 610px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 19px; }
.service-hero-actions { display: flex; align-items: center; gap: 13px; margin-top: 36px; }
.service-round-action { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; text-decoration: none; color: #101713; background: var(--yellow); font-size: 23px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.service-round-action:hover { transform: rotate(45deg) scale(1.08); }
.service-detail-hero__visual { position: relative; z-index: 2; min-height: 420px; transition: transform .24s ease-out; transform-style: preserve-3d; }
.service-visual-frame { position: absolute; inset: 10px 0 0 46px; overflow: hidden; border-radius: 38px 38px 86px 38px; border: 1px solid rgba(255,255,255,.28); box-shadow: 0 34px 70px rgba(0,0,0,.35); background: #08110e; }
.service-visual-frame::before { content: ''; position: absolute; inset: 15px; z-index: 2; border: 1px solid rgba(255,255,255,.25); border-radius: 28px 28px 72px 28px; pointer-events: none; }
.service-visual-frame img { height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.service-detail-hero__panel:hover .service-visual-frame img { transform: scale(1.035); }
.service-floating-note { position: absolute; left: 0; bottom: 30px; z-index: 4; width: 230px; padding: 22px 24px; border-radius: 26px; color: #111; background: rgba(255,255,255,.94); box-shadow: 0 20px 45px rgba(0,0,0,.25); backdrop-filter: blur(12px); animation: serviceFloat 4.5s ease-in-out infinite; }
.service-floating-note small,.service-floating-note span { display: block; color: #68706e; }
.service-floating-note strong { display: block; margin: 5px 0 8px; font-family: var(--heading); font-size: 20px; line-height: 1.2; }
.service-floating-note span { font-size: 12px; }
@keyframes serviceFloat { 50% { transform: translateY(-10px) rotate(-1deg); } }
.service-hero-index { position: absolute; right: 34px; bottom: 19px; color: rgba(255,255,255,.12); font-family: var(--heading); font-size: 72px; line-height: 1; }
.service-agency-ticker { width: calc(100% - 70px); margin: -3px auto 0; overflow: hidden; border-radius: 0 0 22px 22px; color: #fff; background: var(--service-accent-2); }
.service-agency-ticker > div { display: flex; width: max-content; align-items: center; gap: 28px; padding: 12px 0; animation: serviceTicker 22s linear infinite; }
.service-agency-ticker span { min-width: 150px; text-align: center; font-size: 12px; letter-spacing: .24em; }
.service-agency-ticker i { color: var(--service-accent); font-style: normal; }
@keyframes serviceTicker { to { transform: translateX(-50%); } }

.service-overview-panel { position: relative; min-height: 430px; overflow: hidden; border-radius: 46px; padding: 62px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 88px; color: #fff; background: radial-gradient(circle at 0 0,var(--service-accent-2),transparent 42%),linear-gradient(120deg,#111b21,#0f171d); }
.service-overview-panel::after { content: ''; position: absolute; inset: auto -180px -250px auto; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.018),0 0 0 84px rgba(255,255,255,.012); }
.service-overview-title,.service-overview-copy { position: relative; z-index: 2; }
.service-overview-title > span { color: var(--service-accent); text-transform: uppercase; letter-spacing: .15em; font-size: 13px; }
.service-overview-title h2 { margin: 35px 0 0; font-size: clamp(34px,3.3vw,49px); line-height: 1.24; color: var(--service-accent); }
.service-overview-copy { padding-top: 42px; }
.service-overview-copy p { color: rgba(255,255,255,.77); font-size: 18px; }
.service-overview-signals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.service-overview-signals span { padding: 9px 16px; border: 1px solid rgba(255,255,255,.26); border-radius: 99px; font-size: 13px; }
.service-orbit-mark { position: relative; width: 125px; height: 38px; margin-top: 40px; }
.service-orbit-mark b { position: absolute; top: 50%; width: 36px; height: 36px; margin-top: -18px; border: 1px solid var(--service-accent); border-radius: 50%; }
.service-orbit-mark b:nth-child(1) { left: 0; }.service-orbit-mark b:nth-child(2) { left: 30px; }.service-orbit-mark b:nth-child(3) { left: 60px; background: var(--service-accent); }

.service-capability-layout { display: grid; grid-template-columns: .63fr 1.37fr; gap: 22px; align-items: stretch; }
.service-capability-image { position: relative; min-height: 650px; overflow: hidden; border-radius: 32px 32px 90px 32px; background: #0f181d; }
.service-capability-image::after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 24px 24px 75px 24px; pointer-events: none; }
.service-capability-image img { height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.service-capability-image:hover img { transform: scale(1.06); }
.service-capability-image > div { position: absolute; left: 42px; right: 42px; bottom: 42px; z-index: 2; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.45); color: #fff; }
.service-capability-image small,.service-capability-image strong { display: block; }.service-capability-image small { text-transform: uppercase; letter-spacing: .16em; }.service-capability-image strong { margin-top: 6px; font-family: var(--heading); font-size: 27px; }
.service-capability-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-capability-card { position: relative; min-height: 310px; overflow: hidden; padding: 36px; border-radius: 31px 31px 72px 31px; color: #111; background: #f1f1f1; box-shadow: 0 6px 20px rgba(18,30,32,.06); transition: transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease; }
.service-capability-card::before { content: ''; position: absolute; width: 190px; height: 190px; right: -120px; bottom: -120px; border-radius: 50%; background: var(--service-accent); opacity: .13; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.service-capability-card--0,.service-capability-card--3 { color: #fff; background: linear-gradient(145deg,var(--service-accent-2),#172027); }
.service-capability-card--1 { background: #edf9f5; }
.service-capability-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(18,30,32,.13); }
.service-capability-card:hover::before { transform: scale(1.8); }
.service-capability-card > span { color: var(--service-accent); font-family: var(--heading); font-size: 14px; letter-spacing: .12em; }
.service-capability-card h3 { position: relative; z-index: 2; margin: 42px 0 18px; font-size: 25px; }
.service-capability-card p { position: relative; z-index: 2; color: inherit; opacity: .76; }
.service-capability-card > b { position: absolute; right: 19px; bottom: 16px; z-index: 3; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: #111; background: var(--yellow); font-weight: 400; transition: transform .35s ease; }
.service-capability-card:hover > b { transform: rotate(45deg); }

.service-benefit-mosaic { display: grid; grid-template-columns: .75fr .82fr 1.38fr; grid-auto-rows: minmax(185px,auto); gap: 20px; }
.service-benefit-tile { position: relative; overflow: hidden; min-height: 230px; padding: 36px; border-radius: 31px; background: #f1f1f1; box-shadow: 0 5px 18px rgba(15,30,32,.07); }
.service-benefit-tile:nth-child(3),.service-benefit-tile:nth-child(4) { color: #fff; background: linear-gradient(145deg,#101a20,var(--service-accent-2)); }
.service-benefit-tile:nth-child(3) { grid-row: span 2; }
.service-benefit-tile:nth-child(4) { grid-column: span 2; }
.service-benefit-tile:nth-child(6) { background: linear-gradient(135deg,var(--service-accent),#dff8ed); }
.service-benefit-tile > span { color: var(--service-accent-2); font-family: var(--heading); letter-spacing: .14em; }.service-benefit-tile:nth-child(3) > span,.service-benefit-tile:nth-child(4) > span { color: var(--service-accent); }
.service-benefit-tile h3 { margin: 34px 0 15px; font-size: 25px; }.service-benefit-tile p { opacity: .74; }
.service-benefit-tile i { position: absolute; right: 22px; bottom: 18px; color: var(--service-accent); font-style: normal; animation: benefitBlink 2s ease-in-out infinite; }
@keyframes benefitBlink { 50% { opacity: .35; transform: scale(.7); } }

.service-facts-panel { min-height: 530px; overflow: hidden; border-radius: 44px; display: grid; grid-template-columns: .76fr 1.24fr; color: #fff; background: #111b21; }
.service-facts-art { position: relative; overflow: hidden; }
.service-facts-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.75),transparent 55%); }
.service-facts-art img { height: 100%; object-fit: cover; transition: transform 1.1s ease; }.service-facts-panel:hover .service-facts-art img { transform: scale(1.045); }
.service-facts-caption { position: absolute; left: 38px; right: 38px; bottom: 34px; z-index: 2; color: #fff; }
.service-facts-caption span,.service-facts-caption strong { display: block; }.service-facts-caption span { color: var(--service-accent); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; }.service-facts-caption strong { margin-top: 7px; font-family: var(--heading); font-size: 28px; }
.service-metric-list { display: grid; grid-template-columns: 1fr 1fr; padding: 42px 48px; }
.service-metric-list article { position: relative; padding: 28px; display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.service-metric-list article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
.service-metric-list article:nth-child(n+3) { border-bottom: 0; }
.service-metric-list article > span { position: absolute; right: 16px; top: 14px; color: rgba(255,255,255,.25); font-family: var(--heading); font-size: 12px; }
.service-metric-list strong { color: var(--yellow); font-family: var(--heading); font-size: 54px; line-height: 1; }
.service-metric-list h3 { margin: 0 0 8px; color: var(--yellow); font-size: 22px; }.service-metric-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.service-case-carousel { display: grid; grid-template-columns: 52px 1.15fr .65fr 1fr 52px; gap: 22px; align-items: center; }
.service-case-nav { width: 48px; height: 48px; border: 0; border-radius: 50%; color: #fff; background: #777; font-size: 23px; transition: transform .25s ease,background .25s ease; }.service-case-nav:hover { transform: scale(1.08); background: var(--service-accent-2); }
.service-case-image { position: relative; min-height: 400px; overflow: hidden; border-radius: 31px 31px 78px 31px; }.service-case-image img { height: 100%; object-fit: cover; transition: transform .9s ease; }.service-case-carousel:hover .service-case-image img { transform: scale(1.04); }
.service-case-image > span { position: absolute; left: 20px; top: 20px; padding: 8px 14px; border-radius: 99px; color: #fff; background: rgba(10,18,20,.76); font-size: 12px; }
.service-case-image .case-arrow { right: 12px; bottom: 12px; }
.service-case-data { align-self: stretch; padding: 32px 24px; border-radius: 28px; background: #f1f1f1; }.service-case-data > span { color: var(--service-accent-2); font-family: var(--heading); font-size: 25px; }
.service-case-meta { margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 14px; }.service-case-meta p { margin: 0; font-family: var(--heading); }.service-case-meta small { display: block; margin-bottom: 5px; color: #767c7b; font-family: var(--body); text-transform: uppercase; letter-spacing: .12em; }
.service-case-result { align-self: stretch; padding: 34px; border-radius: 28px; border: 1px solid #ddd; }.service-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }.service-before-after span { min-height: 95px; display: grid; place-items: center; border-radius: 18px; background: #eee; color: #7d8382; font-size: 12px; letter-spacing: .14em; }.service-before-after span:last-child { color: #fff; background: var(--service-accent-2); }
.service-case-result h3 { margin: 27px 0 14px; font-size: 25px; }.service-case-result .pill-button { margin-top: 10px; min-width: 165px; font-size: 14px; }

.service-detail-page .faq-panel { box-shadow: 0 24px 70px rgba(12,28,28,.12); }
.service-detail-page .contact-panel { background: radial-gradient(circle at 17% 70%,var(--service-accent),transparent 40%),linear-gradient(120deg,var(--service-accent-2),#001b16); }
.service-detail-page .contact-panel::after { content: ''; position: absolute; width: 400px; height: 400px; right: -130px; top: -160px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025),0 0 0 90px rgba(255,255,255,.015); }


@media (max-width: 1180px) {
  body { font-size: 16px; }
  .header-inner { width: calc(100% - 32px); gap: 20px; }.brand { width: 145px; flex-basis: 145px; }.main-nav { gap: 18px; padding: 0 30px; }.main-nav a { font-size: 14px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }.case-grid { grid-template-columns: 1.4fr 1fr 1fr; }.case-grid .case-card:nth-child(4) { display: none; }
  .statistics-panel strong { font-size: 58px; }.statistics-panel article { padding-left: 28px; padding-right: 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-column:last-child { grid-column: 2 / 4; flex-direction: row; flex-wrap: wrap; gap: 15px 28px; }.footer-column:last-child h3 { width: 100%; }
  .resources-page { grid-template-columns: 300px 1fr; }.resource-grid { gap: 45px 25px; }
}

@media (max-width: 900px) {
  .section-space { padding-top: 75px; padding-bottom: 75px; }.content-width { width: min(var(--max), calc(100% - 36px)); }
  .site-header, .site-header.is-scrolled { height: 82px; }.brand { width: 125px; flex-basis: 125px; }.brand img { height: 52px; }.menu-button { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: 82px; left: 18px; right: 18px; height: auto !important; padding: 25px; border-radius: 28px; display: grid; gap: 4px; opacity: 0; pointer-events: none; transform: translateY(-15px); box-shadow: 0 18px 45px rgba(0,0,0,.16); transition: opacity .25s ease, transform .25s ease; }.main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }.main-nav a { padding: 12px 10px; text-align: center; }
  .home-hero { min-height: 700px; padding-top: 80px; }.hero-slider-window { height: 300px; }.hero-slider-track { left: calc(50% - 610px); }.hero-slide { width: 250px; height: 280px; flex-basis: 250px; }.hero-slider-track { gap: 18px; }
  .page-hero { grid-template-columns: 1fr; padding: 65px 45px; }.page-hero__media { height: 330px; }
  .strategic-scroll { height: auto; padding: 75px 0; }.strategic-sticky { position: static; min-height: auto; }.strategic-stage { height: auto; padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.strategy-card, .strategy-image { position: relative; inset: auto !important; width: auto !important; height: 290px !important; opacity: 1 !important; transform: none !important; }.strategy-image { grid-column: span 2; }
  .testimonial-card { width: 520px; }.testimonial-quote { left: -85px; }.testimonials-shell { padding-left: 60px; padding-right: 60px; }
  .services-intro, .about-layout, .split-intro, .facts-panel, .case-overview__panel, .founder-card, .positions-panel, .contact-page-panel { grid-template-columns: 1fr; }
  .about-image { height: 430px; }.statistics-panel { grid-template-columns: 1fr 1fr; }.statistics-panel article { padding-top: 220px; }.case-grid { grid-template-columns: 1fr 1fr; }.case-grid .case-card:nth-child(4) { display: block; }.case-card--featured .case-image { height: 250px; }
  .faq-panel { grid-template-columns: 1fr; }.faq-list { padding-top: 70px; }
  .certificate-card { height: 300px; }.badge { transform: scale(.82); }
  .contact-panel, .services-intro { grid-template-columns: 1fr; }.contact-panel { gap: 45px; }.blog-row { grid-template-columns: 1fr 1fr; }.blog-intro { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-lead { grid-column: span 2; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 45px; }.footer-column:last-child { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr 1fr; }.benefit-layout { grid-template-columns: 1fr; }.benefit-image { height: 380px; }
  .logo-grid { grid-template-columns: repeat(3,1fr); }.world-panel { grid-template-columns: 1fr; }.about-transform__panel, .journey-panel, .vision-grid { grid-template-columns: 1fr; }.journey-images { margin-top: 15px; }.vision-grid .placeholder { min-height: 350px; }
  .client-background__grid { grid-template-columns: 1fr 1fr; }.client-background__grid .placeholder { grid-row: auto; }.client-background__grid article:last-child { grid-column: auto; }.process-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }.article-aside { position: static; display: grid; grid-template-columns: 250px 1fr; gap: 25px; }.article-aside > div { margin: 0; }
  .author-grid, .books-layout { grid-template-columns: 1fr; }.career-collage { grid-template-columns: repeat(2,1fr); }.career-collage > *:last-child { grid-column: span 2; }.resources-page { grid-template-columns: 1fr; }.resources-title { min-height: auto; padding: 80px 10%; }.resources-title h1 { max-width: 700px; }.resource-grid { grid-template-columns: repeat(3,1fr); }.map-panel { grid-template-columns: 1fr; }.legal-layout { grid-template-columns: 1fr; }.legal-toc { position: static; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }.section-space { padding-top: 58px; padding-bottom: 58px; }.section-heading { margin-bottom: 38px; }.section-heading h2 { font-size: 33px; }.section-heading p { font-size: 17px; }.content-width { width: calc(100% - 28px); }
  .header-inner { width: calc(100% - 22px); }.brand { width: 112px; flex-basis: 112px; }.brand img { height: 43px; }
  .home-hero { min-height: 660px; padding-top: 70px; border-radius: 0 0 24px 24px; }.hero-copy h1 { font-size: 39px; }.hero-copy p { font-size: 16px; }.hero-slider-window { height: 265px; margin-top: 25px; clip-path: ellipse(90% 50% at 50% 50%); }.hero-slide { width: 210px; height: 250px; flex-basis: 210px; }.hero-slider-track { left: calc(50% - 520px); gap: 14px; }.hero-tagline { padding: 0 16px; font-size: 16px; }
  .page-hero { width: calc(100% - 22px); min-height: auto; margin-top: 12px; padding: 48px 25px; border-radius: 30px; gap: 35px; }.page-hero__copy h1 { font-size: 38px; }.page-hero__copy > p:not(.breadcrumb) { font-size: 17px; }.page-hero__media { height: 250px; }
  .strategic-stage { width: calc(100% - 24px); padding: 18px; border-radius: 34px; grid-template-columns: 1fr; }.strategy-card, .strategy-image { height: auto !important; min-height: 250px; grid-column: auto; }.strategy-card--green h3 { font-size: 27px; }
  .testimonials-shell { width: calc(100% - 24px); padding: 45px 20px; }.testimonial-card { width: 100%; height: 410px; margin-bottom: 35px; }.testimonial-card::before { display: none; }.testimonial-card img { left: 0; width: 100%; height: 70%; bottom: 0; }.testimonial-card h3 { top: 35px; right: 28px; font-size: 25px; }.testimonial-quote { left: 22px; top: 30px; width: 60%; text-align: left; font-size: 15px; }.slider-arrow { top: auto; bottom: 42px; }.slider-arrow--left { left: 18px; }.slider-arrow--right { right: 18px; }
  .service-grid, .case-grid, .certificate-grid, .blog-grid, .blog-grid--three, .feature-grid, .benefit-layout .feature-grid, .logo-grid, .process-grid { grid-template-columns: 1fr; width: calc(100% - 28px); }.service-card { min-height: 270px; }.services-intro { width: calc(100% - 28px); }.services-visual { height: 300px; }.services-visual h3 { width: 65%; }.about-layout { width: calc(100% - 28px); }.about-small-grid { grid-template-columns: 1fr; }.about-lead { padding: 30px; font-size: 23px; }
  .statistics-panel { width: calc(100% - 28px); grid-template-columns: 1fr; }.statistics-panel article { min-height: 320px; padding-top: 120px; }.case-summary { width: calc(100% - 28px); margin: 30px auto 0; }
  .faq-panel { width: calc(100% - 24px); padding: 35px 22px; border-radius: 32px; gap: 30px; }.faq-left h3 { margin-top: 0; font-size: 34px; }.faq-left form { margin-top: 30px; }.faq-item > button { font-size: 18px; }.certificate-grid { gap: 22px; }.certificate-card { height: 280px; }
  .review-stage { width: calc(100% - 28px); height: auto; display: grid; gap: 18px; }.review-card { position: relative; inset: auto !important; width: 100%; min-height: 330px; transform: none !important; grid-template-columns: 70px 1fr; padding: 28px; }.review-card--back { display: none; }.stars { font-size: 28px; }.avatar { width: 60px; height: 60px; }
  .contact-panel { width: calc(100% - 28px); padding: 35px 24px; border-radius: 35px; }.contact-panel h2 { font-size: 38px; }.blog-row { width: calc(100% - 28px); grid-template-columns: 1fr; }.blog-intro { min-height: 280px; padding-top: 135px; }
  .site-footer { padding: 55px 22px 95px; }.footer-grid { grid-template-columns: 1fr; }.footer-lead, .footer-column:last-child { grid-column: auto; }.footer-column:last-child { flex-direction: column; }.footer-lead h2 { font-size: 44px; }.footer-lead h2 small { font-size: 22px; }.newsletter { grid-template-columns: 1fr; }.footer-logo { width: 210px; }
  .statement-panel { width: calc(100% - 28px); padding: 45px 20px; }.statement-panel h2 { font-size: 31px; }.statement-chips { flex-wrap: wrap; }.statement-chips b { min-width: 105px; }
  .split-intro { gap: 32px; }.split-intro__image { height: 350px; }.split-intro__copy h2 { font-size: 32px; }.facts-panel > div { grid-template-columns: 1fr; padding: 28px; }.facts-panel > .placeholder { min-height: 320px; }
  .world-panel { padding: 38px 24px; }.map-placeholder { height: 220px; font-size: 23px; }.about-transform__panel { padding: 38px 25px; gap: 25px; }.about-transform__panel h3 { font-size: 35px; }.journey-panel { padding: 28px; }.journey-images img:nth-child(1) { height: 220px; }.journey-images img { height: 104px; }.office-grid { grid-template-columns: 1fr; }.office-grid img { height: 240px; }.founder-card > div { padding: 35px 25px; }.founder-card h2 { font-size: 31px; }.founder-card img { height: 340px; }
  .client-background__grid { grid-template-columns: 1fr; }.case-overview__panel > div:first-child { padding: 35px 25px; }.proof-panel { padding: 60px 25px; }
  .blog-list-card img { height: 210px; }.article-title { padding: 45px 20px; }.article-title h1 { font-size: 27px; }.article-aside { grid-template-columns: 1fr; }.article-aside img { height: 240px; }
  .author-portrait { height: 430px; border-width: 12px; }.author-copy h1 { font-size: 41px; }.book-grid { grid-template-columns: 1fr; padding: 24px; }.career-collage { grid-template-columns: 1fr; }.career-collage > *:last-child { grid-column: auto; }.position-copy, .career-form { padding: 35px 25px; }.job-meta { flex-direction: column; gap: 8px; }.resource-grid { grid-template-columns: 1fr 1fr; gap: 40px 18px; }.resources-content { padding: 50px 20px 80px; }.resource-logo { width: 105px; height: 105px; font-size: 30px; }.contact-page-panel { padding: 35px 24px; }.contact-page-panel h1 { font-size: 37px; }.contact-details { margin-top: 35px; grid-template-columns: 1fr; }.map-panel { padding: 25px; }.legal-title { min-height: 190px; border-radius: 32px; }.legal-title h1 { font-size: 37px; }.legal-layout { gap: 30px; }
}


@media (max-width: 1180px) {
  .service-detail-hero__panel { padding: 58px 48px; gap: 35px; }
  .service-detail-hero__copy h1 { font-size: 55px; }
  .service-detail-hero__visual { min-height: 380px; }
  .service-capability-layout { grid-template-columns: .72fr 1.28fr; }
  .service-capability-card { min-height: 285px; padding: 30px; }
  .service-benefit-mosaic { grid-template-columns: 1fr 1fr 1fr; }
  .service-case-carousel { grid-template-columns: 42px 1fr .7fr 1fr 42px; gap: 14px; }
  .service-case-image { min-height: 350px; }
  .service-metric-list { padding: 32px; }
  .service-metric-list article { grid-template-columns: 92px 1fr; padding: 22px; }
  .service-metric-list strong { font-size: 45px; }
}

@media (max-width: 900px) {
  .service-detail-hero { width: calc(100% - 36px); }
  .service-detail-hero__panel { min-height: auto; grid-template-columns: 1fr; padding: 55px 42px; border-radius: 38px 38px 72px 38px; }
  .service-detail-hero__copy h1 { max-width: 720px; }
  .service-detail-hero__visual { min-height: 440px; }
  .service-visual-frame { inset: 10px 0 0 95px; }
  .service-floating-note { left: 30px; }
  .service-overview-panel { grid-template-columns: 1fr; gap: 12px; padding: 48px; }
  .service-overview-copy { padding-top: 0; }
  .service-capability-layout { grid-template-columns: 1fr; }
  .service-capability-image { min-height: 470px; }
  .service-benefit-mosaic { grid-template-columns: 1fr 1fr; }
  .service-benefit-tile:nth-child(3) { grid-row: auto; }
  .service-benefit-tile:nth-child(4) { grid-column: span 2; }
  .service-facts-panel { grid-template-columns: 1fr; }
  .service-facts-art { min-height: 430px; }
  .service-case-carousel { grid-template-columns: 42px 1fr 1fr 42px; }
  .service-case-data { display: none; }
  .service-case-image { min-height: 390px; }
}

@media (max-width: 620px) {
  .service-detail-hero { width: calc(100% - 20px); padding-top: 18px; }
  .service-detail-hero > .breadcrumb { margin-left: 8px; margin-bottom: 22px; }
  .service-detail-hero__panel { padding: 42px 22px 28px; border-radius: 29px 29px 56px 29px; gap: 28px; }
  .service-kicker { margin-bottom: 19px; font-size: 10px; letter-spacing: .13em; }
  .service-kicker::before { width: 30px; }
  .service-detail-hero__copy h1 { font-size: 39px; letter-spacing: -1.4px; }
  .service-detail-hero__copy p { font-size: 16px; }
  .service-hero-actions { margin-top: 25px; }
  .service-detail-hero__visual { min-height: 320px; }
  .service-visual-frame { inset: 0 0 0 26px; border-radius: 26px 26px 55px 26px; }
  .service-floating-note { left: 0; bottom: 14px; width: 190px; padding: 17px; }
  .service-floating-note strong { font-size: 16px; }
  .service-hero-index { font-size: 45px; right: 18px; }
  .service-agency-ticker { width: calc(100% - 28px); }
  .service-overview-panel { padding: 34px 24px; border-radius: 31px; }
  .service-overview-title h2 { margin-top: 22px; font-size: 30px; }
  .service-overview-copy p { font-size: 16px; }
  .service-capability-image { min-height: 360px; border-radius: 26px 26px 60px 26px; }
  .service-capability-grid { grid-template-columns: 1fr; }
  .service-capability-card { min-height: 255px; padding: 27px; }
  .service-capability-card h3 { margin-top: 28px; font-size: 22px; }
  .service-benefit-mosaic { grid-template-columns: 1fr; }
  .service-benefit-tile:nth-child(4) { grid-column: auto; }
  .service-benefit-tile { min-height: 220px; padding: 29px; }
  .service-facts-panel { border-radius: 30px; }
  .service-facts-art { min-height: 330px; }
  .service-metric-list { grid-template-columns: 1fr; padding: 18px; }
  .service-metric-list article { grid-template-columns: 90px 1fr; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.18) !important; }
  .service-metric-list article:last-child { border-bottom: 0 !important; }
  .service-metric-list strong { font-size: 40px; }
  .service-case-carousel { grid-template-columns: 1fr; }
  .service-case-nav { display: none; }
  .service-case-image { min-height: 300px; }
  .service-case-result { padding: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* WordPress integration, finished-artwork media and cinematic preloader */
html.bm-loading, html.bm-loading body { overflow: hidden !important; }
.admin-bar .site-header { top: 32px; }
.bm-page-enter { animation: bmPageEnter .72s cubic-bezier(.22,.8,.22,1) both; }
@keyframes bmPageEnter { from { opacity: 0; transform: translate3d(0,22px,0); filter: blur(5px); } to { opacity: 1; transform: none; filter: none; } }
.bm-preloader { position: fixed; inset: 0; z-index: 999999; display: grid; place-items: center; align-content: center; gap: 30px; padding: 30px; background: #082f2b; color: #fff; transition: opacity .5s ease, visibility .5s ease, transform .65s cubic-bezier(.7,0,.2,1); }
.bm-preloader::before, .bm-preloader::after { content: ''; position: absolute; border-radius: 50%; filter: blur(5px); opacity: .55; animation: bmPreFloat 3.5s ease-in-out infinite alternate; }
.bm-preloader::before { width: 42vw; height: 42vw; min-width: 330px; min-height: 330px; background: radial-gradient(circle, rgba(57,189,134,.45), transparent 68%); left: -12vw; top: -18vw; }
.bm-preloader::after { width: 34vw; height: 34vw; min-width: 280px; min-height: 280px; background: radial-gradient(circle, rgba(207,245,231,.25), transparent 70%); right: -10vw; bottom: -16vw; animation-delay: -.9s; }
@keyframes bmPreFloat { to { transform: translate3d(7vw,4vw,0) scale(1.14); } }
.bm-preloader.is-complete { opacity: 0; visibility: hidden; transform: scale(1.025); }
.bm-preloader__orb { position: relative; z-index: 2; width: 210px; height: 210px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.055); backdrop-filter: blur(18px); box-shadow: inset 0 0 60px rgba(57,189,134,.15), 0 25px 90px rgba(0,0,0,.32); animation: bmOrbPulse 2.1s ease-in-out infinite; }
.bm-preloader__orb::before { content: ''; position: absolute; inset: -15px; border: 1px dashed rgba(202,255,234,.42); border-radius: 50%; animation: bmSpin 9s linear infinite; }
.bm-preloader__orb img { width: 72%; max-height: 90px; object-fit: contain; }
@keyframes bmOrbPulse { 50% { transform: scale(1.045); box-shadow: inset 0 0 80px rgba(57,189,134,.28), 0 30px 110px rgba(0,0,0,.38); } }
@keyframes bmSpin { to { transform: rotate(360deg); } }
.bm-preloader__copy { position: relative; z-index: 2; width: min(520px,80vw); display: flex; align-items: flex-end; justify-content: space-between; font-family: var(--heading); letter-spacing: .12em; }
.bm-preloader__copy span { font-size: clamp(13px,1.2vw,17px); }
.bm-preloader__copy strong { font-size: clamp(32px,5vw,68px); line-height: .8; color: var(--green); letter-spacing: -.04em; }
.bm-preloader__bar { position: relative; z-index: 2; width: min(520px,80vw); height: 2px; background: rgba(255,255,255,.16); overflow: hidden; }
.bm-preloader__bar i { display: block; height: 100%; background: linear-gradient(90deg,#39bd86,#c8ffe8); box-shadow: 0 0 22px rgba(57,189,134,.85); transition: width .25s ease; }
.client-marquee span.has-artwork { width: auto; min-width: 180px; height: 84px; padding: 0; background: transparent; border-radius: 0; }
.client-marquee span.has-artwork img { display: block; width: auto; max-width: 240px; height: 84px; object-fit: contain; }
.testimonial-card { background: transparent; box-shadow: none; overflow: visible; }
.testimonial-card::before { display: none; }
.testimonial-card img { left: 0; bottom: 0; width: 100%; height: 100%; object-fit: contain; filter: none; border-radius: 0; }
.testimonial-card h3, .testimonial-quote { z-index: 4; }
.certificate-image-slider .certificate-card { overflow: hidden; background: transparent; box-shadow: none; }
.certificate-image-slider .certificate-card img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wp-page-content { font-size: clamp(18px,1.55vw,24px); line-height: 1.65; }
.wp-page-content > * { max-width: 940px; }
.wp-page-content h2, .wp-page-content h3 { font-family: var(--heading); line-height: 1.05; }
.wp-page-content img { max-width: 100%; height: auto; border-radius: 28px; }
.form-status { display: block; min-height: 1.4em; margin-top: 10px; font-size: 14px; opacity: .8; }
.bm-ajax-form button:disabled, .bm-form-submit:disabled { opacity: .55; pointer-events: none; }
.resource-image { width: 88px; height: 88px; object-fit: contain; }
.logo-card img { max-width: 82%; max-height: 78px; object-fit: contain; }
@media (max-width:782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width:600px) { .admin-bar .site-header { top: 0; } .bm-preloader__orb { width: 160px; height: 160px; } .client-marquee span.has-artwork, .client-marquee span.has-artwork img { height: 66px; } }

/* =========================================================
   Beacon Minds design-match revision 4
   Scroll-sequence grids, exact notched cards, smooth sliders
   ========================================================= */
:root { --bm-page-bg:#fff; --bm-cutout:#fff; }
html { scroll-behavior:smooth; }
body { overflow-x:hidden; }
button, a { -webkit-tap-highlight-color:transparent; }

/* Universal right arrow */
.arrow-icon { position:relative; display:inline-block; width:20px; height:14px; flex:0 0 auto; }
.arrow-icon i, .arrow-icon i::before, .arrow-icon i::after { position:absolute; display:block; content:''; }
.arrow-icon i { left:1px; top:6px; width:16px; height:1.8px; border-radius:2px; background:currentColor; transition:transform .35s cubic-bezier(.2,.8,.2,1),width .35s ease; }
.arrow-icon i::before { right:-1px; top:-4px; width:8px; height:8px; border-top:1.8px solid currentColor; border-right:1.8px solid currentColor; transform:rotate(45deg); }
.tiny-arrow, .case-arrow, .round-link, .service-round-action { display:grid; place-items:center; }
.tiny-arrow:hover .arrow-icon i, .case-arrow:hover .arrow-icon i, .round-link:hover .arrow-icon i, .button-with-arrow:hover .arrow-icon i { transform:translateX(4px); width:18px; }
.button-with-arrow { display:inline-flex !important; align-items:center; justify-content:center; gap:12px; }

/* Scroll sequence: cards enter one by one and lock into their final grid */
.scroll-sequence-grid { position:relative; width:100%; height:270vh; }
.scroll-sequence-grid__sticky { position:sticky; top:92px; min-height:calc(100vh - 112px); display:grid; align-items:center; overflow:hidden; }
.scroll-sequence-grid [data-sequence-index] { will-change:transform,opacity,filter; transition:box-shadow .45s ease, background .45s ease, color .45s ease; }
.service-sequence { width:min(1240px,calc(100% - 64px)); margin:28px auto 0; }
.service-sequence .service-grid { width:100%; margin:0; }

/* Exact service card family: concave bottom-right notch and external arrow */
.service-grid { gap:34px 20px; }
.service-card { --card-bg:#eaf7f2; --card-fg:#111; --card-cut:var(--bm-cutout); min-height:372px; overflow:visible; padding:38px 32px 72px; border-radius:30px 30px 28px 30px; color:var(--card-fg); background:var(--card-bg); isolation:isolate; box-shadow:none; }
.service-card::before { content:''; position:absolute; right:-1px; bottom:-1px; width:82px; height:82px; z-index:1; border-radius:58px 0 0 0; background:var(--card-cut); pointer-events:none; }
.service-card::after { content:''; position:absolute; inset:0; z-index:-1; border-radius:inherit; opacity:0; background:linear-gradient(145deg,#152029 8%,#07140f 70%,#0c5948); transition:opacity .45s ease; }
.service-card.tone-1,.service-card.tone-3 { --card-bg:#dcd8d8; }
.service-card.tone-2,.service-card.tone-4 { --card-bg:#17212a; --card-fg:#fff; }
.service-card:hover { color:#fff; transform:translateY(-8px) !important; box-shadow:0 24px 55px rgba(9,25,22,.18); }
.service-card:hover::after { opacity:1; }
.service-card h3 { position:relative; z-index:2; max-width:240px; font-size:25px; line-height:1.28; text-transform:uppercase; }
.service-card__copy { position:relative; z-index:2; max-height:230px; overflow:hidden; }
.service-card p { margin:0; font-size:15px; line-height:1.58; white-space:pre-line; }
.service-card__watermark { position:absolute; right:22px; top:18px; font:600 74px/1 var(--heading); opacity:.055; }
.service-card .tiny-arrow { right:12px; bottom:12px; z-index:4; width:48px; height:48px; border-radius:50%; color:#111; background:var(--yellow); transition:transform .35s ease,box-shadow .35s ease; }
.service-card .tiny-arrow:hover { transform:translateX(5px) scale(1.06); box-shadow:0 10px 25px rgba(0,0,0,.18); }

/* Services intro and section */
.services-home { background:#fff; }
.services-home > .section-heading { margin-bottom:44px; }
.services-intro { margin-bottom:30px; }

/* About sequence */
.about-layout { align-items:start; }
.about-image { position:sticky; top:125px; }
.about-sequence { height:205vh; }
.about-sequence .scroll-sequence-grid__sticky { top:112px; }
.about-content { min-height:600px; align-content:center; }
.about-content > * { will-change:transform,opacity; }
.about-lead { min-height:240px; }
.about-content > article { padding:40px 34px; border-radius:37px; background:var(--ink); color:#fff; font-size:17px; }
.about-content > article:nth-child(3) { background:linear-gradient(145deg,#17212a,#063e34); }
.about-image .round-link { color:#111; background:var(--yellow); }

/* Case-study notched cards */
.case-image { overflow:visible; border-radius:30px 30px 30px 30px; isolation:isolate; }
.case-image::after { content:''; position:absolute; right:-2px; bottom:-2px; width:72px; height:72px; border-radius:54px 0 0 0; background:#fff; z-index:2; }
.case-image img { border-radius:inherit; }
.case-arrow { right:9px !important; bottom:9px !important; z-index:4 !important; width:46px !important; height:46px !important; border-radius:50%; color:#111; background:var(--yellow); transition:transform .35s ease; }
.case-arrow:hover { transform:translateX(5px); }

/* FAQ: category filter, six per slide, smooth accordion */
.faq-panel { overflow:hidden; }
.faq-list { padding-top:82px; }
.faq-toolbar { position:absolute; inset:0 0 auto; min-height:48px; display:flex; align-items:center; justify-content:flex-end; gap:12px; }
.faq-toolbar span { color:rgba(255,255,255,.65); font-size:13px; text-transform:uppercase; letter-spacing:.12em; }
.faq-toolbar select { min-width:210px; border:1px solid rgba(57,189,134,.9); border-radius:14px; padding:12px 42px 12px 16px; color:#fff; background:linear-gradient(115deg,rgba(57,189,134,.23),rgba(0,0,0,.04)); outline:none; }
.faq-toolbar select option { color:#111; }
.faq-slides { animation:faqSlideIn .48s cubic-bezier(.2,.8,.2,1); }
@keyframes faqSlideIn { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:none; } }
.faq-item { position:relative; margin-bottom:15px; border:1px solid rgba(57,189,134,.72); border-radius:13px; background:linear-gradient(100deg,rgba(57,189,134,.07),rgba(57,189,134,0)); transition:border-color .35s ease,background .35s ease,box-shadow .35s ease; }
.faq-item:hover,.faq-item.is-open { border-color:#4ee2a5; background:linear-gradient(100deg,rgba(57,189,134,.25),rgba(10,31,28,.15)); box-shadow:inset 0 0 34px rgba(57,189,134,.08); }
.faq-item > button { min-height:58px; font-size:18px; }
.faq-item > button b { position:relative; width:22px; height:22px; border-radius:50%; border:1px solid rgba(255,255,255,.35); transition:transform .45s cubic-bezier(.2,.8,.2,1),background .35s ease; }
.faq-item > button b::before,.faq-item > button b::after { content:''; position:absolute; left:5px; right:5px; top:10px; height:1px; background:currentColor; }
.faq-item > button b::after { transform:rotate(90deg); transition:transform .35s ease; }
.faq-item.is-open > button b { transform:rotate(180deg); background:var(--green); }
.faq-item.is-open > button b::after { transform:rotate(0); }
.faq-answer { display:grid; grid-template-rows:0fr; opacity:0; transition:grid-template-rows .48s cubic-bezier(.2,.8,.2,1),opacity .38s ease; }
.faq-answer > div { min-height:0; overflow:hidden; padding:0 28px; color:rgba(255,255,255,.76); }
.faq-item.is-open .faq-answer { grid-template-rows:1fr; opacity:1; }
.faq-item.is-open .faq-answer > div { padding-bottom:22px; }
.faq-answer p { margin:.3em 0; }
.faq-pagination { display:flex; align-items:center; justify-content:flex-end; gap:10px; margin-top:18px; }
.faq-pagination > button,.faq-pagination div button { width:35px; height:35px; border:1px solid rgba(57,189,134,.55); border-radius:50%; color:#fff; background:transparent; }
.faq-pagination div { display:flex; gap:7px; }
.faq-pagination button.is-active { background:var(--green); }
.faq-empty { color:rgba(255,255,255,.7); }

/* Certificates: always image-only, 3 visible then slider */
.certificate-slider-shell { position:relative; width:min(1240px,calc(100% - 64px)); margin:auto; padding:0 58px; }
.certificate-viewport { overflow:hidden; padding:24px 8px 32px; }
.certificate-track { display:flex; transition:transform .75s cubic-bezier(.16,1,.3,1); }
.certificate-slide { flex:0 0 33.333%; padding:0 16px; }
.certificate-card { height:330px; overflow:hidden; border-radius:28px; background:#fff; box-shadow:0 13px 30px rgba(19,39,34,.18); transition:transform .4s ease,box-shadow .4s ease; }
.certificate-card:hover { transform:translateY(-8px); box-shadow:0 24px 48px rgba(19,39,34,.22); }
.certificate-card img { width:100%; height:100%; object-fit:contain; }
.certificate-nav,.review-nav { position:absolute; z-index:5; width:46px; height:46px; border:0; border-radius:50%; color:#111; background:var(--yellow); transition:transform .3s ease; }
.certificate-nav:hover,.review-nav:hover { transform:scale(1.08) translateX(3px); }
.certificate-nav--prev { left:0; top:50%; }.certificate-nav--next { right:0; top:50%; }
.slider-dots { display:flex; justify-content:center; gap:8px; margin-top:16px; }
.slider-dots button { width:8px; height:8px; padding:0; border:0; border-radius:50%; background:#a5a5a5; transition:width .3s ease,background .3s ease; }
.slider-dots button.is-active { width:25px; border-radius:9px; background:var(--green); }

/* Google review exact layered slider */
.review-stage { position:relative; width:min(1100px,calc(100% - 70px)); height:475px; margin:auto; perspective:1200px; }
.review-card { position:absolute; top:35px; left:50%; width:62%; min-height:360px; padding:48px; border-radius:4px; background:#fff; box-shadow:0 8px 18px rgba(0,0,0,.25); display:grid; grid-template-columns:90px 1fr; gap:18px; transition:transform .75s cubic-bezier(.16,1,.3,1),opacity .55s ease,filter .55s ease; }
.review-card--active { z-index:3; transform:translateX(-50%) translateY(0) scale(1); opacity:1; }
.review-card--previous { z-index:1; transform:translateX(-86%) translateY(38px) scale(.88) rotateY(7deg); opacity:.62; filter:saturate(.65); }
.review-card--next { z-index:2; transform:translateX(-14%) translateY(20px) scale(.92) rotateY(-5deg); opacity:.78; }
.review-card p,.review-card a { grid-column:1/-1; }
.review-card a { color:#178ac0; text-decoration:none; }
.review-nav { top:50%; margin-top:-23px; }
.review-nav--prev { left:-12px; }.review-nav--next { right:-12px; }

/* Blog listing: pagination, not a decorative bottom border */
.blog-list-card { border:0 !important; padding-bottom:0 !important; }
.blog-image-wrap { position:relative; }
.blog-image-wrap img { display:block; width:100%; }
.blog-image-wrap .tiny-arrow { position:absolute; right:-3px; bottom:-3px; }
.blog-title-row { display:grid; grid-template-columns:1fr auto; gap:14px; align-items:start; }
.blog-title-row h2 { margin:0; }
.blog-pagination { display:flex; justify-content:center; gap:6px; margin:70px 0 10px; }
.blog-pagination button { min-width:36px; height:36px; border:0; border-radius:50%; background:transparent; font:500 17px var(--heading); }
.blog-pagination button.is-active { color:#fff; background:var(--green); }
.blog-filter button:not(:first-child) { border:0; background:transparent; padding:9px 14px; border-radius:99px; }
.blog-filter button.is-active { color:#fff; background:var(--ink); }

/* Service detail: supplied left text / right uploaded featured image */
.service-detail-page { background:#fff; }
.service-detail-hero { padding-top:28px; }
.service-hero-pair { display:grid; grid-template-columns:.82fr 1.18fr; gap:22px; min-height:520px; }
.service-hero-copy-card,.service-hero-image-card { position:relative; overflow:hidden; min-height:520px; }
.service-hero-copy-card { padding:64px 58px; border-radius:38px 38px 38px 38px; color:#fff; background:radial-gradient(circle at 80% 100%,rgba(57,189,134,.28),transparent 35%),#142029; display:flex; flex-direction:column; justify-content:center; }
.service-hero-copy-card::after { content:''; position:absolute; right:-1px; bottom:-1px; width:96px; height:96px; border-radius:70px 0 0 0; background:#fff; }
.service-hero-copy-card h1 { margin:0; color:var(--service-accent); font-size:clamp(42px,5vw,72px); line-height:1.07; text-transform:uppercase; }
.service-hero-copy-card p { max-width:560px; color:rgba(255,255,255,.76); font-size:18px; }
.service-hero-copy-card .service-hero-actions { z-index:2; }
.service-hero-image-card { border-radius:38px 38px 100px 38px; background:#0d171d; box-shadow:0 22px 55px rgba(13,32,27,.18); }
.service-hero-image-card::after { content:''; position:absolute; right:-1px; bottom:-1px; width:105px; height:105px; border-radius:78px 0 0 0; background:#fff; }
.service-hero-image-card img { width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.16,1,.3,1); }
.service-hero-image-card:hover img { transform:scale(1.035); }
.service-image-outline { position:absolute; inset:16px 16px 30px; border:1px solid rgba(255,255,255,.45); border-radius:28px 28px 83px 28px; pointer-events:none; }
.service-overview-panel { border-radius:44px; grid-template-columns:.9fr 1.1fr; }
.service-capability-layout { align-items:stretch; }
.service-capability-image { min-height:610px; border-radius:32px 32px 90px 32px; }
.service-capability-image img { height:100%; object-fit:cover; }
.service-capability-card { border-radius:29px 29px 62px 29px; }
.service-capability-card::after { content:''; position:absolute; right:-1px; bottom:-1px; width:66px; height:66px; border-radius:48px 0 0 0; background:#fff; z-index:2; }
.service-capability-card > b { z-index:4; right:8px; bottom:8px; }
.service-capability-card > b .arrow-icon { width:17px; }
.service-benefit-tile { transition:transform .5s cubic-bezier(.16,1,.3,1),box-shadow .4s ease; }
.service-benefit-tile:hover { transform:translateY(-8px); box-shadow:0 24px 45px rgba(15,32,28,.16); }

/* Clients page exact 3-part hero and country-name driven map */
.clients-hero-grid { display:grid; grid-template-columns:.63fr 1.55fr .63fr; gap:22px; align-items:stretch; }
.clients-hero-image,.clients-hero-copy { min-height:470px; overflow:hidden; }
.clients-hero-image { border-radius:36px; }
.clients-hero-image--left { border-radius:36px 36px 85px 36px; }
.clients-hero-image--right { border-radius:36px 36px 36px 85px; }
.clients-hero-image img { width:100%; height:100%; object-fit:cover; }
.clients-hero-copy { position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:55px; text-align:center; color:#fff; border-radius:36px 36px 80px 36px; background:radial-gradient(circle at 72% 100%,rgba(57,189,134,.32),transparent 34%),var(--ink); }
.clients-hero-copy h1 { margin:12px 0 24px; color:var(--green); font-size:clamp(38px,5vw,66px); line-height:1.08; text-transform:uppercase; }
.clients-hero-copy span { color:rgba(255,255,255,.68); }
.world-panel { grid-template-columns:.52fr 1.48fr; min-height:500px; overflow:hidden; background:radial-gradient(circle at 0 0,rgba(57,189,134,.45),transparent 36%),#111b22; }
.world-summary strong { color:var(--green); font-size:70px; }
.client-world-map { min-height:390px; }
.client-world-map svg { width:100%; height:100%; overflow:visible; }
.world-land path { fill:rgba(255,255,255,.09); stroke:rgba(255,255,255,.08); stroke-width:2; }
.world-marker circle:first-child { fill:var(--green); }
.world-marker .pulse { fill:none; stroke:var(--green); stroke-width:2; opacity:.35; transform-origin:center; animation:mapPulse 2.2s ease-out infinite; }
.world-marker text { fill:#fff; font:14px var(--body); }
@keyframes mapPulse { 0%{transform:scale(.45);opacity:.8} 100%{transform:scale(1.35);opacity:0} }

/* All page design panels animate softly without changing final positions */
.page-hero,.career-panel,.positions-panel,.contact-page-panel,.case-overview__panel,.proof-panel,.author-grid,.books-layout,.article-title { box-shadow:0 22px 70px rgba(20,35,31,.06); }
.reveal { transition-duration:.78s; transition-timing-function:cubic-bezier(.16,1,.3,1); }

@media (max-width:1100px) {
  .scroll-sequence-grid { height:auto; }
  .scroll-sequence-grid__sticky { position:relative; top:auto; min-height:auto; overflow:visible; }
  .scroll-sequence-grid [data-sequence-index] { opacity:1 !important; transform:none !important; filter:none !important; }
  .about-image { position:relative; top:auto; }
  .service-hero-pair,.clients-hero-grid { grid-template-columns:1fr; }
  .clients-hero-image { min-height:340px; }
  .clients-hero-image--right { display:none; }
  .review-card { width:72%; }
}
@media (max-width:700px) {
  .service-sequence,.certificate-slider-shell { width:calc(100% - 24px); }
  .service-card { min-height:310px; }
  .certificate-slider-shell { padding:0 42px; }
  .certificate-slide { flex-basis:100%; padding:0 8px; }
  .certificate-card { height:280px; }
  .review-stage { width:calc(100% - 36px); height:430px; }
  .review-card { width:100%; padding:30px; grid-template-columns:62px 1fr; }
  .review-card--previous,.review-card--next { opacity:0; pointer-events:none; }
  .review-nav--prev { left:-18px; }.review-nav--next { right:-18px; }
  .service-hero-copy-card,.service-hero-image-card { min-height:390px; }
  .service-hero-copy-card { padding:42px 28px 74px; }
  .service-hero-copy-card h1 { font-size:39px; }
  .service-overview-panel { padding:38px 26px; }
  .clients-hero-copy { min-height:370px; padding:35px 24px; }
  .world-panel { grid-template-columns:1fr; padding:34px 20px; }
  .client-world-map { min-height:280px; }
  .faq-toolbar { position:relative; justify-content:flex-start; margin-bottom:18px; }
  .faq-list { padding-top:0; }
  .faq-toolbar select { width:100%; }
  .blog-title-row { grid-template-columns:1fr; }
}

/* Design-specific inner page heroes */
.about-page-hero__panel { display:grid; grid-template-columns:.95fr 1.05fr; gap:48px; align-items:center; padding:34px; border-radius:38px; color:#fff; background:linear-gradient(120deg,#36bf87,#2eaa78); }
.about-page-hero__panel img { width:100%; height:430px; object-fit:cover; border-radius:30px 30px 75px 30px; }
.about-page-hero__panel h1 { margin:0 0 22px; font-size:clamp(34px,4vw,60px); line-height:1.08; text-transform:uppercase; }
.about-page-hero__panel p { font-size:18px; }
.case-list-hero__panel { min-height:560px; display:flex; align-items:flex-end; padding:58px; border-radius:40px 40px 90px 40px; color:#fff; background-size:cover; background-position:center; }
.case-list-hero__panel > div { max-width:720px; }
.case-list-hero__panel span { font-size:25px; text-transform:uppercase; }
.case-list-hero__panel h1 { margin:8px 0 18px; color:var(--green); font-size:clamp(48px,6vw,86px); line-height:1; text-transform:uppercase; }
.case-list-hero__panel p { max-width:650px; font-size:18px; }
.case-detail-hero__panel,.blog-list-hero__panel { min-height:420px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:60px; text-align:center; color:#fff; border-radius:44px 44px 80px 44px; background:radial-gradient(circle at 50% 130%,rgba(57,189,134,.55),transparent 48%),var(--ink); }
.case-detail-hero__panel span { text-transform:uppercase; letter-spacing:.08em; }
.case-detail-hero__panel h1,.blog-list-hero__panel h1 { margin:10px 0 14px; color:var(--green); font-size:clamp(44px,5vw,72px); }
.case-detail-hero__panel p,.blog-list-hero__panel p { max-width:720px; font-size:20px; }
.blog-list-hero__panel { min-height:360px; }
.blog-list-hero__panel p { color:var(--green); }

.pill-button:not(.button-with-arrow)::after { content:'→'; display:inline-block; margin-left:10px; transition:transform .35s cubic-bezier(.2,.8,.2,1); }
.pill-button:not(.button-with-arrow):hover::after { transform:translateX(5px); }

.service-card { --card-bg:#dedada; --card-fg:#111; }
.service-card:nth-child(1),.service-card:nth-child(7) { --card-bg:#eaf7f2; }
.service-card:nth-child(4),.service-card:nth-child(5) { --card-bg:#17212a; --card-fg:#fff; }
.service-card:nth-child(2),.service-card:nth-child(3),.service-card:nth-child(6),.service-card:nth-child(8) { --card-bg:#dedada; --card-fg:#111; }

@media (max-width:800px) {
  .about-page-hero__panel { grid-template-columns:1fr; padding:24px; }
  .about-page-hero__panel img { height:320px; }
  .case-list-hero__panel { min-height:440px; padding:34px 26px 70px; }
  .case-detail-hero__panel,.blog-list-hero__panel { min-height:330px; padding:38px 24px 62px; }
}

.review-direction-next .review-card--active { animation:reviewActiveNext .72s cubic-bezier(.16,1,.3,1); }
.review-direction-next .review-card--next { animation:reviewNextIn .72s cubic-bezier(.16,1,.3,1); }
.review-direction-prev .review-card--active { animation:reviewActivePrev .72s cubic-bezier(.16,1,.3,1); }
@keyframes reviewActiveNext { from { opacity:.35; transform:translateX(-18%) translateY(20px) scale(.92) rotateY(-5deg); } to { opacity:1; transform:translateX(-50%) scale(1); } }
@keyframes reviewNextIn { from { opacity:0; transform:translateX(18%) translateY(30px) scale(.86); } to { opacity:.78; transform:translateX(-14%) translateY(20px) scale(.92) rotateY(-5deg); } }
@keyframes reviewActivePrev { from { opacity:.45; transform:translateX(-86%) translateY(38px) scale(.88) rotateY(7deg); } to { opacity:1; transform:translateX(-50%) scale(1); } }
.map-panel--uploaded { display:block; padding:0; min-height:0; overflow:hidden; }
.map-panel--uploaded img { display:block; width:100%; height:auto; min-height:420px; object-fit:cover; }


/* WordPress dynamic primary menu + dropdowns */
.main-nav .menu-item-wrap{position:relative;height:100%;display:flex;align-items:center;min-width:0}
.main-nav .menu-link-row{display:flex;align-items:center;gap:5px;min-width:0}
.main-nav .menu-item-link{display:block}
.main-nav .submenu-toggle{width:22px;height:22px;padding:0;border:0;background:transparent;display:grid;place-items:center;cursor:pointer;border-radius:50%;flex:0 0 auto}
.main-nav .submenu-toggle span{width:7px;height:7px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translate(-1px,-1px);transition:transform .25s ease}
.main-nav .submenu-toggle.is-open span{transform:rotate(225deg) translate(-1px,-1px)}
.main-nav .sub-menu{position:absolute;top:calc(100% + 12px);left:50%;z-index:80;min-width:235px;padding:10px;background:rgba(255,255,255,.98);border:1px solid rgba(14,81,70,.10);border-radius:20px;box-shadow:0 20px 55px rgba(4,28,25,.16);opacity:0;visibility:hidden;pointer-events:none;transform:translate(-50%,-10px);transition:opacity .24s ease,transform .24s ease,visibility .24s ease}
.main-nav .menu-item-wrap:hover>.sub-menu,.main-nav .menu-item-wrap:focus-within>.sub-menu,.main-nav .sub-menu.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.main-nav .sub-menu .menu-item-wrap{height:auto;display:block;width:100%}
.main-nav .sub-menu .menu-link-row{width:100%;justify-content:space-between;border-radius:13px;transition:background .2s ease}
.main-nav .sub-menu .menu-link-row:hover{background:linear-gradient(110deg,rgba(57,189,134,.13),rgba(14,81,70,.06))}
.main-nav .sub-menu .menu-item-link{width:100%;padding:11px 13px;text-align:left;font-size:14px;line-height:1.25;color:#102723;transform:none!important}
.main-nav .sub-menu .submenu-toggle{margin-right:8px}
.main-nav .sub-menu .sub-menu{top:-10px;left:calc(100% + 12px);transform:translate(-8px,0)}
.main-nav .sub-menu .menu-item-wrap:hover>.sub-menu,.main-nav .sub-menu .menu-item-wrap:focus-within>.sub-menu,.main-nav .sub-menu .sub-menu.is-open{transform:translate(0,0)}

@media (max-width:767px){
  .main-nav .menu-item-wrap{height:auto;width:100%;display:block}
  .main-nav .menu-link-row{width:100%;justify-content:space-between;border-radius:14px}
  .main-nav .menu-link-row:hover{background:rgba(57,189,134,.10)}
  .main-nav .menu-item-link{width:100%;padding:12px 10px;text-align:left!important}
  .main-nav .submenu-toggle{width:38px;height:38px;margin-right:4px;background:rgba(14,81,70,.07)}
  .main-nav .sub-menu{position:static;display:none;min-width:0;width:100%;padding:5px 0 5px 14px;margin:0;background:transparent;border:0;border-left:1px solid rgba(57,189,134,.35);border-radius:0;box-shadow:none;opacity:1;visibility:visible;pointer-events:auto;transform:none!important}
  .main-nav .sub-menu.is-open{display:block}
  .main-nav .sub-menu .menu-item-link{font-size:13px;padding:10px 12px}
  .main-nav .sub-menu .sub-menu{position:static;display:none;padding-left:12px}
  .main-nav .sub-menu .sub-menu.is-open{display:block}
}

/* Production navigation, breadcrumbs and legal links */
.breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin:0 0 34px; color:#75807d; font-size:15px; line-height:1.35; }
.breadcrumb a { color:inherit; text-decoration:none; transition:color .2s ease; }
.breadcrumb a:hover { color:var(--green-dark); }
.breadcrumb__separator { color:rgba(14,81,70,.42); font-size:18px; line-height:1; }
.breadcrumb__current { color:#243632; font-weight:600; }
.page-hero__copy .breadcrumb { color:rgba(255,255,255,.68); }
.page-hero__copy .breadcrumb a:hover { color:#fff; }
.page-hero__copy .breadcrumb__separator { color:rgba(255,255,255,.34); }
.page-hero__copy .breadcrumb__current { color:#fff; }
.service-detail-hero > .reveal:first-child .breadcrumb { margin:0 0 34px 20px; }
.legal-page > .breadcrumb { margin-bottom:24px; }
.contact-page > .breadcrumb { margin-bottom:24px; }
.not-found .breadcrumb { justify-content:center; margin-bottom:24px; }

.main-nav .menu-item-link.is-active { color:var(--green-dark); }
.main-nav > .menu-item-wrap > .sub-menu { width:580px; min-width:580px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:4px; padding:14px; }
.main-nav > .menu-item-wrap > .sub-menu .menu-link-row { min-height:48px; }
.main-nav > .menu-item-wrap > .sub-menu .menu-item-link { white-space:normal; }
.main-nav .submenu-toggle:focus-visible,
.main-nav .menu-item-link:focus-visible { outline:2px solid var(--green); outline-offset:3px; }

.footer-legal-links { display:flex; flex-direction:column; gap:8px; margin-top:2px; padding-top:4px; }
.footer-legal-links a { position:relative; padding-left:14px; }
.footer-legal-links a::before { content:'›'; position:absolute; left:0; color:var(--green); }

@media (max-width:1180px) and (min-width:768px) {
  .main-nav { gap:18px; padding:0 28px; }
  .main-nav a { font-size:14px; }
  .main-nav > .menu-item-wrap > .sub-menu { width:520px; min-width:520px; }
}

@media (max-width:767px) {
  .breadcrumb { margin-bottom:24px; font-size:13px; gap:6px; }
  .service-detail-hero > .reveal:first-child .breadcrumb { margin-left:8px; margin-bottom:22px; }
  .main-nav > .menu-item-wrap > .sub-menu { width:100%; min-width:0; display:none; grid-template-columns:1fr; padding:5px 0 5px 14px; }
  .main-nav > .menu-item-wrap > .sub-menu.is-open { display:block; }
}
.breadcrumb__item { display:inline-flex; align-items:center; gap:8px; min-width:0; }
.breadcrumb__current { max-width:min(62vw,760px); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width:767px){ .breadcrumb__item{gap:6px}.breadcrumb__current{max-width:68vw} }

/* =========================================================
   Beacon Minds premium creative-agency motion revision 5
   Desktop dropdown bridge + refined interaction language
   ========================================================= */
html {
  scroll-padding-top: 112px;
  scrollbar-gutter: stable;
}
body {
  background: #fbfdfc;
}
::selection {
  background: rgba(57,189,134,.28);
  color: #09251f;
}

/* Slim scroll progress indicator injected by beacon-app.js */
.bm-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}
.bm-scroll-progress > i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg,#39bd86,#7bf0b8,#39bd86);
  box-shadow: 0 0 18px rgba(57,189,134,.55);
  will-change: transform;
}

/* Glass navigation with a more crafted agency feel */
.site-header {
  border-bottom: 1px solid rgba(8,47,43,.045);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 46px rgba(8,35,31,.09);
}
.brand img {
  transition: transform .55s cubic-bezier(.16,1,.3,1), filter .55s ease;
}
.brand:hover img {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 8px 13px rgba(14,81,70,.12));
}
.main-nav {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(16,56,49,.065);
  background: rgba(239,243,241,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 8px 28px rgba(17,43,38,.045);
}
.main-nav::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.64);
}
.main-nav > .menu-item-wrap > .menu-link-row {
  position: relative;
}
.main-nav > .menu-item-wrap > .menu-link-row::after {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  opacity: 0;
  transition: transform .38s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.main-nav > .menu-item-wrap:hover > .menu-link-row::after,
.main-nav > .menu-item-wrap:focus-within > .menu-link-row::after,
.main-nav > .menu-item-wrap > .menu-link-row:has(.is-active)::after {
  transform: scaleX(1);
  opacity: 1;
}
.main-nav a {
  transition: color .3s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.main-nav a:hover {
  transform: translateY(-1px);
}

/* IMPORTANT: keep dropdown alive while the pointer crosses the visual gap. */
@media (min-width:768px) {
  .main-nav > .menu-item-has-children {
    isolation: isolate;
  }
  .main-nav > .menu-item-has-children::after {
    content: '';
    position: absolute;
    z-index: 79;
    top: 100%;
    left: 50%;
    width: calc(100% + 48px);
    height: 20px;
    transform: translateX(-50%);
    background: transparent;
  }
  .main-nav .sub-menu {
    top: calc(100% + 10px);
    overflow: visible;
    border: 1px solid rgba(18,79,67,.10);
    background:
      radial-gradient(circle at 8% 0%, rgba(57,189,134,.14), transparent 32%),
      rgba(255,255,255,.97);
    box-shadow: 0 28px 75px rgba(5,35,29,.17), inset 0 1px 0 rgba(255,255,255,.9);
    transform: translate(-50%,-8px) scale(.985);
    transform-origin: 50% 0;
    transition: opacity .28s ease, transform .38s cubic-bezier(.16,1,.3,1), visibility .28s ease;
  }
  .main-nav .sub-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 16px;
    background: transparent;
  }
  .main-nav .menu-item-wrap:hover > .sub-menu,
  .main-nav .menu-item-wrap:focus-within > .sub-menu,
  .main-nav .sub-menu.is-open {
    transform: translate(-50%,0) scale(1);
  }
  .main-nav > .menu-item-wrap > .sub-menu {
    padding: 16px;
    gap: 7px;
    border-radius: 24px;
  }
  .main-nav > .menu-item-wrap > .sub-menu .menu-link-row {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition: background .32s ease, border-color .32s ease, transform .32s cubic-bezier(.16,1,.3,1), box-shadow .32s ease;
  }
  .main-nav > .menu-item-wrap > .sub-menu .menu-link-row::before {
    content: '';
    position: absolute;
    width: 66px;
    height: 66px;
    right: -34px;
    top: -34px;
    border-radius: 50%;
    background: rgba(57,189,134,.14);
    transform: scale(.55);
    opacity: 0;
    transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  }
  .main-nav > .menu-item-wrap > .sub-menu .menu-link-row:hover {
    transform: translateY(-2px);
    border-color: rgba(57,189,134,.18);
    background: linear-gradient(120deg,rgba(57,189,134,.11),rgba(237,249,245,.72));
    box-shadow: 0 10px 22px rgba(12,61,51,.07);
  }
  .main-nav > .menu-item-wrap > .sub-menu .menu-link-row:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .main-nav .sub-menu .menu-item-link {
    position: relative;
    z-index: 2;
    padding: 13px 15px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: .005em;
  }
}

/* Premium button movement + soft light sweep */
.pill-button,
.button-with-arrow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .35s ease, box-shadow .4s ease, border-color .35s ease;
}
.pill-button::before,
.button-with-arrow::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -34%;
  width: 30%;
  height: 220%;
  transform: rotate(18deg) translateX(-220%);
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  transition: transform .72s cubic-bezier(.16,1,.3,1);
}
.pill-button:hover::before,
.button-with-arrow:hover::before {
  transform: rotate(18deg) translateX(560%);
}
.pill-button:hover,
.button-with-arrow:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 16px 34px rgba(27,124,95,.2);
}

/* More editorial section rhythm */
.section-space {
  position: relative;
}
.section-heading h2 {
  text-wrap: balance;
}
.section-heading .eyebrow {
  position: relative;
  padding: 7px 13px 7px 24px;
  border: 1px solid rgba(57,189,134,.18);
  border-radius: 999px;
  background: rgba(237,249,245,.62);
}
.section-heading .eyebrow::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(57,189,134,.10);
}

/* Cinematic page heroes */
.page-hero {
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 34px 80px rgba(8,38,33,.14);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg,transparent 0 54%,rgba(255,255,255,.035) 54% 54.2%,transparent 54.2%),
    radial-gradient(circle at 18% 90%,rgba(57,189,134,.15),transparent 32%);
}
.page-hero__media {
  transform: translateZ(0);
  box-shadow: 0 22px 55px rgba(0,0,0,.24);
}
.page-hero__media img,
.placeholder img,
.case-image img,
.blog-card img,
.blog-list-card img,
.office-grid img,
.clients-hero-image img,
.author-portrait img {
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .8s ease;
}
.page-hero__media:hover img,
.placeholder:hover img,
.case-image:hover img,
.blog-card:hover img,
.blog-list-card:hover img,
.office-grid img:hover,
.clients-hero-image:hover img,
.author-portrait:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

/* Smoother, less generic entrance animation */
.reveal {
  opacity: 0;
  transform: translate3d(0,42px,0) scale(.975);
  filter: blur(5px);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1) var(--reveal-delay,0ms),
    transform 1.05s cubic-bezier(.16,1,.3,1) var(--reveal-delay,0ms),
    filter .85s ease var(--reveal-delay,0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}

/* Tactile creative cards without changing the supplied layout */
.feature-card,
.case-card,
.blog-card,
.blog-list-card,
.logo-card,
.resource-item,
.positions-panel article {
  transition: transform .48s cubic-bezier(.16,1,.3,1), box-shadow .48s ease, border-color .35s ease, background .35s ease;
}
.feature-card:hover,
.case-card:hover,
.blog-card:hover,
.blog-list-card:hover,
.logo-card:hover,
.resource-item:hover,
.positions-panel article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(9,43,36,.12);
}

/* Breadcrumbs feel intentional, not utility-only */
.breadcrumb {
  letter-spacing: .01em;
}
.breadcrumb a {
  position: relative;
}
.breadcrumb a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.breadcrumb a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Scrollbar polish on desktop browsers */
@media (hover:hover) and (pointer:fine) {
  * { scrollbar-width: thin; scrollbar-color: rgba(14,81,70,.34) transparent; }
  *::-webkit-scrollbar { width: 10px; height: 10px; }
  *::-webkit-scrollbar-track { background: transparent; }
  *::-webkit-scrollbar-thumb { background: rgba(14,81,70,.22); border: 3px solid transparent; background-clip: padding-box; border-radius: 999px; }
  *::-webkit-scrollbar-thumb:hover { background: rgba(14,81,70,.38); border: 3px solid transparent; background-clip: padding-box; }
}

@media (max-width:767px) {
  .main-nav::before { display:none; }
  .main-nav {
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    border: 1px solid rgba(14,81,70,.1);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
  }
  .main-nav > .menu-item-wrap > .menu-link-row::after { display:none; }
  .main-nav .menu-link-row { transition: background .3s ease, transform .3s ease; }
  .main-nav .menu-link-row:active { transform: scale(.985); }
  .reveal { filter:none; transform: translate3d(0,24px,0); }
  .section-space { padding-top: 76px; padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  .bm-scroll-progress { display:none; }
}

/* =========================================================
   HOMEPAGE REFERENCE MATCH — V4
   Based on the supplied Beacon Minds desktop artwork.
   ========================================================= */

/* Typography supplied with the reference */
body { font-family: var(--body); }
.home-hero h1,
.home-hero h2,
.home-hero h3,
.strategic-scroll h2,
.strategic-scroll h3,
.testimonials-section h2,
.services-home h2,
.services-home h3,
.about-home h2,
.about-home h3,
.statistics h2,
.statistics h3,
.case-home h2,
.case-home h3,
.faq-section h2,
.faq-section h3,
.certifications h2,
.reviews h2,
.contact-cta h2,
.blog-home h2,
.blog-home h3 { font-family: var(--heading); }

/* Header reference: clean white field + single soft pill navigation */
@media (min-width: 1100px) {
  .site-header { height: 132px; background: #fff; border-bottom: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header.is-scrolled { height: 94px; background: rgba(255,255,255,.96); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 12px 34px rgba(10,37,32,.07); }
  .header-inner { width: min(1460px, calc(100% - 120px)); gap: 78px; }
  .brand { width: 164px; flex-basis: 164px; }
  .brand img { height: 62px; }
  .main-nav { height: 84px; padding: 0 64px; gap: 38px; border: 0; background: #efefef; box-shadow: none; }
  .main-nav::before { display: none; }
  .is-scrolled .main-nav { height: 66px; }
  .main-nav a { font-size: 16px; font-weight: 400; }
  .main-nav > .menu-item-wrap > .menu-link-row::after { bottom: -11px; height: 1px; }
}

/* Shared homepage heading scale from supplied specs */
.strategic-scroll .section-heading h2,
.testimonials-section .section-heading h2,
.services-home > .section-heading h2,
.about-home > .section-heading h2,
.statistics > .section-heading h2,
.case-home > .section-heading h2,
.faq-section > .section-heading h2,
.certifications > .section-heading h2,
.reviews > .section-heading h2,
.blog-home > .section-heading h2 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.8px;
  line-height: 1.2;
}
.section-heading { margin-bottom: 54px; }

/* Hero — exact type hierarchy and generous dark-green canvas */
.home-hero {
  min-height: 986px;
  padding: 118px 0 84px;
  border-radius: 0 0 38px 38px;
  background: #0a332f;
}
.home-hero::before { opacity: .4; }
.hero-copy { width: min(820px, calc(100% - 40px)); }
.hero-copy h1 {
  font-family: var(--heading);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.9px;
  color: #39bd86;
}
.hero-copy p {
  max-width: 760px;
  margin-top: 24px;
  font-family: var(--body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}
.hero-slider-window {
  height: 444px;
  margin-top: 44px;
  clip-path: ellipse(70% 53% at 50% 50%);
}
.hero-slider-window::after { box-shadow: inset 0 0 52px 24px #0a332f; }
.hero-slider-track { top: 24px; }
.hero-slide { height: 396px; }
.hero-slide img { border-radius: 0; }
.hero-tagline {
  margin-top: 22px;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.1px;
}

/* Strategic Framework */
.strategic-scroll { height: 190vh; padding-top: 112px; }
.strategic-sticky { top: 92px; }
.strategic-sticky .section-heading { margin-bottom: 68px; }
.strategic-stage {
  width: min(1450px, calc(100% - 146px));
  height: 610px;
  border-radius: 58px;
  background:
    radial-gradient(circle at 3% 13%, rgba(24,96,77,.85), transparent 35%),
    linear-gradient(120deg,#101a20 6%,#151c23 62%,#161e24 100%);
}
.strategy-card,
.strategy-image { border-radius: 38px; box-shadow: 0 18px 38px rgba(0,0,0,.13); }
.strategy-card { padding: 38px; }
.strategy-card--green { left: 4.7%; top: 21.5%; width: 24.4%; height: 53.8%; background: linear-gradient(135deg,#008069,#32bb84); }
.strategy-card--green h3 { font-size: 26px; font-weight: 600; line-height: 1.35; }
.strategy-card--black { left: 29.2%; top: 21.5%; width: 24.5%; height: 53.8%; }
.strategy-card--white { left: 55%; top: 21.5%; width: 24.5%; height: 53.8%; }
.strategy-card--black p,
.strategy-card--white p { font-family: var(--body); font-size: 16px; font-weight: 400; line-height: 1.48; }
.strategy-image { right: 4.5%; top: 8.5%; width: 30%; height: 79%; }

/* Testimonials */
.testimonials-section { padding-top: 118px; padding-bottom: 130px; }
.testimonials-shell {
  width: min(1120px, calc(100% - 110px));
  padding: 58px 84px 54px;
  border-radius: 42px;
  background: #eefbf7;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.testimonials-shell .section-heading { margin-bottom: 28px; }
.testimonials-shell .section-heading h2 { font-size: 36px; }
.testimonials-shell .section-heading p { max-width: 620px; margin-top: 15px; font-size: 16px; line-height: 1.38; }
.testimonial-card { width: 560px; height: 360px; margin-bottom: 45px; border-radius: 34px; box-shadow: 14px 16px 30px rgba(0,0,0,.15); animation: testimonialCardIn .65s cubic-bezier(.16,1,.3,1); }
.testimonial-card::before { top: 46px; width: 145px; height: 248px; border-radius: 0 58px 58px 0; }
.testimonial-card img { left: 140px; width: 60%; height: 94%; }
.testimonial-card h3 { right: 46px; top: 70px; font-size: 27px; line-height: 1; }
.testimonial-quote { left: -116px; top: 77px; width: 245px; font-size: 17px; line-height: 1.28; }
.testimonials-shell .slider-arrow { width: 44px; height: 44px; top: 53%; font-size: 22px; }
.testimonials-shell .slider-arrow--left { left: 38px; }
.testimonials-shell .slider-arrow--right { right: 38px; }
.testimonials-shell .pill-button { min-width: 152px; min-height: 42px; border-radius: 16px; font-size: 14px; }
@keyframes testimonialCardIn { from { opacity: .35; transform: translateX(26px) scale(.985); } to { opacity: 1; transform: none; } }

/* Moving client-logo rail */
.client-marquee { margin-bottom: 100px; }
.client-marquee > div { gap: 22px; animation-duration: 28s; }
.client-marquee span.has-artwork,
.client-marquee span.has-artwork img { height: 72px; }
.client-marquee span.has-artwork { min-width: 200px; }

/* Services */
.services-home { padding-top: 35px; padding-bottom: 100px; }
.services-home > .section-heading { margin-bottom: 70px; }
.services-intro {
  width: min(1060px, calc(100% - 70px));
  grid-template-columns: 1.42fr .95fr;
  gap: 28px;
  margin-bottom: 88px;
  align-items: end;
}
.services-visual { height: 350px; border-radius: 24px 24px 55px 24px; }
.services-visual::after { display: none; }
.services-visual img { height: 100%; opacity: 1; object-fit: cover; }
.services-visual h3 { display: none; }
.services-copy {
  min-height: 290px;
  display: flex;
  align-items: center;
  padding: 44px 36px;
  border-radius: 42px 42px 42px 14px;
  font-size: 16px;
  line-height: 1.48;
  background: #efefef;
}
.service-sequence { width: min(1100px, calc(100% - 70px)); }
.service-sequence .service-grid { width: 100%; }
.service-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 30px 16px; }
.service-card {
  min-height: 342px;
  padding: 28px 24px 58px;
  border-radius: 25px 25px 26px 25px;
  --card-cut: #fff;
}
.service-card:nth-child(1), .service-card:nth-child(7) { --card-bg:#eaf7f2; --card-fg:#111; }
.service-card:nth-child(2), .service-card:nth-child(3), .service-card:nth-child(6), .service-card:nth-child(8) { --card-bg:#efefef; --card-fg:#111; }
.service-card:nth-child(4), .service-card:nth-child(5) { --card-bg:#17212a; --card-fg:#fff; }
.service-card h3 {
  max-width: 200px;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.24;
  text-transform: uppercase;
}
.service-card__copy { max-height: 230px; }
.service-card__copy ul { margin: 0; padding-left: 17px; }
.service-card__copy li,
.service-card p { margin: 0 0 5px; font-family: var(--body); font-size: 14px; font-weight: 400; line-height: 1.23; }
.service-card__watermark { display: none; }
.service-card::before { width: 64px; height: 64px; border-radius: 48px 0 0 0; }
.service-card .tiny-arrow { width: 40px; height: 40px; right: 8px; bottom: 8px; }
.services-home .center-action { margin-top: 58px; }
.services-home .pill-button { min-width: 150px; min-height: 42px; border-radius: 16px; font-size: 14px; }

/* About us */
.about-home { padding-top: 125px; padding-bottom: 118px; }
.about-home > .section-heading { margin-bottom: 68px; }
.about-layout { width: min(1080px, calc(100% - 80px)); grid-template-columns: .87fr 1.25fr; gap: 28px; }
.about-image { height: 526px; border-radius: 0; overflow: visible; }
.about-image img { height: 100%; width: 100%; object-fit: contain; }
.about-image::after,
.about-image .round-link { display: none; }
.about-content { grid-template-columns: 1fr 1fr; gap: 24px; min-height: 526px; align-content: start; }
.about-lead { grid-column: 1 / -1; min-height: 205px; padding: 38px; border-radius: 34px; font-size: 25px; line-height: 1.32; }
.about-content > article { min-height: 298px; padding: 42px 34px; border-radius: 35px; font-size: 16px; line-height: 1.56; }

/* Statistics */
.statistics { padding-top: 112px; padding-bottom: 126px; }
.statistics > .section-heading { margin-bottom: 65px; }
.statistics-panel {
  width: min(1260px, calc(100% - 110px));
  min-height: 645px;
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 76% 4%, rgba(205,255,135,.98), rgba(31,116,79,.3) 31%, transparent 48%),
    linear-gradient(124deg,#172129 12%,#0c6a51 52%,#16232a 100%);
}
.statistics-panel article { padding: 314px 46px 48px; }
.statistics-panel strong { font-size: 74px; font-weight: 400; }
.statistics-panel h3 { margin: 14px 0 42px; font-size: 24px; font-weight: 400; }
.statistics-panel p { font-size: 14px; line-height: 1.55; }

/* Home case studies: active large card + click/drag to promote smaller cards */
.case-home { padding-top: 112px; padding-bottom: 140px; }
.case-home > .section-heading { margin-bottom: 68px; }
.home-case-stage { width: min(1180px, calc(100% - 84px)); margin: auto; touch-action: pan-y; user-select: none; cursor: grab; }
.home-case-stage:active { cursor: grabbing; }
.home-case-grid { display: grid; grid-template-columns: 1.55fr repeat(3, .78fr); gap: 22px; align-items: start; }
.home-case-card { min-width: 0; transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s ease; }
.home-case-card.is-small { cursor: pointer; }
.home-case-card.is-small:hover { transform: translateY(-6px); }
.home-case-image { position: relative; height: 182px; overflow: visible; border-radius: 20px 20px 42px 20px; }
.home-case-card.is-featured .home-case-image { height: 330px; }
.home-case-image img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.home-case-card:hover .home-case-image img { transform: scale(1.025); }
.home-case-image::after { content:''; position:absolute; right:-1px; bottom:-1px; width:62px; height:62px; border-radius:46px 0 0 0; background:#fff; z-index:2; }
.home-case-image .case-arrow { right: 7px !important; bottom: 7px !important; width: 40px !important; height: 40px !important; }
.home-case-card h3 { margin: 18px 0 2px; color: #39bd86; font-size: 23px; line-height: 1.2; }
.home-case-card span { color:#174f45; text-transform: uppercase; font-size: 13px; }
.home-case-card p { margin: 12px 0 0; font-size: 14px; line-height: 1.45; }
.home-case-bottom { display: grid; grid-template-columns: 1fr 1.15fr; gap: 145px; align-items: start; margin-top: 62px; }
.case-slider-progress { height: 8px; overflow: hidden; border-radius: 999px; background: #ddd; }
.case-slider-progress span { display: block; height: 100%; border-radius: inherit; background: #18594f; transition: transform .65s cubic-bezier(.16,1,.3,1), width .4s ease; }
.home-case-bottom .case-summary { width: auto; margin: -10px 0 0; }
.home-case-bottom .case-summary p { font-size: 15px; }
.home-case-bottom .pill-button { min-width: 170px; min-height: 48px; border-radius: 18px; }

/* FAQ */
.faq-section { padding-top: 126px; padding-bottom: 132px; }
.faq-section > .section-heading { margin-bottom: 72px; }
.faq-panel {
  width: min(1180px, calc(100% - 86px));
  min-height: 620px;
  padding: 65px 74px;
  border-radius: 52px;
  grid-template-columns: .95fr 1.1fr;
  gap: 74px;
}
.faq-left h3 { margin-top: 44px; font-size: 42px; line-height: 1.28; }
.faq-left > p { font-size: 14px; }
.faq-left form { margin-top: 54px; padding: 22px; border-radius: 14px; }
.faq-left form h4 { font-size: 26px; }
.faq-left input, .faq-left textarea { border-radius: 11px; font-size: 14px; }
.faq-left form button { min-width: 145px; min-height: 38px; border-radius: 12px; }
.faq-list { padding-top: 76px; }
.faq-toolbar span { display: none; }
.faq-toolbar select { min-width: 150px; min-height: 42px; border: 0; background: #39bd86; color: #fff; text-align: center; }
.faq-item > button { min-height: 56px; font-size: 18px; }
.faq-pagination > button { display: none; }
.faq-pagination div { margin-left: auto; }
.faq-pagination div button { width: 14px; height: 14px; padding: 0; border: 0; background: #969696; font-size: 0; }
.faq-pagination div button.is-active { background: #d1d1d1; }

/* Certifications */
.certifications { padding-top: 122px; padding-bottom: 110px; }
.certifications > .section-heading { margin-bottom: 76px; }
.certificate-slider-shell { width: min(1160px, calc(100% - 84px)); padding: 0 32px; }
.certificate-viewport { padding: 20px 8px 34px; }
.certificate-slide { padding: 0 15px; }
.certificate-card { height: 330px; border-radius: 28px; box-shadow: 0 8px 15px rgba(0,0,0,.18); }
.certificate-card img { padding: 18px; }
.certifications .slider-dots { margin-top: 18px; }

/* Google Business Reviews */
.reviews { padding-top: 112px; padding-bottom: 125px; }
.reviews > .section-heading { margin-bottom: 72px; }
.review-stage { width: min(1140px, calc(100% - 80px)); height: 430px; }
.review-card { width: 48%; min-height: 300px; padding: 42px; grid-template-columns: 70px 1fr; border-radius: 0; }
.review-card--active { min-height: 365px; }
.review-card--previous { transform: translateX(-92%) translateY(48px) scale(.88); }
.review-card--next { transform: translateX(-8%) translateY(48px) scale(.88); }
.review-card .avatar { width: 58px; height: 58px; font-size: 24px; }
.review-card .stars { font-size: 26px; }
.review-card p { font-size: 14px; line-height: 1.5; }
.review-card a { font-size: 13px; }
.review-nav { width: 42px; height: 42px; background: #777; color: #fff; }
.review-nav--prev { left: -42px; }
.review-nav--next { right: -42px; }

/* Social CTA */
.contact-cta { padding-top: 120px; padding-bottom: 128px; }
.contact-panel {
  width: min(1080px, calc(100% - 90px));
  min-height: 520px;
  padding: 68px;
  grid-template-columns: 1.15fr .85fr;
  gap: 86px;
  border-radius: 58px;
  background:
    radial-gradient(ellipse at 19% 70%, rgba(53,206,137,.92), transparent 40%),
    radial-gradient(ellipse at 14% 5%, rgba(44,161,107,.65), transparent 40%),
    linear-gradient(120deg,#075d43,#011f18 62%,#001510);
}
.contact-panel::before { opacity: .12; }
.contact-panel input { min-height: 50px; border-radius: 22px; }
.contact-panel textarea { height: 210px; border-radius: 22px; }
.contact-panel h2 { font-size: 48px; font-weight: 400; line-height: 1.12; }
.contact-panel p { font-size: 16px; line-height: 1.45; }
.contact-panel .pill-button,
.contact-panel .bm-form-submit { min-width: 150px; min-height: 44px; border-radius: 16px; }

/* Blog */
.blog-home { padding-top: 118px; padding-bottom: 135px; }
.blog-home > .section-heading { margin-bottom: 76px; }
.blog-row { width: min(1100px, calc(100% - 82px)); gap: 10px; }
.blog-intro, .blog-card { min-height: 340px; border-radius: 26px; }
.blog-intro { padding: 176px 25px 28px; }
.blog-intro h3 { font-size: 30px; }
.blog-card > img { height: 176px; }
.blog-card > div { min-height: 164px; padding: 20px; }
.blog-card h3 { margin-bottom: 28px; font-size: 18px; line-height: 1.05; }
.blog-card small { font-size: 10px; }
.blog-card a { padding: 7px 19px; font-size: 11px; }
.blog-home .slider-progress { width: min(620px, calc(100% - 64px)); height: 7px; margin-top: 84px; }
.blog-home .center-action { margin-top: 65px; }
.blog-home .pill-button { min-width: 170px; min-height: 50px; border-radius: 18px; }

/* Footer */
.site-footer { min-height: 660px; padding-top: 72px; }
.footer-grid { width: min(1420px,100%); grid-template-columns: 1.65fr .82fr .8fr .9fr; gap: 58px; }
.footer-lead h2 { font-size: 55px; }
.footer-lead h2 small { font-size: 26px; }

/* Keep motion premium but preserve the supplied geometry */
@media (hover:hover) and (pointer:fine) {
  .strategy-card, .strategy-image, .services-copy, .about-lead, .about-content > article, .statistics-panel, .faq-panel, .contact-panel { transition: box-shadow .45s ease, transform .55s cubic-bezier(.16,1,.3,1); }
  .services-copy:hover, .about-lead:hover, .about-content > article:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11,48,40,.10); }
}

/* Responsive adaptations: same visual language, not a desktop crop. */
@media (max-width: 1099px) {
  .home-hero { min-height: 820px; padding-top: 86px; }
  .hero-copy h1 { font-size: clamp(38px,6vw,50px); }
  .hero-slider-window { height: 360px; }
  .hero-slide { height: 330px; }
  .strategic-stage { width: calc(100% - 48px); }
  .services-intro, .about-layout, .home-case-stage { width: calc(100% - 48px); }
  .service-sequence { width: calc(100% - 48px); }
}

@media (max-width: 900px) {
  .strategic-scroll { height: auto; padding: 90px 0; }
  .strategic-sticky { position: static; min-height: auto; }
  .strategic-stage { height: auto; padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .strategy-card, .strategy-image { position: relative; inset: auto !important; width: auto !important; height: auto !important; min-height: 250px; opacity: 1 !important; transform: none !important; }
  .strategy-image { min-height: 340px; }
  .testimonials-shell { width: calc(100% - 36px); padding: 52px 30px; }
  .testimonial-card { width: min(520px,calc(100% - 60px)); }
  .testimonial-quote { left: -52px; width: 190px; font-size: 15px; }
  .services-intro { grid-template-columns: 1fr; }
  .services-copy { min-height: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-image { position: relative; top: auto; max-width: 430px; margin: auto; }
  .about-sequence { height: auto; }
  .about-content { min-height: 0; }
  .statistics-panel { grid-template-columns: 1fr 1fr; }
  .statistics-panel article { min-height: 360px; padding-top: 165px; }
  .home-case-grid { grid-template-columns: 1fr 1fr; }
  .home-case-card.is-featured { grid-column: 1 / -1; }
  .home-case-bottom { gap: 45px; }
  .faq-panel { grid-template-columns: 1fr; gap: 30px; }
  .faq-left h3 { margin-top: 0; }
  .faq-list { padding-top: 70px; }
  .contact-panel { grid-template-columns: 1fr; gap: 45px; }
  .blog-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section-space { padding-top: 72px; padding-bottom: 72px; }
  .strategic-scroll .section-heading h2,
  .testimonials-section .section-heading h2,
  .services-home > .section-heading h2,
  .about-home > .section-heading h2,
  .statistics > .section-heading h2,
  .case-home > .section-heading h2,
  .faq-section > .section-heading h2,
  .certifications > .section-heading h2,
  .reviews > .section-heading h2,
  .blog-home > .section-heading h2 { font-size: 30px; }
  .home-hero { min-height: 690px; padding-top: 64px; border-radius: 0 0 26px 26px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy p { font-size: 16px; }
  .hero-slider-window { height: 290px; margin-top: 32px; clip-path: ellipse(85% 54% at 50% 50%); }
  .hero-slider-track { left: calc(50% - 480px); gap: 18px; }
  .hero-slide { width: 220px; flex-basis: 220px; height: 260px; }
  .hero-tagline { padding: 0 20px; font-size: 16px; }
  .strategic-stage { grid-template-columns: 1fr; width: calc(100% - 28px); border-radius: 34px; }
  .strategy-card--green h3 { font-size: 23px; }
  .testimonials-shell { padding: 46px 18px; }
  .testimonials-shell .section-heading p { font-size: 15px; }
  .testimonial-card { width: calc(100% - 30px); height: 315px; }
  .testimonial-card::before { display: none; }
  .testimonial-card img { left: 12%; width: 55%; }
  .testimonial-card h3 { right: 18px; top: 42px; font-size: 21px; }
  .testimonial-quote { left: 14px; top: auto; bottom: 18px; width: calc(100% - 28px); padding: 12px; border-radius: 14px; background: rgba(255,255,255,.9); color: #111; }
  .testimonials-shell .slider-arrow { top: auto; bottom: 52px; }
  .testimonials-shell .slider-arrow--left { left: 16px; }
  .testimonials-shell .slider-arrow--right { right: 16px; }
  .client-marquee { margin-bottom: 65px; }
  .services-intro, .service-sequence, .about-layout, .home-case-stage { width: calc(100% - 28px); }
  .services-visual { height: 255px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .about-content { grid-template-columns: 1fr; }
  .about-lead { grid-column: auto; }
  .statistics-panel { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .statistics-panel article { min-height: 310px; padding: 120px 30px 34px; }
  .statistics-panel strong { font-size: 58px; }
  .home-case-grid { grid-template-columns: 1fr; }
  .home-case-card.is-featured { grid-column: auto; }
  .home-case-card .home-case-image, .home-case-card.is-featured .home-case-image { height: 245px; }
  .home-case-bottom { grid-template-columns: 1fr; gap: 28px; margin-top: 44px; }
  .faq-panel { width: calc(100% - 28px); padding: 38px 22px; border-radius: 34px; }
  .faq-left h3 { font-size: 32px; }
  .certificate-slider-shell { width: calc(100% - 24px); padding: 0 20px; }
  .review-stage { width: calc(100% - 48px); height: 420px; }
  .review-card { width: 88%; padding: 28px; }
  .review-card--previous { transform: translateX(-72%) translateY(60px) scale(.8); }
  .review-card--next { transform: translateX(-28%) translateY(60px) scale(.8); }
  .review-nav--prev { left: -18px; }
  .review-nav--next { right: -18px; }
  .contact-panel { width: calc(100% - 28px); padding: 40px 24px; border-radius: 34px; }
  .contact-panel h2 { font-size: 36px; }
  .blog-row { width: calc(100% - 28px); grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT PAGE REFERENCE MATCH — V5
   Journey + Founder based on supplied desktop artwork.
   ========================================================= */

.about-page-hero,
.about-transform,
.about-guides,
.journey-scroll,
.founder-section--reference { font-family: var(--body); }

.about-page-hero .breadcrumb { margin-bottom: 28px; }
.about-page-hero__panel {
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  padding: 42px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 18%, rgba(63,197,143,.28), transparent 32%),
    linear-gradient(125deg,#0c312b,#111b21 62%,#11181d);
  box-shadow: none;
}
.about-page-hero__panel img {
  height: 440px;
  border-radius: 30px 30px 78px 30px;
}
.about-page-hero__panel h1 {
  margin: 0 0 24px;
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -.45px;
  text-transform: none;
}
.about-page-hero__panel p {
  max-width: 620px;
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.about-transform .section-heading h2,
.about-guides .section-heading h2,
.journey-scroll > .section-heading h2,
.founder-section--reference > .section-heading h2 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.8px;
}

/* Transforming brands — 8-row scalable list */
.about-transform__panel--v5 {
  min-height: 590px;
  padding: 62px 66px;
  grid-template-columns: .78fr 1.22fr;
  gap: 82px;
  align-items: stretch;
  border-radius: 44px;
  background:
    radial-gradient(circle at 0% 100%, rgba(54,190,135,.20), transparent 38%),
    linear-gradient(128deg,#112029,#0a1015 72%,#050708);
}
.about-transform__panel--v5 .about-transform-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about-transform__panel--v5 .about-transform-title h3 {
  max-width: 390px;
  margin: 0 0 24px;
  color: var(--green);
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
}
.about-transform__panel--v5 .about-transform-title > p {
  max-width: 420px;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.58;
}
.about-transform-list { display: grid; align-content: center; }
.about-transform-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 59px;
  border-bottom: 1px solid rgba(255,255,255,.23);
  transition: padding-left .35s cubic-bezier(.16,1,.3,1), border-color .35s ease, color .35s ease;
}
.about-transform-line:first-child { border-top: 1px solid rgba(255,255,255,.23); }
.about-transform-line:hover { padding-left: 8px; border-color: rgba(57,189,134,.7); }
.about-transform-line span {
  color: var(--green);
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: .08em;
}
.about-transform-line p {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

/* What guides us — required 3-column icon / heading / body layout */
.about-guide-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.about-guide-card {
  min-height: 320px;
  padding: 38px 34px 36px;
  border: 1px solid rgba(12,60,49,.10);
  border-radius: 30px;
  background: #f5faf8;
  box-shadow: 0 10px 28px rgba(8,45,38,.055);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease, background .5s ease;
}
.about-guide-card:nth-child(2) { background: #fff; }
.about-guide-card:nth-child(3) { background: #132027; color: #fff; }
.about-guide-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(8,45,38,.11); }
.about-guide-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 46px;
  border-radius: 50%;
  background: rgba(57,189,134,.13);
  color: var(--green-dark);
}
.about-guide-card:nth-child(3) .about-guide-icon { color: var(--green); background: rgba(57,189,134,.12); }
.about-guide-icon svg { width: 34px; height: 34px; }
.about-guide-card h3 {
  margin: 0 0 18px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}
.about-guide-card p {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.58;
  color: #53615e;
}
.about-guide-card:nth-child(3) p { color: rgba(255,255,255,.72); }

/* Journey — sticky desktop scroll sequence matching reference composition */
.journey-scroll {
  position: relative;
  height: 330vh;
  padding-top: 105px;
  padding-bottom: 0;
}
.journey-scroll > .section-heading { margin-bottom: 44px; }
.journey-sticky {
  position: sticky;
  top: 110px;
}
.journey-design-panel {
  position: relative;
  display: grid;
  grid-template-columns: 36% 36% 28%;
  width: 100%;
  min-height: 590px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 76% 86%, rgba(43,136,104,.09), transparent 34%),
    linear-gradient(116deg,#17222b 0%,#0d141a 56%,#050708 100%);
  color: #fff;
  box-shadow: 0 16px 38px rgba(6,21,18,.09);
}
.journey-years {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 34px 24px 34px 74px;
}
.journey-years::before {
  content: '';
  position: absolute;
  left: 53px;
  top: 72px;
  bottom: 72px;
  width: 1px;
  background: linear-gradient(var(--green),rgba(57,189,134,.15));
}
.journey-years article {
  position: relative;
  min-height: 92px;
  padding: 6px 0 8px 18px;
  opacity: .44;
  transform: translateX(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.journey-years article.is-active { opacity: 1; transform: translateX(8px); }
.journey-dot {
  position: absolute;
  left: -26px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(57,189,134,.0);
  transition: box-shadow .45s ease, transform .45s ease;
}
.journey-years article.is-active .journey-dot { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(57,189,134,.12); }
.journey-years small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1;
}
.journey-years h3 {
  margin: 0 0 5px;
  color: var(--green);
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
}
.journey-years p {
  max-width: 300px;
  margin: 0;
  color: rgba(255,255,255,.69);
  font-size: 11px;
  line-height: 1.35;
}
.journey-media {
  position: relative;
  z-index: 4;
  height: 590px;
  overflow: hidden;
}
.journey-media::before,
.journey-media::after {
  content: '';
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
}
.journey-media::before { top: 0; background: linear-gradient(#111820,transparent); }
.journey-media::after { bottom: 0; background: linear-gradient(transparent,#0b1015); }
.journey-media-card {
  position: absolute;
  z-index: 2;
  left: 4%;
  top: 29%;
  width: 91%;
  height: 43%;
  overflow: hidden;
  border-radius: 20px;
  background: #1c282d;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  clip-path: polygon(8% 0,100% 4%,94% 100%,0 96%);
  transform-origin: 50% 50%;
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .55s ease;
  will-change: transform,opacity;
}
.journey-media-card:nth-child(even) { clip-path: polygon(0 4%,92% 0,100% 96%,7% 100%); }
.journey-media-card img { width: 100%; height: 100%; object-fit: cover; }
.journey-caption {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 0 42px 0 28px;
  color: var(--green);
}
.journey-caption span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(57,189,134,.35);
  border-radius: 99px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: .11em;
}
.journey-caption h3 {
  margin: 0 0 13px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}
.journey-caption p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.5;
}

/* Founder — exact left-copy/right-monochrome visual composition */
.founder-section--reference { padding-top: 115px; }
.founder-reference-card {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 530px;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 100%, rgba(16,105,79,.20), transparent 42%),
    linear-gradient(120deg,#162129,#0a1116);
  color: #fff;
}
.founder-reference-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 56px 32px 54px 64px;
}
.founder-reference-copy article { max-width: 430px; }
.founder-reference-copy h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 400;
}
.founder-reference-copy p,
.founder-reference-copy li {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
}
.founder-reference-copy ul { margin: 0; padding-left: 18px; }
.founder-reference-image {
  position: relative;
  min-height: 530px;
  margin-left: -12%;
  overflow: hidden;
  clip-path: polygon(11% 0,100% 0,100% 100%,0 100%);
  border-radius: 25px 42px 42px 25px;
}
.founder-reference-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,17,20,.15),transparent 34%);
  pointer-events: none;
}
.founder-reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(.16,1,.3,1), filter .7s ease;
}
.founder-reference-card:hover .founder-reference-image img { transform: scale(1.055); filter: grayscale(.88) contrast(1.04); }

@media (max-width: 1099px) {
  .about-transform__panel--v5 { padding: 50px 42px; gap: 48px; }
  .journey-years { padding-left: 54px; }
  .journey-years::before { left: 37px; }
  .journey-caption { padding-right: 24px; }
  .founder-reference-copy { padding-left: 44px; }
}

@media (max-width: 899px) {
  .about-page-hero__panel { grid-template-columns: 1fr; gap: 30px; }
  .about-page-hero__panel img { height: 360px; }
  .about-transform__panel--v5 { grid-template-columns: 1fr; min-height: 0; }
  .about-transform__panel--v5 .about-transform-title h3 { max-width: none; }
  .about-guide-grid { grid-template-columns: 1fr; }
  .about-guide-card { min-height: 0; }
  .about-guide-icon { margin-bottom: 28px; }

  .journey-scroll { height: auto; padding-bottom: 90px; }
  .journey-sticky { position: static; }
  .journey-design-panel { grid-template-columns: 1fr; min-height: 0; padding: 34px; }
  .journey-years { order: 1; padding: 0 0 30px 28px; gap: 14px; }
  .journey-years::before { left: 7px; top: 12px; bottom: 42px; }
  .journey-years article { opacity: 1; min-height: 0; padding-bottom: 18px; }
  .journey-years article.is-active { transform: none; }
  .journey-dot { left: -25px; }
  .journey-years p { max-width: 100%; font-size: 13px; }
  .journey-media { order: 2; height: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; overflow: visible; }
  .journey-media::before, .journey-media::after { display: none; }
  .journey-media-card,
  .journey-media-card:nth-child(even) {
    position: relative;
    inset: auto;
    width: 100%;
    height: 190px;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none;
    border-radius: 16px;
  }
  .journey-media-card:nth-child(n+4) { display: none; }
  .journey-caption { order: 3; padding: 30px 0 0; }
  .journey-caption h3 { font-size: 22px; }
  .journey-caption p { font-size: 14px; }

  .founder-reference-card { grid-template-columns: 1fr; }
  .founder-reference-copy { padding: 46px 38px; }
  .founder-reference-image { min-height: 420px; margin-left: 0; clip-path: none; border-radius: 0; }
}

@media (max-width: 600px) {
  .about-page-hero,
  .about-transform,
  .about-guides,
  .journey-scroll,
  .founder-section--reference { width: calc(100% - 28px); }
  .about-page-hero__panel { padding: 24px; border-radius: 30px; }
  .about-page-hero__panel img { height: 300px; border-radius: 22px 22px 55px 22px; }
  .about-page-hero__panel h1 { font-size: 26px; }
  .about-page-hero__panel p { font-size: 15px; }
  .about-transform .section-heading h2,
  .about-guides .section-heading h2,
  .journey-scroll > .section-heading h2,
  .founder-section--reference > .section-heading h2 { font-size: 30px; }
  .about-transform__panel--v5 { padding: 34px 24px; border-radius: 30px; gap: 32px; }
  .about-transform__panel--v5 .about-transform-title h3 { font-size: 25px; }
  .about-transform-line { grid-template-columns: 34px 1fr; gap: 10px; min-height: 66px; }
  .about-transform-line p { font-size: 14px; }
  .about-guide-card { padding: 30px 26px; border-radius: 26px; }
  .journey-design-panel { padding: 26px 20px; border-radius: 26px; }
  .journey-media { grid-template-columns: 1fr; }
  .journey-media-card { height: 220px; }
  .journey-media-card:nth-child(n+2) { display: none; }
  .founder-section--reference { padding-top: 80px; }
  .founder-reference-card { border-radius: 30px; }
  .founder-reference-copy { padding: 36px 26px; gap: 28px; }
  .founder-reference-image { min-height: 330px; }
}

/* ==========================================================
   Beacon Minds About page — screenshot match revision 6
   ========================================================== */
.about-page-hero,
.about-transform,
.about-guides,
.journey-scroll,
.vision-mission-section,
.office-section--reference,
.founder-section--reference {
  width:min(1110px,calc(100% - 64px));
}

.about-page-hero { padding-top:48px; padding-bottom:82px; }
.about-page-hero .breadcrumb { margin-bottom:24px; }
.about-page-hero__panel--reference {
  grid-template-columns:.94fr 1.06fr;
  gap:0;
  min-height:420px;
  padding:0;
  overflow:hidden;
  border-radius:34px;
  background:linear-gradient(120deg,#38bf89 0%,#37bb84 58%,#2fb67c 100%);
  box-shadow:0 20px 54px rgba(18,87,69,.09);
}
.about-page-hero__image {
  height:100%;
  min-height:420px;
  overflow:hidden;
}
.about-page-hero__panel--reference .about-page-hero__image img {
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:0;
  transform:scale(1.015);
  transition:transform 1.1s cubic-bezier(.16,1,.3,1),filter .8s ease;
}
.about-page-hero__panel--reference:hover .about-page-hero__image img { transform:scale(1.055); filter:saturate(1.04); }
.about-page-hero__copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px 54px;
  color:#07221b;
}
.about-page-hero__panel--reference h1 {
  margin:0 0 18px;
  font-family:var(--heading);
  font-size:32px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.02em;
  text-transform:uppercase;
}
.about-page-hero__panel--reference p {
  max-width:520px;
  margin:0;
  font-family:var(--body);
  font-size:16px;
  line-height:1.58;
  color:#0e3228;
}

.about-transform { padding-top:64px; padding-bottom:80px; }
.about-transform > .section-heading,
.about-guides > .section-heading,
.vision-mission-section > .section-heading,
.office-section--reference > .section-heading,
.founder-section--reference > .section-heading,
.journey-scroll > .section-heading { margin-bottom:38px; }
.about-transform__panel--v6 {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:70px;
  align-items:center;
  min-height:430px;
  padding:58px 66px;
  border-radius:42px;
  background:
    radial-gradient(circle at 3% 100%,rgba(23,107,82,.32),transparent 38%),
    linear-gradient(124deg,#17242c 0%,#10191f 55%,#111a20 100%);
  color:#fff;
  box-shadow:0 22px 60px rgba(8,35,30,.08);
}
.about-transform__panel--v6 .about-transform-title h3 {
  max-width:360px;
  margin:0;
  font-family:var(--heading);
  font-size:36px;
  line-height:1.14;
  font-weight:400;
  color:#37bf89;
}
.about-transform__panel--v6 .about-transform-list { display:grid; align-content:center; }
.about-transform__panel--v6 .about-transform-line {
  display:grid;
  grid-template-columns:40px 1fr;
  gap:12px;
  align-items:center;
  min-height:48px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.28);
  opacity:.78;
  transform:translateX(0);
  transition:opacity .35s ease,padding-left .35s ease,border-color .35s ease,transform .35s ease;
}
.about-transform__panel--v6 .about-transform-line:first-child { border-top:1px solid rgba(255,255,255,.28); }
.about-transform__panel--v6 .about-transform-line:hover {
  opacity:1;
  padding-left:8px;
  border-color:rgba(57,189,134,.82);
}
.about-transform__panel--v6 .about-transform-line span {
  font-family:var(--heading);
  font-size:11px;
  color:#39bd86;
  opacity:.7;
}
.about-transform__panel--v6 .about-transform-line p {
  margin:0;
  font-family:var(--body);
  font-size:14px;
  line-height:1.42;
  color:rgba(255,255,255,.92);
}

.about-guides { padding-top:58px; padding-bottom:84px; }
.about-guide-grid--reference {
  width:min(900px,100%);
  margin-inline:auto;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.about-guide-grid--reference .about-guide-card {
  min-height:360px;
  padding:38px 28px 34px;
  border-radius:25px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  justify-content:flex-start;
  box-shadow:0 12px 28px rgba(10,35,30,.06);
}
.about-guide-grid--reference .about-guide-card:nth-child(1) {
  color:#fff;
  background:linear-gradient(150deg,#026f59 0%,#0c594d 65%,#0f3b35 100%);
}
.about-guide-grid--reference .about-guide-card:nth-child(2) {
  color:#111b20;
  background:#fff;
  border:1px solid #e8e8e8;
}
.about-guide-grid--reference .about-guide-card:nth-child(3) {
  color:#fff;
  background:#11181e;
}
.about-guide-grid--reference .about-guide-icon {
  width:64px;
  height:64px;
  margin:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:currentColor;
  background:transparent;
}
.about-guide-grid--reference .about-guide-icon svg { width:46px; height:46px; }
.about-guide-grid--reference .about-guide-card h3 {
  margin:0 0 20px;
  font-family:var(--heading);
  font-size:18px;
  line-height:1.35;
  font-weight:600;
}
.about-guide-grid--reference .about-guide-card p {
  margin:0;
  font-family:var(--body);
  font-size:14px;
  line-height:1.56;
  color:inherit;
  opacity:.84;
}

/* Journey: pinned years + vertically travelling image stack */
.journey-scroll {
  height:315vh;
  padding-top:56px;
  padding-bottom:92px;
}
.journey-scroll > .section-heading { position:relative; z-index:2; }
.journey-sticky {
  position:sticky;
  top:105px;
}
.journey-design-panel {
  display:grid;
  grid-template-columns:1.04fr .92fr .76fr;
  gap:24px;
  align-items:stretch;
  min-height:610px;
  padding:42px 48px;
  overflow:hidden;
  border-radius:31px;
  background:
    radial-gradient(circle at 0% 100%,rgba(14,83,68,.22),transparent 40%),
    linear-gradient(118deg,#172129 0%,#0f151a 55%,#070a0d 100%);
  color:#fff;
  box-shadow:0 24px 70px rgba(4,25,22,.10);
}
.journey-years {
  position:relative;
  display:grid;
  align-content:center;
  gap:4px;
  padding-left:26px;
}
.journey-years::before {
  content:'';
  position:absolute;
  left:8px;
  top:56px;
  bottom:54px;
  width:1px;
  background:linear-gradient(to bottom,transparent,#36be88 9%,#36be88 91%,transparent);
}
.journey-years article {
  position:relative;
  min-height:102px;
  padding:8px 0 12px;
  opacity:.4;
  transform:translateX(0);
  transition:opacity .55s ease,transform .65s cubic-bezier(.16,1,.3,1);
}
.journey-years article.is-active { opacity:1; transform:translateX(8px); }
.journey-dot {
  position:absolute;
  left:-22px;
  top:18px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#36be88;
  box-shadow:0 0 0 0 rgba(54,190,136,.15);
  transition:transform .4s ease,box-shadow .4s ease;
}
.journey-years article.is-active .journey-dot { transform:scale(1.3); box-shadow:0 0 0 7px rgba(54,190,136,.12); }
.journey-years small {
  display:block;
  margin-bottom:2px;
  color:#33ba84;
  font-family:var(--body);
  font-size:10px;
  letter-spacing:.02em;
}
.journey-years h3 {
  margin:0 0 5px;
  color:#38bd87;
  font-family:var(--heading);
  font-size:18px;
  line-height:1.25;
  font-weight:400;
}
.journey-years p {
  max-width:360px;
  margin:0;
  color:rgba(255,255,255,.72);
  font-family:var(--body);
  font-size:11px;
  line-height:1.45;
}
.journey-media {
  position:relative;
  height:526px;
  overflow:hidden;
  align-self:center;
  perspective:1000px;
}
.journey-media::before,
.journey-media::after {
  content:'';
  position:absolute;
  z-index:6;
  left:0;
  right:0;
  height:68px;
  pointer-events:none;
}
.journey-media::before { top:0; background:linear-gradient(#10171d,transparent); }
.journey-media::after { bottom:0; background:linear-gradient(transparent,#0d1318); }
.journey-media-card {
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:190px;
  overflow:hidden;
  border-radius:18px;
  clip-path:polygon(8% 0,100% 0,92% 100%,0 100%);
  transform-origin:center;
  transition:transform .85s cubic-bezier(.16,1,.3,1),opacity .45s ease;
  will-change:transform,opacity;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}
.journey-media-card:nth-child(even) { clip-path:polygon(0 0,92% 0,100% 100%,8% 100%); }
.journey-media-card img { width:100%; height:100%; object-fit:cover; }
.journey-caption {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-self:center;
  min-height:230px;
  padding:28px 0 28px 8px;
}
.journey-caption span {
  display:inline-flex;
  width:max-content;
  margin-bottom:6px;
  color:#38bd87;
  font-family:var(--heading);
  font-size:13px;
}
.journey-caption h3 {
  margin:0 0 12px;
  color:#38bd87;
  font-family:var(--heading);
  font-size:18px;
  line-height:1.28;
  font-weight:400;
}
.journey-caption p {
  max-width:240px;
  margin:0;
  color:rgba(255,255,255,.67);
  font-family:var(--body);
  font-size:12px;
  line-height:1.48;
}

.vision-mission-section { padding-top:72px; padding-bottom:76px; }
.vision-reference-grid {
  display:grid;
  grid-template-columns:.82fr 1.35fr .82fr;
  width:min(980px,100%);
  min-height:338px;
  margin-inline:auto;
  overflow:hidden;
  background:#121a20;
}
.vision-reference-card {
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:48px 32px;
  background:#141d23;
  color:#fff;
  text-align:center;
}
.vision-reference-card h3 {
  margin:0 0 24px;
  color:#36be88;
  font-family:var(--heading);
  font-size:28px;
  line-height:1.15;
  font-weight:400;
  letter-spacing:.02em;
}
.vision-reference-card p {
  margin:0;
  font-family:var(--body);
  font-size:14px;
  line-height:1.56;
  color:rgba(255,255,255,.82);
}
.vision-reference-image { position:relative; overflow:hidden; }
.vision-reference-image::before,
.vision-reference-image::after {
  content:'';
  position:absolute;
  z-index:2;
  top:0;
  bottom:0;
  width:34px;
  pointer-events:none;
}
.vision-reference-image::before { left:-1px; background:linear-gradient(76deg,#141d23 0 48%,transparent 50%); }
.vision-reference-image::after { right:-1px; background:linear-gradient(104deg,transparent 0 48%,#141d23 50%); }
.vision-reference-image img {
  width:100%;
  height:100%;
  min-height:338px;
  object-fit:cover;
  transition:transform .9s cubic-bezier(.16,1,.3,1),filter .6s ease;
}
.vision-reference-grid:hover .vision-reference-image img { transform:scale(1.045); filter:saturate(1.05); }

.office-section--reference { padding-top:58px; padding-bottom:72px; }
.office-reference-grid {
  display:grid;
  grid-template-columns:.9fr 1.45fr .9fr;
  width:min(1000px,100%);
  height:305px;
  margin-inline:auto;
  overflow:hidden;
  background:#111;
}
.office-reference-image { position:relative; overflow:hidden; }
.office-reference-image--1 { clip-path:polygon(0 0,100% 0,88% 100%,0 100%); margin-right:-28px; z-index:1; }
.office-reference-image--2 { clip-path:polygon(7% 0,96% 0,100% 100%,0 100%); z-index:2; }
.office-reference-image--3 { clip-path:polygon(12% 0,100% 0,100% 100%,0 100%); margin-left:-28px; z-index:1; }
.office-reference-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.16,1,.3,1),filter .5s ease;
}
.office-reference-image:hover img { transform:scale(1.075); filter:saturate(1.05); }

.founder-section--reference { padding-top:70px; padding-bottom:78px; }
.founder-reference-card {
  display:grid;
  grid-template-columns:1.06fr .94fr;
  width:min(980px,100%);
  min-height:430px;
  margin-inline:auto;
  overflow:hidden;
  border-radius:42px;
  background:
    radial-gradient(circle at 0 100%,rgba(16,92,73,.32),transparent 46%),
    linear-gradient(125deg,#17302c 0%,#111a1f 48%,#0e1519 100%);
  color:#fff;
  box-shadow:0 22px 58px rgba(8,35,30,.09);
}
.founder-reference-copy {
  display:grid;
  align-content:center;
  gap:22px;
  padding:46px 50px;
}
.founder-reference-copy article { max-width:430px; }
.founder-reference-copy h3 {
  margin:0 0 8px;
  color:#38bd87;
  font-family:var(--heading);
  font-size:21px;
  line-height:1.28;
  font-weight:400;
}
.founder-reference-copy p,
.founder-reference-copy li {
  font-family:var(--body);
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.78);
}
.founder-reference-copy p { margin:0; }
.founder-reference-copy ul { margin:0; padding-left:18px; }
.founder-reference-image {
  position:relative;
  min-height:430px;
  margin-left:-34px;
  overflow:hidden;
  clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);
}
.founder-reference-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(1) contrast(1.04);
  transition:transform .85s cubic-bezier(.16,1,.3,1),filter .6s ease;
}
.founder-reference-card:hover .founder-reference-image img { transform:scale(1.055); filter:grayscale(.88) contrast(1.05); }

/* Floating back-to-top control */
.bm-scroll-top {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:160;
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  background:linear-gradient(145deg,#38bf89,#087653);
  color:#fff;
  font-family:var(--heading);
  font-size:23px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(6,91,65,.24);
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.88);
  transition:opacity .3s ease,visibility .3s ease,transform .4s cubic-bezier(.16,1,.3,1),box-shadow .3s ease;
}
.bm-scroll-top.is-visible { opacity:1; visibility:visible; transform:none; }
.bm-scroll-top:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(6,91,65,.32); }
.bm-scroll-top:focus-visible { outline:3px solid rgba(57,189,134,.35); outline-offset:3px; }

/* About-page motion polish */
.about-transform__panel--v6.is-visible .about-transform-line { animation:bmAboutLine .7s cubic-bezier(.16,1,.3,1) both; }
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(1){animation-delay:.08s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(2){animation-delay:.13s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(3){animation-delay:.18s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(4){animation-delay:.23s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(5){animation-delay:.28s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(6){animation-delay:.33s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(7){animation-delay:.38s}
.about-transform__panel--v6.is-visible .about-transform-line:nth-child(8){animation-delay:.43s}
@keyframes bmAboutLine { from{opacity:0;transform:translateX(26px)} to{opacity:.78;transform:none} }

@media (max-width:1100px) {
  .about-page-hero,
  .about-transform,
  .about-guides,
  .journey-scroll,
  .vision-mission-section,
  .office-section--reference,
  .founder-section--reference { width:calc(100% - 48px); }
  .about-page-hero__copy { padding:42px 38px; }
  .about-transform__panel--v6 { padding:50px 44px; gap:42px; }
  .journey-design-panel { padding:36px 34px; grid-template-columns:1fr .88fr .72fr; }
}

@media (max-width:900px) {
  .about-page-hero { padding-top:36px; }
  .about-page-hero__panel--reference { grid-template-columns:1fr; }
  .about-page-hero__image,
  .about-page-hero__panel--reference .about-page-hero__image img { min-height:340px; height:340px; }
  .about-page-hero__copy { padding:38px 34px 42px; }
  .about-page-hero__panel--reference h1 { font-size:30px; }
  .about-transform__panel--v6 { grid-template-columns:1fr; min-height:0; }
  .about-transform__panel--v6 .about-transform-title h3 { max-width:none; }
  .about-guide-grid--reference { grid-template-columns:1fr; max-width:560px; }
  .about-guide-grid--reference .about-guide-card { min-height:0; }

  .journey-scroll { height:auto; }
  .journey-sticky { position:static; }
  .journey-design-panel { grid-template-columns:1fr; min-height:0; padding:34px; }
  .journey-years { order:1; padding:0 0 20px 24px; }
  .journey-years::before { left:5px; top:14px; bottom:34px; }
  .journey-years article { opacity:1; min-height:0; padding:8px 0 18px; }
  .journey-years article.is-active { transform:none; }
  .journey-dot { left:-23px; }
  .journey-media { order:2; height:auto; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; overflow:visible; }
  .journey-media::before,.journey-media::after { display:none; }
  .journey-media-card,
  .journey-media-card:nth-child(even) {
    position:relative;
    inset:auto;
    width:100%;
    height:190px;
    opacity:1!important;
    transform:none!important;
    clip-path:none;
    border-radius:16px;
  }
  .journey-media-card:nth-child(n+4) { display:none; }
  .journey-caption { order:3; min-height:0; padding:28px 0 0; }

  .vision-reference-grid { grid-template-columns:1fr; max-width:620px; }
  .vision-reference-card { min-height:245px; }
  .vision-reference-image { min-height:350px; order:2; }
  .vision-reference-card--vision { order:1; }
  .vision-reference-card--mission { order:3; }
  .vision-reference-image::before,.vision-reference-image::after { display:none; }
  .office-reference-grid { height:auto; grid-template-columns:1fr; max-width:620px; background:transparent; gap:12px; overflow:visible; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { clip-path:none; margin:0; height:250px; border-radius:18px; }
  .founder-reference-card { grid-template-columns:1fr; max-width:680px; }
  .founder-reference-image { margin-left:0; min-height:400px; clip-path:none; }
}

@media (max-width:600px) {
  .about-page-hero,
  .about-transform,
  .about-guides,
  .journey-scroll,
  .vision-mission-section,
  .office-section--reference,
  .founder-section--reference { width:calc(100% - 28px); }
  .about-page-hero { padding-top:22px; padding-bottom:58px; }
  .about-page-hero__panel--reference { border-radius:24px; }
  .about-page-hero__image,
  .about-page-hero__panel--reference .about-page-hero__image img { height:260px; min-height:260px; }
  .about-page-hero__copy { padding:28px 24px 32px; }
  .about-page-hero__panel--reference h1 { font-size:24px; line-height:1.2; }
  .about-page-hero__panel--reference p { font-size:14px; }
  .about-transform,.about-guides,.vision-mission-section,.office-section--reference,.founder-section--reference { padding-top:48px; padding-bottom:56px; }
  .about-transform__panel--v6 { padding:32px 24px; border-radius:26px; gap:28px; }
  .about-transform__panel--v6 .about-transform-title h3 { font-size:27px; }
  .about-transform__panel--v6 .about-transform-line { grid-template-columns:30px 1fr; }
  .about-guide-grid--reference .about-guide-card { padding:30px 24px; border-radius:22px; }
  .journey-scroll { padding-top:44px; padding-bottom:58px; }
  .journey-design-panel { padding:24px 20px; border-radius:24px; }
  .journey-media { grid-template-columns:1fr; }
  .journey-media-card { height:220px; }
  .journey-media-card:nth-child(n+2) { display:none; }
  .vision-reference-card { padding:34px 24px; min-height:210px; }
  .vision-reference-card h3 { font-size:24px; }
  .vision-reference-image { min-height:280px; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { height:205px; }
  .founder-reference-card { border-radius:28px; }
  .founder-reference-copy { padding:34px 25px; }
  .founder-reference-image { min-height:320px; }
  .bm-scroll-top { width:46px; height:46px; right:16px; bottom:16px; }
}

@media (prefers-reduced-motion:reduce) {
  .about-transform__panel--v6.is-visible .about-transform-line { animation:none; }
  .about-page-hero__panel--reference img,
  .vision-reference-image img,
  .office-reference-image img,
  .founder-reference-image img { transition:none; }
  .bm-scroll-top { transition:none; }
}

/* ==========================================================
   Beacon Minds About page — screenshot match revision 7
   Reference: supplied About Us desktop compositions
   ========================================================== */

/* Keep homepage typography system, tighten only About layout */
.about-page-hero,
.about-transform,
.about-guides,
.journey-scroll,
.vision-mission-section,
.office-section--reference,
.founder-section--reference {
  width:min(1080px,calc(100% - 64px));
}

.about-page-hero {
  position:relative;
  padding-top:38px;
  padding-bottom:74px;
}
.about-page-hero::before {
  content:'';
  position:absolute;
  z-index:-1;
  inset:0 -7vw -20px;
  background:
    linear-gradient(100deg,transparent 0 20%,rgba(31,117,91,.025) 20.3% 20.8%,transparent 21.1% 100%),
    radial-gradient(circle at 50% 12%,rgba(49,190,135,.055),transparent 34%);
  pointer-events:none;
}
.about-page-hero .breadcrumb { margin-bottom:22px; }
.about-page-hero__panel--reference {
  width:min(1000px,100%);
  min-height:390px;
  margin-inline:auto;
  grid-template-columns:48% 52%;
  border-radius:38px;
  background:linear-gradient(132deg,#46c290 0%,#3abd86 62%,#31b47c 100%);
  box-shadow:none;
}
.about-page-hero__image { min-height:390px; }
.about-page-hero__panel--reference .about-page-hero__image img {
  min-height:390px;
  transform:scale(1.01);
  object-position:center;
  clip-path:polygon(0 0,100% 0,100% 84%,91% 100%,0 100%);
}
.about-page-hero__copy { padding:43px 44px 42px 48px; }
.about-page-hero__panel--reference h1 {
  font-family:var(--heading);
  font-size:32px;
  line-height:1.11;
  font-weight:400;
  letter-spacing:-.025em;
  margin:0 0 18px;
}
.about-page-hero__panel--reference p {
  font-family:var(--body);
  font-size:15px;
  line-height:1.48;
  max-width:430px;
}
.about-page-hero__panel--reference.is-visible .about-page-hero__image { animation:bmAboutHeroImage .9s cubic-bezier(.16,1,.3,1) both; }
.about-page-hero__panel--reference.is-visible .about-page-hero__copy { animation:bmAboutHeroCopy .85s .12s cubic-bezier(.16,1,.3,1) both; }
@keyframes bmAboutHeroImage { from{opacity:0;clip-path:inset(0 16% 0 0 round 34px)} to{opacity:1;clip-path:inset(0 0 0 0 round 0)} }
@keyframes bmAboutHeroCopy { from{opacity:0;transform:translateX(34px)} to{opacity:1;transform:none} }

/* Transforming Brands: left statement + exactly eight editable lines on the right */
.about-transform { padding-top:48px; padding-bottom:74px; }
.about-transform > .section-heading { margin-bottom:34px; }
.about-transform__panel--v6 {
  width:min(930px,100%);
  min-height:420px;
  margin-inline:auto;
  grid-template-columns:41% 59%;
  gap:52px;
  padding:50px 58px;
  border-radius:38px;
  background:
    radial-gradient(circle at 0 100%,rgba(22,100,77,.35),transparent 40%),
    linear-gradient(120deg,#18242b 0%,#121b21 54%,#11191f 100%);
  box-shadow:none;
}
.about-transform__panel--v6 .about-transform-title h3 {
  max-width:290px;
  font-family:var(--heading);
  font-size:36px;
  line-height:1.08;
  font-weight:400;
  color:#36bd87;
}
.about-transform__panel--v6 .about-transform-list { min-width:0; }
.about-transform__panel--v6 .about-transform-line {
  grid-template-columns:0 1fr;
  gap:0;
  min-height:39px;
  padding:7px 0;
  border-color:rgba(255,255,255,.42);
}
.about-transform__panel--v6 .about-transform-line span { display:none; }
.about-transform__panel--v6 .about-transform-line p {
  font-family:var(--body);
  font-size:13px;
  line-height:1.34;
  color:rgba(255,255,255,.88);
}
.about-transform__panel--v6 .about-transform-line:hover { padding-left:7px; }

/* What guides us: 3-column reference cards */
.about-guides { padding-top:48px; padding-bottom:82px; }
.about-guides > .section-heading { margin-bottom:34px; }
.about-guide-grid--reference {
  width:min(900px,100%);
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.about-guide-grid--reference .about-guide-card {
  min-height:345px;
  padding:34px 25px 30px;
  border-radius:22px;
  box-shadow:0 8px 18px rgba(8,32,26,.08);
  transition:transform .5s cubic-bezier(.16,1,.3,1),box-shadow .45s ease,filter .45s ease;
}
.about-guide-grid--reference .about-guide-card:hover {
  transform:translateY(-10px);
  box-shadow:0 20px 42px rgba(8,32,26,.13);
}
.about-guide-grid--reference .about-guide-icon { width:58px;height:58px;margin-bottom:21px; }
.about-guide-grid--reference .about-guide-icon svg { width:42px;height:42px; }
.about-guide-grid--reference .about-guide-card h3 {
  font-family:var(--heading);
  font-size:18px;
  line-height:1.3;
  font-weight:600;
  margin-bottom:17px;
}
.about-guide-grid--reference .about-guide-card p {
  font-family:var(--body);
  font-size:14px;
  line-height:1.5;
}

/* Journey: screenshot layout + sticky scroll-driven years and image reel */
.journey-scroll {
  height:365vh;
  padding-top:54px;
  padding-bottom:88px;
}
.journey-scroll > .section-heading { margin-bottom:30px; }
.journey-sticky { top:88px; }
.journey-design-panel {
  width:min(1000px,100%);
  min-height:520px;
  margin-inline:auto;
  grid-template-columns:38% 35% 27%;
  gap:8px;
  padding:26px 34px 26px 46px;
  border-radius:27px;
  background:
    radial-gradient(circle at 0 100%,rgba(8,84,66,.22),transparent 43%),
    linear-gradient(112deg,#172129 0%,#0e151a 55%,#050709 100%);
  box-shadow:none;
}
.journey-years { gap:0;padding-left:18px; }
.journey-years::before { left:4px;top:37px;bottom:39px; }
.journey-years article {
  min-height:88px;
  padding:5px 0 9px;
  opacity:.48;
}
.journey-years article.is-active { transform:translateX(6px); }
.journey-dot { left:-17px;top:12px;width:6px;height:6px; }
.journey-years small { font-size:9px;line-height:1.2; }
.journey-years h3 { font-size:16px;line-height:1.16;margin-bottom:4px; }
.journey-years p { max-width:300px;font-size:10px;line-height:1.34; }
.journey-media {
  height:470px;
  overflow:hidden;
  align-self:center;
  margin-inline:-9px;
}
.journey-media::before,.journey-media::after { height:38px; }
.journey-media-card {
  top:50%;
  left:3%;
  width:94%;
  height:160px;
  margin-top:-80px;
  border-radius:14px;
  clip-path:polygon(7% 0,100% 0,91% 100%,0 100%);
  transition:transform .35s linear,opacity .3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.26);
}
.journey-media-card:nth-child(even) { clip-path:polygon(0 0,91% 0,100% 100%,8% 100%); }
.journey-caption {
  align-self:center;
  min-height:170px;
  padding:22px 0 22px 16px;
  animation:bmJourneyCaption .48s cubic-bezier(.16,1,.3,1) both;
}
.journey-caption-heading { display:flex;align-items:center;gap:8px; }
.journey-caption-heading h3 {
  margin:0;
  font-family:var(--heading);
  font-size:15px;
  line-height:1.25;
  font-weight:400;
  color:#36bd87;
}
.journey-caption .journey-info {
  width:17px;height:17px;margin:0;
  display:grid;place-items:center;
  border-radius:50%;
  background:#36bd87;color:#081713;
  font:600 10px/1 var(--body);
}
.journey-caption small {
  margin-top:7px;
  color:#b58f47;
  font-family:var(--body);
  font-size:8px;
  letter-spacing:.035em;
}
.journey-caption p {
  max-width:180px;
  margin-top:9px;
  font-size:10px;
  line-height:1.35;
}
@keyframes bmJourneyCaption { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }

/* Vision / Mission reference proportions */
.vision-mission-section { padding-top:62px;padding-bottom:70px; }
.vision-reference-grid {
  width:min(930px,100%);
  min-height:315px;
  grid-template-columns:30% 40% 30%;
}
.vision-reference-card { min-height:315px;padding:43px 28px; }
.vision-reference-card h3 { font-size:25px; }
.vision-reference-card p { font-size:13px;line-height:1.48; }
.vision-reference-image img { min-height:315px; }

/* Office Images: three connected panels with angled joins */
.office-section--reference { padding-top:52px;padding-bottom:68px; }
.office-section--reference > .section-heading { margin-bottom:31px; }
.office-reference-grid {
  width:min(940px,100%);
  height:310px;
  grid-template-columns:24% 52% 24%;
  border-radius:0;
  background:transparent;
}
.office-reference-image--1 { clip-path:polygon(0 0,100% 0,88% 100%,0 100%);margin-right:-24px; }
.office-reference-image--2 { clip-path:polygon(7% 0,96% 0,100% 100%,0 100%); }
.office-reference-image--3 { clip-path:polygon(12% 0,100% 0,100% 100%,0 100%);margin-left:-24px; }
.office-reference-grid.is-visible .office-reference-image--1 { animation:bmOfficeLeft .8s cubic-bezier(.16,1,.3,1) both; }
.office-reference-grid.is-visible .office-reference-image--2 { animation:bmOfficeCenter .85s .08s cubic-bezier(.16,1,.3,1) both; }
.office-reference-grid.is-visible .office-reference-image--3 { animation:bmOfficeRight .8s .14s cubic-bezier(.16,1,.3,1) both; }
@keyframes bmOfficeLeft { from{opacity:0;transform:translateX(-38px)} to{opacity:1;transform:none} }
@keyframes bmOfficeCenter { from{opacity:0;transform:scale(.94)} to{opacity:1;transform:none} }
@keyframes bmOfficeRight { from{opacity:0;transform:translateX(38px)} to{opacity:1;transform:none} }

/* Founder panel: same split and angled monochrome portrait as supplied reference */
.founder-section--reference { padding-top:62px;padding-bottom:72px; }
.founder-section--reference > .section-heading { margin-bottom:30px; }
.founder-reference-card {
  width:min(900px,100%);
  min-height:390px;
  grid-template-columns:47% 53%;
  border-radius:34px;
  background:
    radial-gradient(circle at 0 100%,rgba(7,92,70,.27),transparent 48%),
    linear-gradient(120deg,#17242a 0%,#11191e 58%,#0d1216 100%);
  box-shadow:none;
}
.founder-reference-copy { gap:18px;padding:38px 42px 36px 46px; }
.founder-reference-copy article { max-width:350px; }
.founder-reference-copy h3 { font-size:18px;line-height:1.25;margin-bottom:7px; }
.founder-reference-copy p,.founder-reference-copy li { font-size:11px;line-height:1.43; }
.founder-reference-image {
  min-height:390px;
  margin-left:-24px;
  clip-path:polygon(10% 0,100% 0,100% 100%,0 100%);
}
.founder-reference-card.is-visible .founder-reference-copy article:nth-child(1) { animation:bmFounderCopy .65s .05s cubic-bezier(.16,1,.3,1) both; }
.founder-reference-card.is-visible .founder-reference-copy article:nth-child(2) { animation:bmFounderCopy .65s .14s cubic-bezier(.16,1,.3,1) both; }
.founder-reference-card.is-visible .founder-reference-copy article:nth-child(3) { animation:bmFounderCopy .65s .23s cubic-bezier(.16,1,.3,1) both; }
.founder-reference-card.is-visible .founder-reference-image { animation:bmFounderImage .9s .08s cubic-bezier(.16,1,.3,1) both; }
@keyframes bmFounderCopy { from{opacity:0;transform:translateX(-22px)} to{opacity:1;transform:none} }
@keyframes bmFounderImage { from{opacity:0;clip-path:polygon(35% 0,100% 0,100% 100%,24% 100%)} to{opacity:1;clip-path:polygon(10% 0,100% 0,100% 100%,0 100%)} }

/* Back-to-top must stay visible above all sections */
.bm-scroll-top { z-index:999; }
.bm-scroll-top span { transform:translateY(-1px); }

@media (max-width:1100px) {
  .about-transform__panel--v6 { gap:38px;padding:46px 46px; }
  .journey-design-panel { padding-inline:32px; }
}

@media (max-width:900px) {
  .about-page-hero__panel--reference { width:min(680px,100%);grid-template-columns:1fr; }
  .about-page-hero__image,.about-page-hero__panel--reference .about-page-hero__image img { min-height:340px;height:340px; }
  .about-page-hero__panel--reference .about-page-hero__image img { clip-path:none; }
  .about-page-hero__copy { padding:36px 34px 40px; }
  .about-transform__panel--v6 { width:min(680px,100%);grid-template-columns:1fr;gap:28px; }
  .about-guide-grid--reference { grid-template-columns:1fr;max-width:560px;gap:16px; }
  .about-guide-grid--reference .about-guide-card { min-height:0; }

  .journey-scroll { height:auto; }
  .journey-sticky { position:static; }
  .journey-design-panel { width:min(680px,100%);grid-template-columns:1fr;min-height:0;padding:30px; }
  .journey-years { order:1;padding-left:23px; }
  .journey-years article { min-height:0;padding:7px 0 18px;opacity:1; }
  .journey-media { order:2;height:auto;display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin:8px 0 0;overflow:visible; }
  .journey-media::before,.journey-media::after { display:none; }
  .journey-media-card,.journey-media-card:nth-child(even) { position:relative;top:auto;left:auto;width:100%;height:175px;margin:0;opacity:1!important;transform:none!important;clip-path:none;border-radius:15px; }
  .journey-media-card:nth-child(n+4) { display:none; }
  .journey-caption { order:3;padding:23px 0 0;min-height:0; }
  .journey-caption p { max-width:380px; }

  .vision-reference-grid { width:min(680px,100%);grid-template-columns:1fr; }
  .vision-reference-card,.vision-reference-image { min-height:280px; }
  .office-reference-grid { width:min(680px,100%);height:auto;grid-template-columns:1fr;gap:10px; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { height:235px;clip-path:none;margin:0;border-radius:18px; }
  .founder-reference-card { width:min(680px,100%);grid-template-columns:1fr; }
  .founder-reference-image { min-height:380px;margin-left:0;clip-path:none; }
}

@media (max-width:600px) {
  .about-page-hero,.about-transform,.about-guides,.journey-scroll,.vision-mission-section,.office-section--reference,.founder-section--reference { width:calc(100% - 28px); }
  .about-page-hero { padding-top:22px;padding-bottom:48px; }
  .about-page-hero__panel--reference { border-radius:25px; }
  .about-page-hero__image,.about-page-hero__panel--reference .about-page-hero__image img { height:250px;min-height:250px; }
  .about-page-hero__copy { padding:27px 23px 30px; }
  .about-page-hero__panel--reference h1 { font-size:26px; }
  .about-page-hero__panel--reference p { font-size:14px; }
  .about-transform__panel--v6 { padding:30px 23px;border-radius:25px; }
  .about-transform__panel--v6 .about-transform-title h3 { font-size:28px; }
  .about-transform__panel--v6 .about-transform-line { min-height:43px; }
  .about-guide-grid--reference .about-guide-card { padding:29px 23px; }
  .journey-design-panel { padding:22px 18px;border-radius:23px; }
  .journey-media { grid-template-columns:1fr; }
  .journey-media-card { height:220px!important; }
  .journey-media-card:nth-child(n+2) { display:none; }
  .vision-reference-card { min-height:220px;padding:32px 23px; }
  .vision-reference-image { min-height:260px; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { height:205px; }
  .founder-reference-card { border-radius:27px; }
  .founder-reference-copy { padding:32px 24px; }
  .founder-reference-image { min-height:315px; }
}

@media (prefers-reduced-motion:reduce) {
  .about-page-hero__panel--reference.is-visible .about-page-hero__image,
  .about-page-hero__panel--reference.is-visible .about-page-hero__copy,
  .journey-caption,
  .office-reference-grid.is-visible .office-reference-image--1,
  .office-reference-grid.is-visible .office-reference-image--2,
  .office-reference-grid.is-visible .office-reference-image--3,
  .founder-reference-card.is-visible .founder-reference-copy article,
  .founder-reference-card.is-visible .founder-reference-image { animation:none!important; }
}

/* ==========================================================
   Beacon Minds About page — consistency revision 8
   Keep the About page on the same scale/rhythm as Homepage.
   ========================================================== */

/* Shared About section scale = homepage section scale */
.about-page-hero,
.about-transform,
.about-guides,
.journey-scroll,
.vision-mission-section,
.office-section--reference,
.founder-section--reference {
  width:min(1180px,calc(100% - 64px));
  margin-left:auto;
  margin-right:auto;
}
.about-transform > .section-heading h2,
.about-guides > .section-heading h2,
.journey-scroll > .section-heading h2,
.vision-mission-section > .section-heading h2,
.office-section--reference > .section-heading h2,
.founder-section--reference > .section-heading h2 {
  font-size:36px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.8px;
}
.about-transform > .section-heading,
.about-guides > .section-heading,
.journey-scroll > .section-heading,
.vision-mission-section > .section-heading,
.office-section--reference > .section-heading,
.founder-section--reference > .section-heading {
  margin-bottom:44px;
}

/* Hero: same generous width and visual weight as homepage sections */
.about-page-hero {
  padding-top:42px;
  padding-bottom:86px;
}
.about-page-hero__panel--reference {
  width:min(1120px,100%);
  min-height:455px;
  grid-template-columns:48% 52%;
  border-radius:42px;
  overflow:hidden;
}
.about-page-hero__image,
.about-page-hero__panel--reference .about-page-hero__image img {
  min-height:455px;
  height:455px;
}
.about-page-hero__panel--reference .about-page-hero__image img {
  object-fit:cover;
  object-position:center;
  clip-path:polygon(0 0,100% 0,100% 84%,91% 100%,0 100%);
}
.about-page-hero__copy {
  padding:52px 54px 48px;
}
.about-page-hero__panel--reference h1 {
  font-size:32px;
  line-height:1.18;
  font-weight:400;
  letter-spacing:-.4px;
}
.about-page-hero__panel--reference p {
  font-size:16px;
  line-height:1.55;
}

/* Transform panel: wide horizontal reference composition; 8 rows remain editable */
.about-transform {
  padding-top:54px;
  padding-bottom:82px;
}
.about-transform__panel--v6 {
  width:min(1060px,100%);
  min-height:390px;
  grid-template-columns:38% 62%;
  gap:54px;
  padding:54px 62px;
  border-radius:38px;
  align-items:center;
}
.about-transform__panel--v6 .about-transform-title h3 {
  max-width:310px;
  font-size:36px;
  line-height:1.12;
  font-weight:400;
}
.about-transform__panel--v6 .about-transform-list {
  width:100%;
}
.about-transform__panel--v6 .about-transform-line {
  display:block;
  min-height:auto;
  padding:10px 0 9px;
  border-bottom:1px solid rgba(255,255,255,.34);
}
.about-transform__panel--v6 .about-transform-line p {
  margin:0;
  font-size:14px;
  line-height:1.32;
  white-space:normal;
}

/* Guides: homepage-like width, breathing room and typography */
.about-guides {
  padding-top:54px;
  padding-bottom:92px;
}
.about-guide-grid--reference {
  width:min(1040px,100%);
  margin-inline:auto;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.about-guide-grid--reference .about-guide-card {
  min-height:320px;
  padding:38px 30px 34px;
  border-radius:24px;
}
.about-guide-grid--reference .about-guide-card h3 {
  font-size:18px;
  line-height:1.32;
  font-weight:600;
}
.about-guide-grid--reference .about-guide-card p {
  font-size:14px;
  line-height:1.52;
}

/* Journey: normal page height. Images + active year still progress with scrolling. */
.journey-scroll {
  height:auto;
  padding-top:58px;
  padding-bottom:92px;
}
.journey-sticky {
  position:relative;
  top:auto;
  min-height:0;
}
.journey-design-panel {
  width:min(1080px,100%);
  min-height:550px;
  grid-template-columns:37% 36% 27%;
  gap:14px;
  padding:34px 42px 32px 52px;
  border-radius:30px;
}
.journey-years {
  padding-left:20px;
}
.journey-years article {
  min-height:94px;
  padding:7px 0 10px;
}
.journey-years small { font-size:10px; }
.journey-years h3 { font-size:17px; margin-bottom:5px; }
.journey-years p {
  max-width:300px;
  font-size:11px;
  line-height:1.4;
}
.journey-media {
  height:500px;
  margin-inline:-6px;
}
.journey-media-card {
  width:96%;
  left:2%;
  height:174px;
  margin-top:-87px;
  border-radius:16px;
}
.journey-caption {
  padding-left:22px;
}
.journey-caption-heading h3 {
  font-size:16px;
  line-height:1.3;
}
.journey-caption p {
  max-width:210px;
  font-size:11px;
  line-height:1.45;
}

/* Vision / Mission matches screenshot width instead of looking compressed */
.vision-mission-section {
  padding-top:58px;
  padding-bottom:82px;
}
.vision-reference-grid {
  width:min(1020px,100%);
  min-height:360px;
  grid-template-columns:31% 38% 31%;
  margin-inline:auto;
}
.vision-reference-card {
  min-height:360px;
  padding:48px 34px;
}
.vision-reference-card h3 { font-size:27px; }
.vision-reference-card p { font-size:14px; line-height:1.55; }
.vision-reference-image,
.vision-reference-image img { min-height:360px; height:360px; }
.vision-reference-image img { object-fit:cover; }

/* Office images: preserve the three-panel reference, at homepage scale */
.office-section--reference {
  padding-top:56px;
  padding-bottom:82px;
}
.office-reference-grid {
  width:min(1040px,100%);
  height:340px;
  grid-template-columns:24% 52% 24%;
  margin-inline:auto;
}
.office-reference-image img { height:100%; object-fit:cover; }

/* Founder: same size/radius/spacing language as the homepage dark feature blocks */
.founder-section--reference {
  padding-top:58px;
  padding-bottom:88px;
}
.founder-reference-card {
  width:min(1000px,100%);
  min-height:430px;
  grid-template-columns:46% 54%;
  margin-inline:auto;
  border-radius:38px;
}
.founder-reference-copy {
  gap:20px;
  padding:46px 46px 42px 52px;
}
.founder-reference-copy article { max-width:370px; }
.founder-reference-copy h3 {
  font-size:18px;
  font-weight:500;
  margin-bottom:8px;
}
.founder-reference-copy p,
.founder-reference-copy li {
  font-size:13px;
  line-height:1.5;
}
.founder-reference-image {
  min-height:430px;
}
.founder-reference-image img {
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* Keep About transitions restrained and consistent with homepage */
.about-page-hero__panel--reference,
.about-transform__panel--v6,
.about-guide-card,
.journey-design-panel,
.vision-reference-grid,
.office-reference-grid,
.founder-reference-card {
  transition-timing-function:cubic-bezier(.16,1,.3,1);
}

@media (max-width:1100px) {
  .about-page-hero__copy { padding:44px 40px; }
  .about-transform__panel--v6 { padding:48px 44px; gap:38px; }
  .journey-design-panel { padding-inline:34px; }
  .founder-reference-copy { padding:40px 36px; }
}

@media (max-width:900px) {
  .about-page-hero,
  .about-transform,
  .about-guides,
  .journey-scroll,
  .vision-mission-section,
  .office-section--reference,
  .founder-section--reference {
    width:min(680px,calc(100% - 40px));
  }
  .about-page-hero__panel--reference,
  .about-transform__panel--v6,
  .journey-design-panel,
  .vision-reference-grid,
  .office-reference-grid,
  .founder-reference-card {
    width:100%;
  }
  .about-page-hero__panel--reference { grid-template-columns:1fr; }
  .about-page-hero__image,
  .about-page-hero__panel--reference .about-page-hero__image img { height:360px; min-height:360px; }
  .about-page-hero__panel--reference .about-page-hero__image img { clip-path:none; }
  .about-transform__panel--v6 { grid-template-columns:1fr; min-height:0; }
  .about-transform__panel--v6 .about-transform-title h3 { max-width:520px; }
  .about-guide-grid--reference { grid-template-columns:1fr; max-width:560px; }
  .about-guide-grid--reference .about-guide-card { min-height:0; }
  .journey-design-panel { grid-template-columns:1fr; min-height:0; }
  .journey-years article { min-height:0; opacity:1; padding-bottom:18px; }
  .journey-media { height:auto; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:12px 0 0; overflow:visible; }
  .journey-media-card,.journey-media-card:nth-child(even) { position:relative; top:auto; left:auto; width:100%; height:180px; margin:0; opacity:1!important; transform:none!important; clip-path:none; border-radius:16px; }
  .journey-media-card:nth-child(n+4) { display:none; }
  .journey-caption { min-height:0; padding:24px 0 0; }
  .journey-caption p { max-width:480px; }
  .vision-reference-grid { grid-template-columns:1fr; }
  .vision-reference-card,.vision-reference-image,.vision-reference-image img { min-height:290px; height:auto; }
  .vision-reference-image img { height:320px; }
  .office-reference-grid { height:auto; grid-template-columns:1fr; gap:10px; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { height:240px; clip-path:none; margin:0; border-radius:18px; }
  .founder-reference-card { grid-template-columns:1fr; }
  .founder-reference-image { min-height:390px; margin:0; clip-path:none; }
}

@media (max-width:600px) {
  .about-page-hero,
  .about-transform,
  .about-guides,
  .journey-scroll,
  .vision-mission-section,
  .office-section--reference,
  .founder-section--reference { width:calc(100% - 28px); }
  .about-transform > .section-heading h2,
  .about-guides > .section-heading h2,
  .journey-scroll > .section-heading h2,
  .vision-mission-section > .section-heading h2,
  .office-section--reference > .section-heading h2,
  .founder-section--reference > .section-heading h2 { font-size:30px; }
  .about-page-hero__panel--reference h1 { font-size:27px; }
  .about-page-hero__image,
  .about-page-hero__panel--reference .about-page-hero__image img { height:270px; min-height:270px; }
  .about-page-hero__copy { padding:30px 24px 34px; }
  .about-transform__panel--v6 { padding:32px 24px; border-radius:26px; }
  .about-transform__panel--v6 .about-transform-title h3 { font-size:29px; }
  .about-guide-grid--reference .about-guide-card { padding:30px 24px; }
  .journey-design-panel { padding:24px 20px; border-radius:24px; }
  .journey-media { grid-template-columns:1fr; }
  .journey-media-card { height:225px!important; }
  .journey-media-card:nth-child(n+2) { display:none; }
  .vision-reference-card { min-height:230px; padding:34px 25px; }
  .vision-reference-image img { height:280px; }
  .office-reference-image--1,.office-reference-image--2,.office-reference-image--3 { height:210px; }
  .founder-reference-card { border-radius:28px; }
  .founder-reference-copy { padding:34px 26px; }
  .founder-reference-image { min-height:330px; }
}

/* =========================================================
   SERVICE DETAIL TEMPLATE V9 — screenshot matched
   Keeps the homepage typography, rhythm, FAQ, certificates,
   project form and footer while reproducing the supplied
   service-page composition.
   ========================================================= */
.svc9-page { --svc9-dark:#121c23; --svc9-soft:#f0f0f0; --svc9-max:1160px; background:#fff; }
.svc9-width { width:min(var(--svc9-max),calc(100% - 64px)); margin-left:auto; margin-right:auto; }
.svc9-section { padding:62px 0 76px; }
.svc9-heading { margin:0 0 42px; text-align:center; font-family:var(--heading); font-size:36px; line-height:1.2; font-weight:400; letter-spacing:-1px; }

/* Hero */
.svc9-hero { padding-top:30px; }
.svc9-breadcrumb { margin-bottom:22px; }
.svc9-breadcrumb .breadcrumb { margin:0; font-size:14px; color:#808886; }
.svc9-hero-grid { display:grid; grid-template-columns:.94fr 1.06fr; gap:14px; align-items:stretch; }
.svc9-hero-copy,.svc9-hero-media { position:relative; min-height:430px; overflow:hidden; color:#fff; background:var(--svc9-dark); }
.svc9-hero-copy { border-radius:30px 18px 30px 30px; padding:60px 58px 42px; display:flex; flex-direction:column; justify-content:center; }
.svc9-hero-copy::before { content:''; position:absolute; inset:auto -25% -40% 5%; height:70%; background:radial-gradient(circle,rgba(57,189,134,.18),transparent 67%); pointer-events:none; }
.svc9-kicker { position:relative; z-index:2; margin:0 0 24px; color:rgba(255,255,255,.58); font-size:12px; text-transform:uppercase; letter-spacing:.13em; }
.svc9-hero-copy h1 { position:relative; z-index:2; margin:0; max-width:420px; font-size:34px; line-height:1.2; font-weight:400; letter-spacing:-.9px; }
.svc9-hero-copy h1 span,.svc9-hero-copy h1 em { display:block; font-style:normal; }
.svc9-hero-copy h1 em { color:var(--service-accent); }
.svc9-explore { position:relative; z-index:2; display:inline-flex; align-items:center; gap:12px; align-self:flex-start; margin-top:58px; text-decoration:none; }
.svc9-explore > span { min-width:108px; min-height:38px; display:grid; place-items:center; padding:8px 20px; border-radius:99px; color:#fff; background:var(--service-accent); font-size:14px; transition:transform .3s ease,box-shadow .3s ease; }
.svc9-explore > b { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; color:#111; background:var(--yellow); font-weight:400; transition:transform .4s cubic-bezier(.16,1,.3,1); }
.svc9-explore:hover > span { transform:translateY(-2px); box-shadow:0 12px 24px rgba(57,189,134,.24); }
.svc9-explore:hover > b { transform:rotate(45deg); }
.svc9-hero-media { border-radius:18px 32px 32px 18px; clip-path:polygon(0 0,100% 0,89% 34%,100% 48%,100% 100%,0 100%); }
.svc9-hero-media-inner { position:absolute; inset:0; background:#07110f; }
.svc9-hero-media-inner::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(7,17,15,.35),transparent 56%),linear-gradient(0deg,rgba(5,20,17,.38),transparent 55%); }
.svc9-hero-media img { width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.05); transition:transform 1.2s cubic-bezier(.16,1,.3,1); }
.svc9-hero-media:hover img { transform:scale(1.045); }
.svc9-media-line { position:absolute; inset:28px 31px 28px 34px; z-index:3; border-top:1px dotted rgba(57,189,134,.7); border-right:1px dotted rgba(57,189,134,.7); border-radius:0 35px 0 0; pointer-events:none; }

/* Overview */
.svc9-overview { min-height:430px; display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:stretch; padding:54px 54px 45px; border-radius:40px; color:#fff; background:radial-gradient(circle at 0 100%,rgba(14,81,70,.72),transparent 44%),linear-gradient(120deg,#111b21,#142027); box-shadow:0 13px 34px rgba(15,28,32,.10); }
.svc9-overview-lead { display:flex; flex-direction:column; justify-content:center; }
.svc9-overview-eyebrow { margin:0 0 14px; color:rgba(255,255,255,.48); font-size:11px; letter-spacing:.13em; }
.svc9-overview-lead h3 { margin:0; max-width:390px; color:var(--service-accent); font-family:var(--heading); font-size:24px; line-height:1.34; font-weight:400; }
.svc9-overview-icons { display:flex; gap:12px; margin-top:auto; padding-top:54px; }
.svc9-overview-icons span { width:82px; height:82px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; border-radius:50%; color:#fff; background:linear-gradient(145deg,#2e4857,#0b151a); box-shadow:inset 0 0 0 1px rgba(255,255,255,.07),0 9px 18px rgba(0,0,0,.18); }
.svc9-overview-icons i { font-style:normal; font-size:23px; line-height:1; }
.svc9-overview-icons small { color:rgba(255,255,255,.68); font-size:10px; }
.svc9-overview-stack { display:grid; grid-template-rows:1fr 1fr; gap:20px; align-self:center; }
.svc9-overview-stack article { min-height:150px; display:flex; align-items:center; padding:30px 34px; border:1px solid rgba(57,189,134,.58); border-radius:25px 25px 62px 25px; background:rgba(10,22,27,.36); }
.svc9-overview-stack article:last-child { border-radius:25px 62px 25px 25px; }
.svc9-overview-stack p { margin:0; color:rgba(255,255,255,.84); font-size:16px; line-height:1.5; }

/* Capabilities: image + 6-card matrix */
.svc9-cap-grid { display:grid; grid-template-columns:1.06fr repeat(3,1fr); grid-template-rows:1fr 1fr; gap:15px; }
.svc9-cap-photo { position:relative; grid-row:1 / span 2; min-height:510px; overflow:hidden; border-radius:30px 30px 78px 30px; background:#dce7e2; }
.svc9-cap-photo::before { content:''; position:absolute; inset:16px; z-index:2; border:1px solid rgba(255,255,255,.72); border-radius:22px 22px 67px 22px; pointer-events:none; }
.svc9-cap-photo img { height:100%; object-fit:cover; transition:transform 1s cubic-bezier(.16,1,.3,1); }
.svc9-cap-photo:hover img { transform:scale(1.04); }
.svc9-cap-photo > span { position:absolute; z-index:3; left:27px; right:27px; bottom:26px; color:#fff; font-family:var(--heading); font-size:18px; text-shadow:0 2px 16px rgba(0,0,0,.5); }
.svc9-cap-card { position:relative; min-height:245px; padding:29px 27px 25px; overflow:hidden; border-radius:22px 22px 52px 22px; box-shadow:0 5px 12px rgba(20,32,35,.08); transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s ease; }
.svc9-cap-card:hover { transform:translateY(-7px); box-shadow:0 18px 32px rgba(20,32,35,.13); }
.svc9-cap-no { display:block; margin-bottom:18px; color:rgba(16,24,28,.45); font-size:10px; letter-spacing:.12em; }
.svc9-cap-card h3 { margin:0 0 13px; font-size:18px; line-height:1.25; font-weight:600; }
.svc9-cap-card p { margin:0; font-size:14px; line-height:1.43; }
.svc9-tone-1,.svc9-tone-6 { color:#071915; background:linear-gradient(145deg,#47c590,#2db77e); }
.svc9-tone-2,.svc9-tone-4 { color:#fff; background:#121c23; }
.svc9-tone-3,.svc9-tone-5 { background:#efefef; }
.svc9-tone-4 { background:linear-gradient(145deg,#111c22,#19252d); }
.svc9-tone-5 { background:#f3f3f3; }
.svc9-tone-6 { background:#eaf8f3; }
.svc9-tone-2 .svc9-cap-no,.svc9-tone-4 .svc9-cap-no { color:rgba(255,255,255,.48); }
.svc9-tone-2 p,.svc9-tone-4 p { color:rgba(255,255,255,.74); }

/* Benefits mosaic */
.svc9-benefits { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; align-items:stretch; }
.svc9-benefit { position:relative; min-height:205px; padding:30px 27px 28px; overflow:hidden; border-radius:27px; color:#fff; background:#121c23; transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s ease; }
.svc9-benefit:hover { transform:translateY(-7px); box-shadow:0 18px 34px rgba(12,28,28,.15); }
.svc9-benefit h3 { margin:0 0 15px; font-size:18px; line-height:1.3; font-weight:600; }
.svc9-benefit p { margin:0; color:rgba(255,255,255,.73); font-size:14px; line-height:1.45; }
.svc9-benefit > span { position:absolute; right:18px; bottom:15px; color:var(--service-accent); font-size:12px; }
.svc9-benefit-3 { grid-column:3 / span 2; color:#0b1916; background:linear-gradient(135deg,#4ac793,#a9e7cb); }
.svc9-benefit-3 p { color:rgba(5,24,18,.72); }
.svc9-benefit-4 { grid-column:1; }
.svc9-benefit-5 { grid-column:2; }
.svc9-benefit-6 { grid-column:3; }

/* Facts and figures */
.svc9-facts { min-height:430px; overflow:hidden; display:grid; grid-template-columns:.46fr .54fr; border-radius:40px; color:#fff; background:#121c23; }
.svc9-facts-photo { position:relative; min-height:430px; overflow:hidden; }
.svc9-facts-photo::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent 64%,#121c23 100%),linear-gradient(0deg,rgba(0,0,0,.4),transparent 54%); }
.svc9-facts-photo img { width:100%; height:100%; object-fit:cover; }
.svc9-facts-photo > span { position:absolute; z-index:3; top:-5%; right:-8%; width:130px; height:110%; border-radius:50%; border:16px solid var(--service-accent); opacity:.92; }
.svc9-facts-list { padding:34px 44px 30px 36px; display:grid; grid-template-rows:repeat(4,1fr); }
.svc9-facts-list article { display:grid; grid-template-columns:98px 1fr; align-items:center; gap:22px; border-bottom:1px solid rgba(255,255,255,.27); }
.svc9-facts-list article:last-child { border-bottom:0; }
.svc9-facts-list strong { color:var(--yellow); font-family:var(--heading); font-size:38px; line-height:1; }
.svc9-facts-list h3 { margin:0 0 4px; color:var(--yellow); font-size:15px; font-weight:500; text-transform:uppercase; letter-spacing:.02em; }
.svc9-facts-list p { margin:0; max-width:420px; color:rgba(255,255,255,.67); font-size:13px; line-height:1.35; }

/* Case study synopsis */
.svc9-case { position:relative; display:grid; grid-template-columns:46px 1fr 46px; align-items:center; gap:20px; }
.svc9-case-stage { display:grid; grid-template-columns:.88fr 1.65fr; gap:26px; align-items:start; }
.svc9-case-arrow { width:42px; height:42px; border:0; border-radius:50%; display:grid; place-items:center; color:#fff; background:#7e8381; transition:transform .3s ease,background .3s ease; }
.svc9-case-arrow:hover { transform:scale(1.08); background:var(--service-accent-2); }
.svc9-case-feature { min-width:0; }
.svc9-case-img { position:relative; height:255px; overflow:hidden; border-radius:25px 25px 62px 25px; }
.svc9-case-img img { height:100%; object-fit:cover; }
.svc9-case-round { position:absolute; right:9px; bottom:9px; width:40px; height:40px; display:grid; place-items:center; border-radius:50%; color:#111; background:var(--yellow); }
.svc9-case-feature h3 { margin:18px 0 1px; color:var(--service-accent); font-size:20px; }
.svc9-case-feature > span { color:#61706b; font-size:12px; text-transform:uppercase; }
.svc9-case-feature dl { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:17px 0 0; }
.svc9-case-feature dl div { min-width:0; }
.svc9-case-feature dt { color:#929896; font-size:10px; text-transform:uppercase; }
.svc9-case-feature dd { margin:2px 0 0; font-size:12px; }
.svc9-case-mini-row { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.svc9-case-mini { min-height:220px; border-radius:23px; background:#ddd; }
.svc9-case-copy { grid-column:1 / span 2; min-height:170px; padding:25px 28px; border-radius:22px; border:1px solid #dedede; background:#fff; }
.svc9-case-copy h3 { margin:0 0 12px; font-size:18px; font-weight:600; }
.svc9-case-copy p { margin:0; color:#444; font-size:14px; line-height:1.45; }
.svc9-case-copy a { display:inline-block; margin-top:14px; color:var(--green-dark); font-size:13px; text-decoration:none; }
.svc9-case-progress { width:64%; height:6px; margin:30px auto 0; overflow:hidden; border-radius:99px; background:#ddd; }
.svc9-case-progress i { display:block; width:28%; height:100%; border-radius:inherit; background:var(--service-accent-2); }

/* Shared lower homepage components on service detail */
.svc9-page .faq-section { padding-top:80px; padding-bottom:80px; }
.svc9-page .faq-section .section-heading,.svc9-page .certifications .section-heading { margin-bottom:44px; }
.svc9-page .faq-section .section-heading h2,.svc9-page .certifications .section-heading h2 { font-size:36px; letter-spacing:-1px; }
.svc9-page .faq-panel { width:min(var(--svc9-max),calc(100% - 64px)); }
.svc9-page .certifications { padding-top:72px; padding-bottom:78px; }
.svc9-page .certificate-slider-shell { width:min(1100px,calc(100% - 64px)); }
.svc9-page .contact-cta { padding-top:55px; padding-bottom:86px; }
.svc9-page .contact-panel { width:min(1080px,calc(100% - 64px)); }

@media (max-width:1050px) {
  .svc9-hero-copy,.svc9-hero-media { min-height:390px; }
  .svc9-hero-copy { padding:45px 40px 35px; }
  .svc9-overview { gap:35px; padding:45px 38px; }
  .svc9-cap-grid { grid-template-columns:1fr 1fr 1fr; }
  .svc9-cap-photo { grid-column:1; grid-row:1 / span 3; }
  .svc9-cap-card { min-height:235px; }
  .svc9-benefits { grid-template-columns:repeat(3,1fr); }
  .svc9-benefit-3 { grid-column:3; }
  .svc9-benefit-4,.svc9-benefit-5,.svc9-benefit-6 { grid-column:auto; }
  .svc9-facts { grid-template-columns:.42fr .58fr; }
  .svc9-case-stage { grid-template-columns:.85fr 1.45fr; }
}

@media (max-width:767px) {
  .svc9-width { width:calc(100% - 28px); }
  .svc9-section { padding:44px 0 52px; }
  .svc9-heading { margin-bottom:28px; font-size:28px; }
  .svc9-hero { padding-top:18px; }
  .svc9-breadcrumb { margin-bottom:14px; }
  .svc9-hero-grid { grid-template-columns:1fr; gap:10px; }
  .svc9-hero-copy,.svc9-hero-media { min-height:330px; }
  .svc9-hero-copy { padding:38px 28px 30px; border-radius:25px; }
  .svc9-hero-copy h1 { font-size:29px; }
  .svc9-explore { margin-top:38px; }
  .svc9-hero-media { clip-path:none; border-radius:25px; min-height:270px; }
  .svc9-media-line { inset:18px; }
  .svc9-overview { grid-template-columns:1fr; gap:28px; min-height:0; padding:34px 26px; border-radius:28px; }
  .svc9-overview-lead h3 { font-size:21px; }
  .svc9-overview-icons { padding-top:28px; }
  .svc9-overview-icons span { width:70px; height:70px; }
  .svc9-overview-stack article { min-height:0; padding:23px 24px; border-radius:20px 20px 45px 20px; }
  .svc9-cap-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; gap:10px; }
  .svc9-cap-photo { grid-column:1 / span 2; grid-row:auto; min-height:330px; border-radius:24px 24px 55px 24px; }
  .svc9-cap-card { min-height:220px; padding:24px 21px; border-radius:20px 20px 42px 20px; }
  .svc9-cap-card h3 { font-size:17px; }
  .svc9-cap-card p { font-size:13px; }
  .svc9-benefits { grid-template-columns:1fr 1fr; gap:10px; }
  .svc9-benefit,.svc9-benefit-3,.svc9-benefit-4,.svc9-benefit-5,.svc9-benefit-6 { grid-column:auto; min-height:190px; padding:24px 21px; }
  .svc9-benefit h3 { font-size:16px; }
  .svc9-benefit p { font-size:13px; }
  .svc9-facts { grid-template-columns:1fr; border-radius:28px; }
  .svc9-facts-photo { min-height:320px; }
  .svc9-facts-photo::after { background:linear-gradient(0deg,#121c23 0,transparent 38%); }
  .svc9-facts-photo > span { display:none; }
  .svc9-facts-list { padding:20px 25px 25px; }
  .svc9-facts-list article { grid-template-columns:78px 1fr; min-height:95px; gap:12px; }
  .svc9-facts-list strong { font-size:31px; }
  .svc9-case { grid-template-columns:1fr; }
  .svc9-case-arrow { display:none; }
  .svc9-case-stage { grid-template-columns:1fr; gap:18px; }
  .svc9-case-img { height:280px; }
  .svc9-case-mini-row { grid-template-columns:1fr 1fr; gap:10px; }
  .svc9-case-mini { min-height:130px; }
  .svc9-case-copy { padding:22px; }
  .svc9-case-progress { width:82%; }
  .svc9-page .faq-panel,.svc9-page .certificate-slider-shell,.svc9-page .contact-panel { width:calc(100% - 28px); }
  .svc9-page .faq-section .section-heading h2,.svc9-page .certifications .section-heading h2 { font-size:28px; }
}

@media (max-width:480px) {
  .svc9-cap-grid,.svc9-benefits { grid-template-columns:1fr; }
  .svc9-cap-photo { grid-column:auto; }
  .svc9-benefit { min-height:175px; }
  .svc9-case-mini-row { grid-template-columns:1fr; }
  .svc9-case-copy { grid-column:auto; }
}
