/* ===== global.css ===== */
/* Font Face Declarations */
@font-face {
  font-family: "PP Object Sans";
  src: url("../assets/Fonts/Object%20Sans/PPObjectSans-Regular.woff2") format("woff2"),
       url("../assets/Fonts/Object%20Sans/PPObjectSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* x-height matched to Arial fallback to minimize swap reflow (measured) */
  size-adjust: 102.7%;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../assets/Fonts/Object%20Sans/PPObjectSans-Bold.woff2") format("woff2"),
       url("../assets/Fonts/Object%20Sans/PPObjectSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  size-adjust: 101.3%;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../assets/Fonts/Object%20Sans/PPObjectSans-Heavy.woff2") format("woff2"),
       url("../assets/Fonts/Object%20Sans/PPObjectSans-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../assets/Fonts/Object%20Sans/PPObjectSans-Thin.woff2") format("woff2"),
       url("../assets/Fonts/Object%20Sans/PPObjectSans-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Object Sans";
  src: url("../assets/Fonts/Object%20Sans/PPObjectSans-Slanted.woff2") format("woff2"),
       url("../assets/Fonts/Object%20Sans/PPObjectSans-Slanted.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Druk Wide Trial";
  src: url("../assets/Fonts/Druk%20Wide%20Trial/DrukWide-SuperItalic-Trial.woff2") format("woff2"),
       url("../assets/Fonts/Druk%20Wide%20Trial/DrukWide-SuperItalic-Trial.otf") format("opentype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Druk Wide Bold";
  src: url("../assets/Fonts/Druk%20Wide%20Trial/DrukWideBold.woff2") format("woff2"),
       url("../assets/Fonts/Druk%20Wide%20Trial/DrukWideBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  size-adjust: 96.4%;
}

@font-face {
  font-family: "AE Cond Semibold";
  src: url("../assets/Fonts/Suisse/SuisseIntlCond-Semibold.woff2") format("woff2"),
       url("../assets/Fonts/Suisse/SuisseIntlCond-Semibold.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  size-adjust: 96.4%;
}

/* Metric-matched stand-ins for Arial, used only while PP Object Sans is still
   loading. The size-adjust on the real faces above already lines their x-height
   up with Arial's (0.5186 vs 0.5185), so these faces need no size-adjust - what
   still moved on swap was the line box, since Arial's ascent/descent
   (0.905/0.212) are much shallower than PP Object Sans's (1.050/0.330 regular,
   0.970/0.330 bold). Overriding those makes the fallback reserve exactly the
   height the real font will take, which is what removes the hero-header shift.
   Values are the real font's metrics scaled by its size-adjust; recompute if
   either size-adjust changes. */
@font-face {
  font-family: "PP Object Sans Fallback";
  src: local("Arial");
  font-weight: 400;
  font-style: normal;
  ascent-override: 107.83%;
  descent-override: 33.89%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "PP Object Sans Fallback";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Arial");
  font-weight: 700;
  font-style: normal;
  ascent-override: 98.26%;
  descent-override: 33.43%;
  line-gap-override: 0%;
}

:root {
  --font-primary: "PP Object Sans", "PP Object Sans Fallback", Arial, Helvetica,
    sans-serif;
  --font-secondary: "Druk Wide Trial", Arial, Helvetica, sans-serif;

  --color-text: #fff;
  --color-text-secondary: #eaeaea;

  --color-bg: #000;
  --color-bg-secondary: #131416;

  --color-callout: #24262a;
}

/* Base styles for the local <ion-icon> element (js/icons.js). Upstream ionicons
   injected these itself; self-hosting means we own them. Sizing via font-size
   and painting via color are the contract the rest of this file relies on. */
ion-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  contain: strict;
  box-sizing: content-box !important;
}

ion-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

a,
p,
span {
  text-decoration: none;
  font-size: 13px;
  color: var(--color-text);
}

h2 {
  font-weight: 500;
  font-size: 80px;
  color: var(--color-text-secondary);
  letter-spacing: -2px;
  line-height: 100%;
}

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

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.callout {
  width: max-content;
  padding: 0.5em 1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  margin-bottom: 2em;
}

/* WhatsApp click-to-chat float */
.wa-float {
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float ion-icon {
  font-size: 28px;
  color: #fff;
}

@media (max-width: 900px) {
  /* clear the fixed bottom nav ctas bar */
  .wa-float {
    right: 1em;
    bottom: 7em;
    width: 52px;
    height: 52px;
  }
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 2em;
  right: 2em;
  padding: 1.5em 2em;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 1em;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-message {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.toast-message strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.toast-message p {
  font-size: 12px;
  color: var(--color-text-secondary);
  opacity: 0.8;
}

.toast.success .toast-icon {
  color: #00ff88;
}

.toast.success {
  border-left: 3px solid #00ff88;
}

.toast.error .toast-icon {
  color: #ff6b00;
}

.toast.error {
  border-left: 3px solid #ff6b00;
}

@media (max-width: 900px) {
  .toast {
    top: 1em;
    right: 1em;
    left: 1em;
    padding: 1em 1.5em;
  }
}

/* ============================================================
   Mega-footer — sitewide internal-linking nav
   ============================================================ */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4em 8em 2em;
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2.5em 2em;
}

.site-footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6b00;
  margin-bottom: 1.2em;
  font-weight: 700;
}

.site-footer-col a {
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  opacity: 0.72;
  padding: 0.45em 0;
  transition: opacity 0.25s, color 0.25s;
}

.site-footer-col a:hover {
  opacity: 1;
  color: #ff6b00;
}

.site-footer-subhead {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin: 1.1em 0 0.3em;
}

.site-footer-bottom {
  max-width: 1400px;
  margin: 3em auto 0;
  padding-top: 1.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.site-footer-bottom p,
.site-footer-bottom a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-bottom a:hover {
  color: #ff6b00;
}

/* Footer trust badges (Clutch / GoodFirms / socials) */
.site-footer-badges {
  max-width: 1400px;
  margin: 2.5em auto 0;
  padding-top: 1.8em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9em 1.4em;
}

.site-footer-badges-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: border-color 0.25s, color 0.25s;
}

.site-footer-badge ion-icon {
  font-size: 16px;
}

.site-footer-badge:hover {
  border-color: #ff6b00;
  color: #ff6b00;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 3em 1.5em 8em;
  }
  .site-footer-inner {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2em 1.5em;
  }
}

/* ============================================================
   Trust / proof metrics bar (homepage + service pages)
   Real numbers only — no invented client counts or ratings.
   ============================================================ */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-bg-secondary);
  padding: 2.5em 8em;
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2em;
}

.trust-metric {
  text-align: left;
}

.trust-metric-num {
  display: block;
  font-family: "Druk Wide Bold";
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fc002d, #ff6b00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-metric-label {
  display: block;
  margin-top: 0.7em;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

@media (max-width: 900px) {
  .trust-bar {
    padding: 2em 1.5em;
  }
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6em 1.2em;
  }
}

/* ============================================================
   In-content related links (service <-> industry cross-links)
   ============================================================ */
.cs-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  margin: 1.5em auto 0;
}

.cs-related-link {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.3em;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.cs-related-link:hover {
  background: rgba(255, 107, 0, 0.14);
  border-color: rgba(255, 107, 0, 0.55);
  transform: translateY(-2px);
}

/* ===== nav.css ===== */
/* nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5em 1em;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  z-index: 10;
}

.logo,
.clock,
.ctas {
  flex: 1;
}

.logo img {
  width: 5vw;
}

.ctas {
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.sound,
.contact,
.menu {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-text);
  border-radius: 8px;
  cursor: pointer;
  padding: 1em 0;
  /* It is a real <button> so it is keyboard operable; strip the UA chrome that
     comes with that and inherit type styles from the page. */
  border: none;
  font: inherit;
  color: inherit;
  /* The UA sheet sets text-transform: none on form controls, which would drop
     the uppercase this inherits from <nav>. */
  text-transform: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.sound p,
.contact a,
.menu p {
  color: var(--color-bg);
}

.menu,
.contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu p,
.contact a {
  padding-right: 0.75em;
}

.menu .menu-icon,
.contact .contact-icon {
  position: relative;
  left: 0.125em;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact .contact-icon {
  color: var(--color-text);
  transform: rotate(0);
  left: 0.25em;
  font-size: 8px;
}

.contact {
  background: #ff6b00;
  background: linear-gradient(to right, #fc002d, #ff6b00);
}

.contact a {
  color: var(--color-text);
  position: absolute;
  right: 0;
  width: 100%;
  text-align: right;
}

.menu.active {
  background: var(--color-text);
}

.menu.active p,
.menu.active ion-icon {
  color: var(--color-bg);
}

.menu.active .menu-icon {
  transform: rotate(270deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 900px) {
  .logo img {
    width: 15vw;
  }

  .ctas {
    position: fixed;
    left: 0;
    bottom: 1em;
    width: 100%;
    height: 60px;
    padding: 1em;
  }

  .clock {
    text-align: right;
  }

  .menu,
  .contact {
    padding: 1.25em 0.5em;
  }

  .menu .menu-icon {
    left: 0;
  }

  .menu.active {
    background: var(--color-bg);
  }

  .menu.active p,
  .menu.active ion-icon {
    color: var(--color-text);
  }
}

/* ===== menu.css ===== */
/* menu-container */
.menu-container {
  position: fixed;
  top: 46px;
  left: 0;
  width: 100%;
  padding: 1em;
  display: flex;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.whitespace {
  pointer-events: none;
}

.whitespace,
.menu-items {
  flex: 1;
  padding: 0.25em;
}

.menu-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background: var(--color-text);
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.menu-item {
  position: relative;
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-text-secondary);
  border-radius: 5px;
}

.menu-item span {
  color: var(--color-bg);
}

@media (max-width: 900px) {
  .menu-container {
    top: unset;
    bottom: calc(0px);
    padding: 0;
  }

  .menu-items {
    border-radius: 8px 8px 0px 0px;
    padding-bottom: 100px;
  }

  .whitespace {
    display: none;
  }
}

/* ===== hero.css ===== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: rotate(-165deg);
}

.hero-img img {
  transform: scale(1.25);
}

.hero-header {
  position: relative;
  width: 100%;
  padding: 1.5em;
  z-index: 1;
}

.hero-header h1 {
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: clamp(26px, 4.4vw, 80px);
  line-height: 1.05;
  max-width: 18ch;
  color: var(--color-text);
}

.hero-proof {
  margin-top: 1.5em;
  max-width: 62ch;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 2em;
}

.hero-cta {
  display: inline-block;
  padding: 0.9em 1.8em;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  transition: opacity 0.3s;
}

.hero-cta:hover {
  opacity: 0.85;
}

.hero-cta-secondary {
  display: inline-block;
  padding: 0.9em 1.8em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  transition: border-color 0.3s, background 0.3s;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

/* proof bar */
.proof-bar {
  padding: 2.5em 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-bar-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25em;
}

.proof-bar-names {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 3em;
}

.proof-bar-names span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-header {
    padding: 1em 1em 8.5em 1em;
  }

  .hero-img {
    transform: rotate(-170deg);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta,
  .hero-cta-secondary {
    text-align: center;
  }

  .proof-bar {
    padding: 2em 1em;
  }

  .proof-bar-names {
    gap: 0.75em 1.75em;
  }
}

/* ===== about.css ===== */
.about {
  width: 100%;
  height: max-content;
  background: var(--color-bg);
}

.about-header {
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
}

.about-col {
  padding: 1em;
}

.about-col:nth-child(1) {
  flex: 2;
}

.about-col:nth-child(2) {
  flex: 4;
}

.about-col h2 {
  width: 85%;
  color: #fff;
  font-size: 4vw;
}

/* SplitType wraps each character in .char; about.js scrubs these to opacity 1.
   The dim start lives here rather than as a color on the h2 so the reveal can
   animate opacity (compositable) instead of color (not). */
.about-col h2 .char {
  opacity: 0.125;
}

.about-copy {
  width: 50%;
  padding: 10em 1em 5em 1em;
  text-transform: uppercase;
}

/* founder story */
.founder-story {
  width: 85%;
  padding-top: 2.5em;
}

.founder-story p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.5em;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1em;
  margin: 2.5em 0;
}

.founder-highlight {
  padding: 1.5em;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.founder-highlight strong {
  display: block;
  font-family: "Druk Wide Bold";
  font-size: clamp(17px, 1.6vw, 26px);
  color: #ff6b00;
  margin-bottom: 0.5em;
  line-height: 1.15;
}

.founder-highlight span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.founder-mission {
  border-left: 2px solid #ff6b00;
  padding-left: 1.5em;
  color: var(--color-text) !important;
}

.founder-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6b00;
  transition: opacity 0.3s;
}

.founder-link:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .about-copy {
    width: 100%;
  }

  .about-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .about-col h2 {
    width: 100%;
    font-size: 10vw;
  }

  .about-copy {
    padding: 5em 1em 10em 1em;
  }

  .founder-story {
    width: 100%;
  }
}

/* ===== home-sections.css ===== */
/* Homepage sections: case study teasers + full-stack capability */

/* ---------- Case study teasers ---------- */
.home-cases {
  padding: 6em 1.5em 8em;
}

.home-cases-header {
  margin-bottom: 3em;
}

h2.home-cases-title {
  font-family: "Druk Wide Bold";
  font-size: clamp(26px, 3.2vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--color-text);
}

.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1em;
}

.home-case-card {
  display: flex;
  flex-direction: column;
  padding: 2em;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.3s, border-color 0.3s;
}

.home-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.5);
}

.home-case-tag {
  width: max-content;
  padding: 0.4em 0.9em;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}

.home-case-card h3 {
  font-family: "AE Cond Semibold";
  font-size: clamp(16px, 1.4vw, 22px);
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 0.75em;
}

.home-case-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.5em;
  flex: 1;
}

