:root {
  --bg: #f0f0f0;
  --bg2: #253551;
  --bg3: #253551;
  --surface: #f0f0f0;
  --border: rgba(255,255,255,0.07);
  --text: #0a0a0b;
  --text-muted: #888890;
  --accent: #f5a623;
  --accent2: #e8932e;
  --font-display: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.accent { color: var(--accent); }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; font-family: var(--font-display); font-size: .875rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--accent); color: #0a0a0b; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--accent); color: #0a0a0b; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; border-bottom: 1px solid transparent; transition: all var(--transition); }
.nav {background: #263551; backdrop-filter: blur(12px); border-color: var(--border); }
.nav-logo { color: var(--bg); font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em;}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-family: var(--font-display); font-size: .825rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--bg); transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta { background: var(--accent); color: #0a0a0b !important; padding: .5rem 1.25rem; border-radius: var(--radius); }
.nav-links .nav-cta:hover { background: var(--accent2); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); }
.nav-mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; transition: color var(--transition); }
.nav-mobile a:hover { color: var(--accent); }

/* SECTION HEADER */
.section-header { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--bg); margin-top: 1rem; font-size: 1.05rem; }
.section-tag { display: inline-block; font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text); padding: .25rem .75rem; border-radius: 2px; margin-bottom: 1rem; }
.section-subtag {font-size: 1.75rem;}

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 8rem 4rem 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.layer { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25; }
.l1 { width: 600px; height: 600px; background: radial-gradient(circle, #f5a623 0%, transparent 70%); top: -200px; right: -100px; }
.l2 { width: 400px; height: 400px; background: radial-gradient(circle, #2a2a4a 0%, transparent 70%); bottom: 100px; left: -100px; }
.l3 { width: 300px; height: 300px; background: radial-gradient(circle, #1a1a3e 0%, transparent 70%); top: 50%; right: 30%; }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-content-img {text-align: right;}
.hero-tag { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.hero-title { margin-bottom: 1.5rem;}
.hero-title span {font-size: 15rem !important;}
.hero-sub { font-size: 1.125rem; color: var(--text); max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(30px); animation: revealUp .8s forwards; }
.reveal:nth-child(1) { animation-delay: .1s; }
.reveal:nth-child(2) { animation-delay: .25s; }
.reveal:nth-child(3) { animation-delay: .4s; }
.reveal:nth-child(4) { animation-delay: .55s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* TRUSTED */
.trusted {padding: 3rem 4rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); align-items: center; gap: 3rem; flex-wrap: wrap; background: var(--bg2); text-align:center;}
.trusted-label {font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--bg); white-space: nowrap; }
.trusted-logos { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.logo-pill { font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--bg); border: 1px solid var(--border); padding: .4rem 1rem; border-radius: 100px; transition: all var(--transition); }
.logo-pill:hover { border-color: var(--accent); color: var(--accent); }

/* SERVICES GRID */
.services-snap { padding: 4rem 2rem 0rem 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 3rem; }
.service-card { background: var(--bg2); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg3); }
.service-num { font-family: var(--font-display); font-size: 1.70rem; font-weight: 700; color: var(--bg); letter-spacing: .1em; }
.service-num-num { font-size: 5rem; display: inline-block}
.service-icon {font-size: 1rem; color: var(--accent); line-height: 1;}
.service-card h3 { font-size: 1.2rem; color: var(--bg)}
.service-card p { font-size: .9rem; color: var(--bg); flex: 1; }
.service-arrow { color: var(--accent); font-size: 1.25rem; transition: transform var(--transition); }
.service-card:hover .service-arrow { transform: translateX(4px); }
.services-cta { text-align: center; }
.service-card-accent-line {color: var(--accent) !important;}
/* CASE STUDIES */
.case-studies { padding: 6rem 4rem; background: var(--bg2); color: var(--bg); }
.cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.case-card { background: var(--bg2); display: flex; flex-direction: column; transition: background var(--transition); }
.case-card:hover { background: var(--bg3); }
.case-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.case-img-decor { font-size: 4rem; color: rgba(255,255,255,0.08); }
.case-body { padding: 6rem 2rem; flex: 1; display: grid; place-items: center; text-align: center; }
.case-body h3 {color: var(--bg); font-size: 3rem; text-align: center; width: 100%; max-width: 760px; margin: 0 auto;}
.case-body h3 span {font-size: 1.5rem; line-height:0.5;}
.case-body p {font-size: 1.3rem; line-height:1; width: 100%; max-width: 760px; margin: 0 auto;}
.case-tag { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-family: var(--font-display); }
.case-body p {color: var(--bg); flex: 1; text-align: center;}
.case-stats { display: flex; gap: 2rem; padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .75rem; color: var(--bg); text-transform: uppercase; letter-spacing: .05em; }
.case-studies .section-tag {color: var(--bg);}

/* PROCESS SNAP */
.process-snap { padding: 6rem 4rem; text-align: center; background: var(--bg);}
.process-steps { display: flex; justify-content: center; gap: 0; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 150px; padding: 2rem 1.5rem; border: 1px solid var(--text);}
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: .75rem; }
.process-step h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p { font-size: .85rem; color: var(--text-muted); }
.step-connector { align-self: center; color: var(--border); font-size: 1.5rem; padding-bottom: 2rem; flex-shrink: 0; }

/* ABOUT */
.about { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; background: var(--bg2);}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; color: var(--bg)}
.about-body { color: var(--bg); }
.founders { display: flex; gap: 2rem; margin-top: 1rem; }
.founder { display: flex; align-items: center; gap: 1rem; }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--accent); flex-shrink: 0; }
.founder strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.founder span { font-size: .8rem; color: var(--bg); }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--surface); border: 1px solid var(--border); padding: 2rem 1.5rem; font-family: var(--font-display); font-size: 1rem; font-weight: 700; transition: all var(--transition); }
.about-card:hover { border-color: var(--accent); color: var(--accent); background: var(--bg2);}