.home-case-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6b00;
}

.home-cases-all {
  margin-top: 2.5em;
}

.home-cases-all a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color 0.3s;
}

.home-cases-all a:hover {
  color: #ff6b00;
}

/* ---------- Full-stack capability ---------- */
.full-stack {
  display: flex;
  padding: 2em 0 8em;
}

.full-stack-col {
  padding: 1em;
}

.full-stack-col:nth-child(1) {
  flex: 2;
}

.full-stack-col:nth-child(2) {
  flex: 4;
}

.full-stack h2 {
  font-size: clamp(26px, 3vw, 52px);
  letter-spacing: -1px;
  color: var(--color-text);
  max-width: 20ch;
}

.full-stack p {
  margin: 1.5em 0 2em;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.full-stack-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6b00;
  transition: opacity 0.3s;
}

.full-stack-link:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .home-cases {
    padding: 4em 1em 5em;
  }

  .home-cases-grid {
    grid-template-columns: 1fr;
  }

  .full-stack {
    flex-direction: column;
    padding: 1em 0 5em;
  }
}

/* ===== services.css ===== */
.services {
  width: 100%;
  padding: 6em 1.5em 10em 1.5em;
  background: var(--color-bg);
  display: flex;
}

.services-col:nth-child(1) {
  flex: 2;
}