/* FINAL CTA */
.final-cta { padding: 8rem 4rem; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.cta-bg { position: absolute; inset: 0; }
.cta-layer { position: absolute; border-radius: 50%; filter: blur(100px); }
.cl1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); }
.cl2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%); bottom: -100px; right: 20%; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 1.25rem; color: var(--text);}
.cta-content p { color: var(--text); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { padding: 4rem 4rem 2rem; border-top: 1px solid var(--border); background: var(--bg2);}
.footer-top { display: flex; gap: 6rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { color: var(--bg); font-size: .9rem; margin-top: .75rem; line-height: 1.8; }
.footer-brand .nav-logo {color: var(--bg);}
.footer-links { display: flex; gap: 4rem; flex: 2; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; color: var(--bg);}
.footer-col strong { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; color: var(--accent); }
.footer-col a { font-size: .875rem; color: var(--bg); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col:first-child a { color: var(--bg); }
.footer-col:first-child a:hover { color: var(--accent); }
.footer-col a.btn { background: var(--accent); color: #0a0a0b; align-self: flex-start; }
.footer-col a.btn:hover { background: var(--accent2); color: #0a0a0b; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem; }

/* PAGE HERO */
.page-hero { padding: 10rem 4rem 5rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: var(--bg); }
.page-hero-glow { position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%); filter: blur(60px); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; }
.breadcrumb { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a { color: var(--accent); }

/* SERVICES PAGE */
.services-page { padding: 0rem 4rem; }
.service-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; padding: 5rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.service-section:last-child { border-bottom: none; }
.service-section.reverse { direction: rtl; }
.service-section.reverse > * { direction: ltr; }
.service-section-meta { position: sticky; top: 120px; }
.service-big-num { font-family: var(--font-display); font-size: 6rem; font-weight: 800; color: var(--bg2); opacity: 1; line-height: 1; margin-bottom: .5rem; }
.service-section-meta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.service-section-meta p { color: var(--text-muted); margin-bottom: 2rem; }
.service-benefits { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit { padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); transition: all var(--transition); }
.benefit:hover { background: var(--bg3); }
.benefit:hover h4,
.benefit:hover p { color: #fff; }
.benefit h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: .4rem; }
.benefit p { font-size: .875rem; color: var(--text-muted); }
.service-items { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.service-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text-muted); }
.service-item::before { content: '→'; color: var(--accent); flex-shrink: 0; }

/* PROCESS PAGE */
.process-page { padding: 6rem 4rem; background: var(--bg2); }
.process-full { max-width: 900px; margin: 0 auto; }
.process-phase { display: grid; grid-template-columns: 100px 1fr; gap: 3rem; padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.process-phase:last-child { border-bottom: none; }
.process-phase-left { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding-top: .25rem; }
.phase-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.phase-line { flex: 1; width: 1px; background: var(--border); min-height: 40px; }
.process-phase:last-child .phase-line { display: none; }
.process-phase-right h3 { font-size: 1.75rem; margin-bottom: 1rem; color: #fff; }
.process-phase-right p { color: #fff; margin-bottom: 1.5rem; }
.process-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.ptag { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .75rem; border: 1px solid var(--border); border-radius: 2px; color: #fff; transition: all var(--transition); font-family: var(--font-display); }
.ptag.active, .ptag:hover { border-color: var(--accent); color: var(--accent); }
.agile-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3); padding: .4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem; font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* CASE STUDY PAGE */
.case-study-page { padding: 6rem 4rem; max-width: 1100px; margin: 0 auto; }
.cs-overview { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border); }
.cs-meta { display: flex; flex-direction: column; gap: 2rem; }
.cs-meta-item strong { display: block; font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.cs-meta-item span { font-size: .9rem; color: var(--text-muted); }
.cs-section { margin-bottom: 4rem; }
.cs-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cs-section p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2rem; }
.result-item { background: var(--bg2); padding: 2rem; text-align: center; }
.result-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--accent); display: block; }
.result-label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* CONTACT PAGE */
.contact-page { padding: 6rem 4rem; display: grid; grid-template-columns: 1fr 1.25fr; gap: 6rem; max-width: 1200px; margin: 0 auto; background: var(--bg2);}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: .5rem; color: #fff; }
.contact-info p { color: #fff; }
.contact-detail { display: flex; flex-direction: column; gap: .35rem; }
.contact-detail strong { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.contact-detail a, .contact-detail span { font-size: .95rem; color: #fff; transition: color var(--transition); }
.contact-detail a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.field input, .field select, .field textarea { background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: .95rem; padding: .9rem 1rem; border-radius: var(--radius); transition: border-color var(--transition); outline: none; -webkit-appearance: none; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); opacity: .5; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2rem; }
  .hero,.trusted,.services-snap,.case-studies,.process-snap,.about,.final-cta,.services-page,.process-page { padding-left: 2rem; padding-right: 2rem; }
  .footer { padding: 3rem 2rem 1.5rem; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .service-section { grid-template-columns: 1fr; gap: 3rem; }
  .service-section.reverse { direction: ltr; }
  .service-section-meta { position: static; }
  .cs-overview { grid-template-columns: 1fr; gap: 3rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .case-study-page { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .process-phase { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .results-grid { grid-template-columns: 1fr; }
}
/* --------------------------------------------------------------------------
   CLEANUP / RESPONSIVE PATCHES
   These rules intentionally sit at the bottom so they fix layout issues
   without deleting older CSS that may be used on other pages.
-------------------------------------------------------------------------- */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-burger span {
  background: var(--bg);
}

.nav-mobile {
  padding: 6rem 2rem 2rem;
  background: var(--bg2);
}

.nav-mobile a {
  color: var(--bg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  min-width: 0;
}

.hero-content-img {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content-img img {
  width: min(100%);
}

.hero-title {
  overflow-wrap: anywhere;
}

.hero-title span {
  font-size: clamp(4rem, 14vw, 15rem) !important;
  line-height: 0.82;
}

.service-card .nav-cta,
.about-cta {
  align-self: flex-start;
  background: var(--accent);
  color: #0a0a0b;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.service-card .nav-cta:hover,
.about-cta:hover {
  background: var(--accent2);
}

.case-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section-tag,
.process-heading,
.process-intro,
.process-step h4,
.process-step p {
  color: var(--text);
}

.process-intro {
    opacity: 0%;
}

.process-btn {
  margin-top: 3rem;
  color: var(--text);
  border: 1px solid var(--text);
}

.about-section-tag {
  color: var(--bg);
}

.footer-start-btn {
  margin-top: .75rem;
}

@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .hero-content-img {
    order: 2;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-content-img img {
    width: min(72vw, 420px);
    margin: 0 auto;
  }

  .case-body {
    padding: 4rem 2rem;
  }

  .case-body h3 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.75rem, 15vw, 5rem);
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .hero,
  .trusted,
  .services-snap,
  .case-studies,
  .process-snap,
  .about,
  .final-cta,
  .services-page,
  .process-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
    text-align: left;
  }

  .hero-tag {
    font-size: .72rem;
    letter-spacing: .12em;
    flex-wrap: wrap;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-title span {
    font-size: clamp(3.25rem, 20vw, 5.75rem) !important;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .trusted-label {
    white-space: normal;
    font-size: 1rem;
  }


  .case-studies {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cases-grid {
    margin-bottom: 1px;
  }

  .case-body {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .case-body h3 {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }

  .case-body p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .about {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-title span {
    font-size: clamp(3rem, 19vw, 4.75rem) !important;
  }

  .hero-content-img img {
    width: min(84vw, 340px);
  }

  .service-card {
    padding: 2rem 1.25rem;
  }

  .final-cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Case-card centering patch */
.case-body {
  place-items: center;
  text-align: center;
}

.case-body h3,
.case-body p {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