.services-col:nth-child(2) {
  flex: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.services-row {
  width: 85%;
  display: flex;
  gap: 0.5em;
}

.tech-badges {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.tech-badge {
  padding: 1em 1.75em;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.service-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 8px;
}

.service-icon {
  position: relative;
  top: -10%;
  font-size: 36px;
  color: #fff;
}

.service-title {
  position: absolute;
  bottom: 15%;
}

@media (max-width: 900px) {
  .services {
    flex-direction: column;
  }

  .services-row {
    width: 100%;
  }

  .tech-badges {
    width: 100%;
  }
}

/* ===== promo.css ===== */
.promo {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.promo-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.promo-header {
  position: relative;
  z-index: 1;
}

.promo .section-banner {
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  line-height: 100%;
  margin: 0;
  font-size: 10vw;
}

@media (max-width: 900px) {
  .promo {
    height: 70vh;
  }

  .promo .section-banner {
    font-size: 12vw;
  }
}

/* ===== projects.css ===== */
section.card {
  width: 100vw;
  height: 100vh;
}

.card.scroll {
  position: relative;
}

.project {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 85%;
  height: 75%;
  display: flex;
}

.project-copy {
  position: relative;
  flex: 1.75;
  border-radius: 12px;
  padding: 2em;
  background: var(--color-bg-secondary);
}

.project-img {
  flex: 3;
  border-radius: 12px;
  overflow: hidden;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-header h3 {
  color: var(--color-text);
  text-transform: uppercase;
  font-family: "AE Cond Semibold";
  font-size: 40px;
  line-height: 100%;
}

.project-header p {
  padding: 0 !important;
}

.project-copy p {
  padding: 1em 0;
}

.project-case-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6b00;
  transition: opacity 0.3s;
}

.project-case-link:hover {
  opacity: 0.8;
}

.project-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1em;
  text-transform: uppercase;
}

.project-cta-row {
  width: 100%;
  display: flex;
  gap: 1em;
}

.cta {
  flex: 1;
  padding: 0.5em 1em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.125);
}

.cta span {
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project {
    flex-direction: column;
  }

  .project-header h3 {
    font-size: 4.5vw;
  }
}

/* ===== prices-hero.css ===== */
.prices-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

.prices-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.prices-hero .section-banner,
.prices-hero h3 {
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  line-height: 100%;
  margin: 0;
}

.prices-hero h3 {
  font-size: 3vw;
  letter-spacing: 0;
  line-height: 105%;
}

.prices-hero .section-banner {
  margin: 0;
  font-size: 10vw;
}

@media (max-width: 900px) {
  .prices-hero {
    height: 70vh;
  }

  .prices-hero .section-banner {
    font-size: 12vw;
  }
}

/* ===== prices.css ===== */
.prices {
  width: 100%;
  height: max-content;
  background: var(--color-bg-secondary);
  padding-bottom: 12em;
  border-radius: 12px;
}

.prices-header {
  position: relative;
  width: 100%;
  padding: 20em 0 10em 0;
  display: flex;
  z-index: 2;
}

.prices-col {
  padding: 1em;
}

.prices-col:nth-child(1) {
  flex: 2;
}

.prices-col:nth-child(2) {
  flex: 4;
}

.prices-col h2 {
  width: 85%;
  color: #fff;
}

/* See .about-col h2 .char - same opacity-driven reveal, scrubbed by prices.js. */
.prices-col h2 .char {
  opacity: 0.125;
}

.prices-copy {
  width: 50%;
  padding: 10em 1em 2em 1em;
  text-transform: uppercase;
}

.prices-cta {
  width: 70%;
  padding: 4em 0;
  margin: 0 auto;
  background: #ff6b00;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
  box-shadow: none;
  transition: 0.3s;
}

.prices-cta:hover {
  -webkit-box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
  -moz-box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
  box-shadow: 0px 0px 300px 0px rgba(255, 106, 0, 0.75);
}

.prices-cta h1 {
  font-family: var(--font-secondary);
  font-size: 2vw;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 900px) {
  .prices-copy {
    width: 100%;
  }

  .prices-header {
    padding: 5em 0 5em 0;
    flex-direction: column;
  }

  .prices-cta h1 {
    font-size: 4vw;
  }

  .prices-col h2 {
    width: 100%;
    font-size: 64px;
  }

  .prices-copy {
    padding: 5em 1em 10em 1em;
  }
}

/* ===== features.css ===== */
.features {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.25em 1em 10em 1em;
  background: var(--color-bg);
  display: flex;
}

.features-col:nth-child(1) {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.features-col:nth-child(2) {
  flex: 4;
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.features-row {
  width: 100%;
  display: flex;
  gap: 0.25em;
}

.features-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-direction: column;
  background: var(--color-bg-secondary);
  border-radius: 8px;
}

.features-icon {
  position: relative;
  top: -10%;
  width: 38%;
  font-size: 36px;
  color: #fff;
}

.features-title {
  position: absolute;
  bottom: 0%;
  padding: 2em;
}

.features-title h2 {
  width: 70%;
  font-family: var(--font-secondary);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 120%;
  letter-spacing: 0.25px;
  margin-bottom: 0.25em;
}

.features-title p {
  font-size: clamp(12px, 0.95vw, 14px);
}

@media (max-width: 900px) {
  .features-title h2 {
    font-size: 7vw;
  }

  .features {
    flex-direction: column;
  }

  .features-row {
    width: 100%;
    flex-direction: column;
  }

  .features-icon {
    top: -25%;
    transform: scale(0.75);
  }
  .features-title p {
    font-size: 4vw;
  }
}

/* ===== footer.css ===== */
footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: -20%;
  left: 0;
  transform: rotate(180deg);
}

.footer-header {
  width: 100%;
  padding: 25em 1.5em 0.5em 1.5em;
  border-bottom: 2px solid var(--color-text);
}

.footer-header .section-banner {
  color: var(--color-text);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 9vw;
  letter-spacing: 0;
  line-height: 100%;
  margin: 0;
}

.footer-ctas {
  width: 100%;
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: space-between;
  color: var(--color-text);
}

.footer-ctas-col {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.footer-cta-icon {
  display: inline-block;
  padding: 1em 1.125em 0.75em 1.125em;
  background: rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  transition: 0.5s;
}

.footer-cta-icon:hover {
  background: rgba(255, 255, 255, 0.175);
}

.footer-cta-icon ion-icon {
  font-size: 20px;
  transition: 0.3s;
}

.footer-cta-icon:hover ion-icon {
  color: #ff6b00;
}

.footer-cta-icon .clutch-widget {
  width: 90px !important;
  height: 48px !important;
  overflow: hidden;
}

.footer-cta-icon .clutch-widget iframe {
  width: 90px !important;
  height: 48px !important;
  max-width: 90px;
  max-height: 48px;
}

.footer-cta-icon:has(.clutch-widget) {
  width: 90px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  display: none;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  width: 100%;
  padding: 0.5em 1.5em 2em 1.5em;
  display: flex;
  justify-content: space-between;
}

.footer-copyright p {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* primary booking CTAs — form is the fallback */
.footer-book {
  width: 100%;
  padding: 2.5em 1.5em 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.footer-book-btn {
  flex: 2;
  min-width: 240px;
  padding: 1.5em 2em;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  transition: opacity 0.3s;
}

.footer-book-btn:hover {
  opacity: 0.85;
}

.footer-wa-btn {
  flex: 1;
  min-width: 200px;
  padding: 1.5em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  background: transparent;
  border: 1px solid #25d366;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  transition: background 0.3s;
}

.footer-wa-btn:hover {
  background: rgba(37, 211, 102, 0.12);
}

.footer-wa-btn ion-icon {
  font-size: 20px;
  color: #25d366;
}

.footer-form-label {
  width: 100%;
  padding: 1.5em 1.5em 0.75em;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.footer-form {
  width: 100%;
  padding: 0 1.5em;
  display: flex;
  gap: 0.5em;
}

.form-col:nth-child(1) {
  flex: 4;
  width: 100%;
  padding: 0.25em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.form-col:nth-child(2) {
  position: relative;
  flex: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff6b00;
  background: linear-gradient(to right, #fc002d, #ff6b00);
  border-radius: 8px;
}

.submit-btn {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.submit-btn h3 {
  font-family: var(--font-secondary);
  font-size: 3vw;
  color: var(--color-text);
  text-transform: uppercase;
  margin: 0;
}

.form-row {
  display: flex;
  gap: 0.25em;
}

input,
textarea {
  flex: 1;
  border: none;
  outline: none;
  text-transform: uppercase;
  padding: 1.5em 1em;
  border-radius: 6px;
  transition: 0.3s;
  outline: 1.5px solid var(--color-text-secondary);
  background: var(--color-text-secondary);
}

input:focus {
  outline: 1.5px solid #ff6b00;
}

@media (max-width: 900px) {
  .submit-btn h3 {
    font-size: 10vw;
  }

  .footer-bg {
    top: 0%;
  }

  .footer-header {
    padding: 20em 1.5em 0 1.5em;
  }

  .footer-book {
    flex-direction: column;
    padding: 2em 1.5em 0.5em;
  }

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

  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    padding: 3em 0;
  }

  .footer-copyright {
    padding: 0.5em 1.5em 30vw 1.5em;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
}

