/* Codebrit — Figma-matched design system */

:root {
  --white: #ffffff;
  --grey-50: #f8f8f8;
  --grey-100: #f0f0f0;
  --grey-200: #e5e5e5;
  --grey-400: #999999;
  --grey-600: #666666;
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --red: #e63b3b;
  --red-hover: #cf2f2f;
  --blue: #3b5bdb;
  --purple: #7c3aed;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w: 1240px;
  --pad-x: 48px;
  --section-y: 96px;
  --radius: 6px;
  --radius-pill: 100px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Tokens ---- */
.accent-red { color: var(--red); }
.accent-blue { color: var(--blue); }
.text-black { color: var(--black); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-wide {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section-y) 0; position: relative; overflow: hidden; }
.section-white { background: var(--white); }
.section-grey { background: var(--grey-50); }
.section-dark { background: var(--black); color: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.heading-lg {
  font-size: clamp(2rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.heading-center { text-align: center; }
.heading-light { color: var(--white); }

.body-text {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-text-light {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.label-red {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-top: 12px;
  display: inline-block;
}

.text-link:hover { text-decoration: underline; }

.center-cta { text-align: center; margin-top: 48px; }
.dark-cta { margin-top: 40px; }

.link-white {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.link-white:hover { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
}

.btn-red:hover { background: var(--red-hover); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
}

.btn-dark:hover { background: var(--black-soft); }

.btn-pill { border-radius: var(--radius-pill); }

.btn-sm { padding: 10px 22px; font-size: 13px; }

.btn-nav {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  text-transform: capitalize;
}

/* =============================================
   1. HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  background: #0a0a0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.42) contrast(1.08) saturate(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-overlay::before,
.hero-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 480px;
  background: var(--red);
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-overlay::before {
  left: -120px;
}

.hero-overlay::after {
  right: -120px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 64px 40px;
  display: flex;
  flex-direction: column;
}

/* Nav */
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-logo img {
  height: 44px;
  width: auto;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.hero-btn:hover { background: var(--red-hover); }

.hero-menu-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Site Menu Overlay */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-menu-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  min-height: 380px;
  border-radius: 18px;
  padding: 36px 48px 40px;
  background:
    radial-gradient(ellipse 55% 45% at 8% 12%, rgba(230, 59, 59, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 92% 88%, rgba(230, 59, 59, 0.22) 0%, transparent 70%),
    #141010;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
}

.site-menu.is-open .site-menu-card {
  transform: translateY(0) scale(1);
}

.site-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-menu-close:hover {
  color: #ff6b6b;
}

.site-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 720px;
}

.site-menu-nav {
  display: flex;
  flex-direction: column;
}

.site-menu-link {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.site-menu-link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-menu-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-menu-services-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 0 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.site-menu-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.site-menu-services.is-collapsed .site-menu-chevron {
  transform: rotate(180deg);
}

.site-menu-services-list {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}

.site-menu-services.is-collapsed .site-menu-services-list {
  display: none;
}

.site-menu-sublink {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.site-menu-sublink:hover {
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

/* Main content area */
.hero-content {
  flex: 1;
  position: relative;
  min-height: 0;
}

.hero-headline {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 65%;
}

.grad-winning {
  background: linear-gradient(90deg, #b06aff 0%, #6b8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-digital {
  background: linear-gradient(90deg, #ff7a45 0%, #e63b3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-side {
  position: absolute;
  right: 0;
  bottom: 18%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
}

.hero-side-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}

.hero-side-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.hero-btn-talk {
  align-self: flex-start;
  margin-top: 4px;
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 30, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 16px;
}

a.trust-card {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.trust-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(40, 40, 40, 0.85);
}

.trust-card strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.trust-clutch {
  gap: 8px;
}

.trust-clutch-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-clutch-text strong {
  font-size: 13px;
  line-height: 1;
}

.trust-reviews {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.trust-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin-left: 4px;
}

.trust-stars {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 1px;
  line-height: 1;
}

.trust-score {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-icon { flex-shrink: 0; }

.trust-goodfirms {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.trust-goodfirms-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-goodfirms-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--white);
  color: #121212;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.trust-stars-gold {
  font-size: 8px;
  color: #f5a623;
  letter-spacing: 1px;
  line-height: 1;
}

/* =============================================
   2. ABOUT SECTION — 3 columns: stack | video | copy
   ============================================= */
.section-about {
  background: #ffffff;
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 48px;
  align-items: center;
}

.about-media {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-width: 0;
  max-width: 734px;
}

/* Col 1: stacked images — total height must equal video */
.about-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 200px;
  flex-shrink: 0;
  height: 520px;
}

.about-img-top {
  width: 200px;
  height: 158px;
  flex-shrink: 0;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-phone-wrap {
  position: relative;
  width: 200px;
  flex: 1;
  min-height: 0;
}

.about-img-phone {
  width: 200px;
  height: 100%;
  min-height: 338px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-red-card {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  background: #e63b3b;
  border-radius: 12px;
  padding: 10px 10px 8px;
  color: var(--white);
}

.about-red-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-red-text {
  font-size: 8px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.about-avatars {
  display: flex;
  align-items: center;
}

.about-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #e63b3b;
  flex-shrink: 0;
}

.about-avatar + .about-avatar { margin-left: -6px; }

.about-avatar:nth-child(1) { background: linear-gradient(135deg, #fda4af, #e11d48); z-index: 4; }
.about-avatar:nth-child(2) { background: linear-gradient(135deg, #93c5fd, #2563eb); z-index: 3; }
.about-avatar:nth-child(3) { background: linear-gradient(135deg, #fde047, #ca8a04); z-index: 2; }
.about-avatar:nth-child(4) { background: linear-gradient(135deg, #86efac, #16a34a); z-index: 1; }

/* Col 2: video */
.about-video-wrap {
  width: 478px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Col 3: copy */
.about-copy {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

.about-heading {
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 32px;
}

.about-blue {
  color: #3ec8f0;
}

.about-red {
  background: linear-gradient(90deg, #e63b3b 0%, #c0392b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  font-size: 14px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 20px;
  max-width: 480px;
}

.about-text:last-of-type {
  margin-bottom: 28px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  align-self: flex-start;
  transition: background 0.2s;
}

.about-btn:hover {
  background: var(--black-soft);
}

/* =============================================
   3. SERVICES TABS
   ============================================= */
.services-heading { margin-bottom: 40px; }

.services-split { align-items: center; }

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--grey-200);
  margin-bottom: 24px;
}

.tab-btn {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--grey-400);
  background: none;
  border: none;
  padding: 14px 0 14px 20px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active {
  color: var(--black);
  border-left-color: var(--red);
}

.tab-btn:hover:not(.active) { color: var(--grey-600); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 380px;
}

.phone-img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.15);
}

/* =============================================
   4. EXPLORE MORE PROJECTS
   ============================================= */
.projects {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 110px;
  overflow: hidden;
}

.projects-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.projects-glow-tr {
  width: 520px;
  height: 520px;
  background: #e63b3b;
  opacity: 0.18;
  top: -8%;
  right: -6%;
}

.projects-glow-bl {
  width: 480px;
  height: 480px;
  background: #e63b3b;
  opacity: 0.12;
  bottom: -10%;
  left: -8%;
}

.projects-container {
  position: relative;
  z-index: 1;
}

.projects-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.projects-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.projects-accent {
  color: #e63b3b;
}

.projects-subtitle {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* Staggered 2-col grid — image size 727×712 */
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 727px));
  justify-content: center;
  gap: 48px 40px;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card-offset {
  margin-top: 72px;
}

.project-media {
  position: relative;
  width: 100%;
  max-width: 727px;
  aspect-ratio: 727 / 712;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.project-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.project-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 10px;
}

.project-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  max-width: 640px;
}

.project-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.project-link:hover {
  opacity: 0.75;
}

.project-link span {
  font-size: 16px;
}

.projects-footer {
  text-align: center;
  margin-top: 64px;
}

.projects-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.projects-cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

/* Legacy glow classes used elsewhere */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-red {
  width: 500px;
  height: 500px;
  background: var(--red);
  opacity: 0.12;
  top: -10%;
  right: -15%;
}

.glow-blue {
  width: 400px;
  height: 400px;
  background: var(--blue);
  opacity: 0.08;
  bottom: -10%;
  left: -10%;
}

/* =============================================
   5. OUR DIGITAL PROCESS
   ============================================= */
.section-process {
  background: var(--white);
  padding: 100px 0;
}

.process-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 28px 56px;
  align-items: start;
}

.process-title {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--black);
}

.process-grad {
  background: linear-gradient(90deg, #4db8e8 0%, #7b5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-cards {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-card {
  background: #f2f2f2;
  border-radius: 24px;
  padding: 32px 36px;
}

.process-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
}

.process-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  border-bottom: none;
}

.process-tab {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #999;
  background: none;
  border: none;
  padding: 0 0 6px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.process-tab.active {
  color: var(--black);
  border-bottom-color: var(--red);
  font-weight: 600;
}

.process-tab:hover:not(.active) {
  color: #666;
}

.process-panels {
  position: relative;
}

.process-panel {
  display: none;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

.process-panel.active {
  display: block;
}

/* iMac mockup */
.process-imac {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 580px;
}

.imac {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imac-bezel {
  width: 100%;
  background: #1a1a1a;
  border-radius: 14px 14px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.imac-screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  background: #000;
}

.process-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imac-chin {
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, #d4d4d4, #b8b8b8);
  border-radius: 0 0 2px 2px;
}

.imac-neck {
  width: 80px;
  height: 52px;
  background: linear-gradient(90deg, #c8c8c8, #e0e0e0, #c8c8c8);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.imac-base {
  width: 200px;
  height: 10px;
  background: linear-gradient(180deg, #d0d0d0, #a8a8a8);
  border-radius: 0 0 6px 6px;
  margin-top: -1px;
}

/* =============================================
   6. WHAT MAKES US DIFFERENT
   ============================================= */
.section-different {
  background: #0a0a0a;
  padding: 100px 0;
}

.different-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 48px;
}

.different-grad {
  background: linear-gradient(90deg, #ff6b4a 0%, #c44dff 55%, #5b8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.different-body {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Vertical tabs */
.different-tabs {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 200px;
}

.different-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
}

.different-tab:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.different-tab-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  white-space: nowrap;
}

.different-tab.active .different-tab-label {
  background: linear-gradient(90deg, #ff6b4a, #e63b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.different-tab-line {
  display: block;
  width: 24px;
  height: 2px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s;
}

.different-tab.active .different-tab-line {
  background: #e63b3b;
}

/* Main card */
.different-card {
  flex: 1;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  max-height: 420px;
}

.different-media {
  flex: 1;
  min-width: 0;
  background: #111;
}

.different-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.different-content {
  flex: 1;
  min-width: 0;
  background: #1c1c1c;
  padding: 48px 44px;
  display: flex;
  align-items: center;
}

.different-panel {
  display: none;
}

.different-panel.active {
  display: block;
}

.different-panel-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.different-panel-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
}

/* =============================================
   7. TESTIMONIAL
   ============================================= */
.section.testimonial {
  overflow: visible;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.clutch-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.clutch-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.clutch-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-600);
  letter-spacing: -0.01em;
}

.rating-badge {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.rating-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
}

.rating-of {
  font-size: 14px;
  color: var(--grey-600);
  margin-right: 8px;
}

.rating-stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 1px;
}

.quote-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 52px 60px;
  overflow: hidden;
}

.quote-card::before,
.quote-card::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
}

.quote-card::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-lg) 0 0 0;
}

.quote-card::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
  border-radius: 0 0 var(--radius-lg) 0;
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.65;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--black);
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-author strong { font-size: 14px; }
.quote-author span { font-size: 13px; color: var(--grey-600); }

.quote-company {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--grey-200);
}

/* =============================================
   8. LATEST INSIGHTS
   ============================================= */
.insights-section {
  background: var(--white);
  padding: 80px 0;
}

.insights-box {
  background: #f3f4f6;
  border-radius: 20px;
  padding: 40px 36px 44px;
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.insights-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.insights-grad {
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insights-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  transition: background 0.2s;
}

.insights-btn:hover {
  background: #2a2a2a;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.insight-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.insight-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.insight-tags {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.insight-tags span {
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.insight-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--black);
  margin-bottom: 10px;
}

.insight-excerpt {
  font-size: 12px;
  line-height: 1.65;
  color: #666;
  margin-bottom: 16px;
  flex: 1;
}

.insight-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.insight-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

.insight-author-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}

.insight-stars {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 1px;
}

.insight-meta {
  font-size: 11px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

.insight-meta svg {
  flex-shrink: 0;
}

.insight-arrow {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity 0.2s;
}

.insight-arrow:hover {
  opacity: 0.6;
}

/* =============================================
   9. TECHBEHEMOTHS AWARD
   ============================================= */
.section-award {
  background: var(--white);
  padding: 100px 0;
}

.award-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.award-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.award-title-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.award-title-link:hover {
  opacity: 0.85;
}

.award-black {
  color: var(--black);
}

.award-blue {
  color: #3b82f6;
}

.award-orange {
  color: #f97316;
}

.award-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.award-text strong {
  font-weight: 700;
  color: var(--black);
}

.award-visual {
  display: flex;
  justify-content: center;
}

.award-tablet {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  max-width: 380px;
  width: 100%;
}

.award-tablet-screen {
  border-radius: 8px;
  overflow: hidden;
  background: #f5f0e8;
}

.award-cert {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   10. WEBSITE DESIGN COST CALCULATOR
   ============================================= */
.calculator-section {
  background: var(--white);
  padding: 40px 24px 64px;
}

.calculator-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  min-height: 332px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  background-image: url("../assets/images/Website Design Cost Calculator/1ac3c545f7a9e222c931722867bfadb795c516b6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.calculator-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 64px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.calculator-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.calculator-grad {
  color: #6ecfff;
}

.calculator-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-calculator {
  gap: 10px;
  padding: 13px 32px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.calculator-btn-arrow {
  font-size: 15px;
  line-height: 1;
}

.btn-calculator:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   11. MORE REVIEWS FROM OUR CLIENTS
   ============================================= */
.reviews-section {
  padding: 72px 0 88px;
}

.reviews-heading {
  font-size: clamp(2.125rem, 3.2vw, 2.625rem);
  font-weight: 800;
  color: var(--black);
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.reviews-grad {
  color: #3b82f6;
}

.reviews-sub {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 44px;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 52px;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  z-index: 2;
}

.reviews-arrow.prev { left: 0; }
.reviews-arrow.next { right: 0; }

.reviews-arrow:hover {
  background: var(--red-hover);
}

.reviews-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  min-height: 680px;
}

.review-phone {
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.review-phone:not(.is-active) {
  transform: translateY(28px) scale(0.96);
  opacity: 0.92;
}

.review-phone.is-active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.review-phone-shell {
  position: relative;
  width: 302px;
  height: 623px;
  background: #0a0a0a;
  border-radius: 46px;
  padding: 7px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.review-phone.is-active .review-phone-shell {
  width: 318px;
  height: 656px;
  border-radius: 48px;
  padding: 8px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.2);
}

.review-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 18px;
  z-index: 2;
}

.review-phone.is-active .review-phone-notch {
  top: 14px;
  width: 94px;
  height: 26px;
}

.review-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 40px;
}

.review-phone.is-active .review-phone-img {
  border-radius: 42px;
}

.review-phone-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 40%, rgba(0, 0, 0, 0.88) 100%);
}

.review-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 2px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.review-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.review-meta span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 32px;
}

.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s;
}

.reviews-dot.is-active {
  background: var(--red);
}

/* =============================================
   12. FAQ
   ============================================= */
.faq-layout { align-items: start; }

.faq-heading { line-height: 1.15; }

.faq-item { border-bottom: 1px solid var(--grey-200); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-toggle {
  font-size: 20px;
  font-weight: 400;
  color: var(--grey-400);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-a { max-height: 200px; padding-bottom: 20px; }

.faq-a p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
}

/* =============================================
   13. FOOTER
   ============================================= */
.footer {
  background: #121212;
  color: var(--white);
  padding: 80px 0 36px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 2fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  line-height: 1.65;
  color: #a0a0a0;
  max-width: 280px;
}

.footer-office + .footer-office {
  margin-top: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.footer-hello {
  padding-top: 2px;
}

.footer-email {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 18px;
}

.footer-email:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 6px;
}

.footer-form {
  width: 100%;
}

.footer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 24px;
}

.footer-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-field label {
  font-size: 12px;
  font-weight: 400;
  color: #a0a0a0;
}

.footer-field input,
.footer-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 0 0 10px;
  outline: none;
  resize: none;
}

.footer-field input::placeholder,
.footer-field textarea::placeholder {
  color: #7a7a7a;
}

.footer-field input:focus,
.footer-field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.footer-field-full {
  margin-bottom: 28px;
}

.footer-field-full textarea {
  min-height: 72px;
}

/* Footer SMS Consent Checkbox */
.footer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  margin-bottom: 20px;
}

.footer-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--red);
}

.footer-check a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-check a:hover {
  color: var(--red);
}

.footer-check--sms {
  margin-top: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-check--sms span {
  font-size: 13px;
  line-height: 1.5;
}

.footer-sms-details {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.footer-sms-details a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-sms-details a:hover {
  color: var(--red);
}

.footer-submit {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-pill);
  background: #ef4444;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-submit:hover {
  background: #dc2626;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-legal a {
  font-size: 13px;
  color: #a0a0a0;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* =============================================
   ABOUT US PAGE
   ============================================= */
.about-hero {
  position: relative;
  min-height: 72vh;
  color: var(--white);
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.45) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 64px 80px;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
}

.about-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding-top: 40px;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-hero-cyan {
  color: #4db8e8;
}

.about-hero-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  max-width: 520px;
}

.about-intro {
  background: var(--white);
  padding: 96px 0;
}

.about-intro-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.about-intro-left {
  max-width: 560px;
}

.about-intro-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--black);
}

.about-intro-cyan {
  color: #4db8e8;
}

.about-intro-grad {
  background: linear-gradient(90deg, #ff7a45 0%, #e63b3b 45%, #7b5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  transition: background 0.2s;
}

.about-intro-btn:hover {
  background: var(--red-hover);
}

.about-intro-right {
  padding-top: 4px;
}

.about-intro-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.about-intro-badge-icon {
  width: 71px;
  height: 71px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #f5f5f5;
  border: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-badge-icon span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  max-width: 180px;
}

.about-intro-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.35;
}

.about-intro-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey-600);
}

.about-framework {
  background: #f7f7f7;
}

.about-framework-pin {
  padding: 96px 0;
  background: #f7f7f7;
  box-sizing: border-box;
}

.about-framework:not(.is-codebrit-passive) .codebrit-tab {
  cursor: default;
}

.about-framework-title {
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--black);
}

.codebrit-tabs {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 300px;
}

.codebrit-tab {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  flex-shrink: 0;
}

.codebrit-tab.is-active {
  flex: 1;
  min-width: 0;
}

.codebrit-collapsed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: 300px;
  width: 76px;
  padding: 22px 12px 18px;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.codebrit-expanded {
  display: none;
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.codebrit-tab.is-active .codebrit-collapsed {
  display: none;
}

.codebrit-tab.is-active .codebrit-expanded {
  display: flex;
  width: 100%;
}

.codebrit-dark {
  background: var(--black);
  width: 130px;
  flex-shrink: 0;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.codebrit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.codebrit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: var(--white);
}

.codebrit-letter {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 400;
  color: #d4d4d4;
  line-height: 1;
}

.codebrit-letter-lg {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.codebrit-content {
  flex: 1;
  background: var(--white);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.codebrit-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.codebrit-content p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey-600);
  max-width: 520px;
}

.about-services-dark {
  background: var(--black);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.about-services-dark::before,
.about-services-dark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-services-dark::before {
  width: 400px;
  height: 400px;
  background: rgba(230, 59, 59, 0.15);
  top: -100px;
  left: -100px;
}

.about-services-dark::after {
  width: 350px;
  height: 350px;
  background: rgba(59, 91, 219, 0.12);
  bottom: -80px;
  right: -80px;
}

.about-services-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.about-services-title .accent-red { color: var(--red); }
.about-services-title .accent-cyan { color: #4db8e8; }

.about-accordion {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-accordion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.about-accordion-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.about-accordion-item.is-open .about-accordion-arrow {
  transform: rotate(180deg);
}

.about-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.about-accordion-item.is-open .about-accordion-body {
  max-height: 520px;
  padding-bottom: 24px;
}

.about-accordion-content {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: start;
}

.about-accordion-content p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.about-accordion-img {
  border-radius: 12px;
  overflow: hidden;
}

.about-accordion-img img {
  width: 100%;
  height: auto;
}

.about-process {
  background: var(--black);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.about-process::before,
.about-process::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(230, 59, 59, 0.14);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.about-process::before {
  left: -140px;
  top: 20%;
}

.about-process::after {
  right: -120px;
  bottom: 10%;
}

.about-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-process-left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-process-grad {
  background: linear-gradient(90deg, #4db8e8 0%, #7b5cff 55%, #c44dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-process-left p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

.about-process-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.about-process-phone-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  aspect-ratio: 487 / 534;
}

.about-process-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-process-chart {
  position: absolute;
  right: 28px;
  bottom: 32px;
  width: 52%;
  max-width: 220px;
  min-width: 150px;
  z-index: 3;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.about-process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-process-step {
  position: relative;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 22px 24px 22px 22px;
}

.about-process-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}

.about-process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  padding-right: 48px;
}

.about-process-step p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.about-trust {
  background: #f7f7f7;
  padding: 96px 0;
}

.about-trust-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.about-trust-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.about-trust-grad {
  background: linear-gradient(90deg, #e63b3b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-trust-intro {
  font-size: 13px;
  line-height: 1.75;
  color: #555;
  max-width: 480px;
  margin-left: auto;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-trust-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.about-trust-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.about-trust-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-600);
}

.about-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.about-award-copy .award-title {
  margin-bottom: 24px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .split,
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-form {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-stack {
    width: 160px;
    height: auto;
    min-height: 420px;
  }

  .about-img-top {
    width: 160px;
    height: 132px;
  }

  .about-phone-wrap,
  .about-img-phone {
    width: 160px;
  }

  .about-img-phone {
    min-height: 276px;
  }

  .about-video-wrap {
    width: calc(100% - 172px);
    flex: 1;
    min-width: 260px;
    height: auto;
    aspect-ratio: 478 / 520;
  }

  .about-copy { padding-left: 0; }

  .process-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }

  .process-title,
  .process-cards,
  .process-imac {
    grid-column: 1;
    grid-row: auto;
  }

  .process-imac {
    max-width: 480px;
    margin: 0 auto;
  }

  .different-body {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .different-tabs {
    flex-direction: row;
    min-width: 0;
    overflow-x: auto;
  }

  .different-tab {
    border-bottom: none;
    border-top: none;
    padding: 12px 16px;
    white-space: nowrap;
  }

  .different-tab:first-child {
    border-top: none;
  }

  .different-card {
    flex-direction: column;
    max-height: none;
  }

  .different-media {
    aspect-ratio: 16 / 10;
  }

  .different-content {
    padding: 32px 28px;
  }

  .about-img-top { width: 160px; height: 160px; }
  .about-phone-wrap { width: 160px; flex: none; }
  .about-img-phone { width: 160px; height: 260px; min-height: 0; }

  .hero-headline {
    position: relative;
    top: auto;
    transform: none;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .hero-side {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
  }

  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insights-box { padding: 32px 24px; }

  .award-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .award-tablet {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-intro-split,
  .about-process-grid { grid-template-columns: 1fr; }
  .about-trust-header { grid-template-columns: 1fr; gap: 20px; }
  .about-trust-intro { margin-left: 0; max-width: none; }
  .about-trust-grid { grid-template-columns: 1fr 1fr; }
  .codebrit-tabs { flex-wrap: wrap; }
  .codebrit-tab.is-active { flex: 1 1 100%; order: -1; }

  .calculator-title { font-size: clamp(1.875rem, 4vw, 2.625rem); }
  .calculator-content { padding: 56px 32px; }
  .calculator-card { min-height: 300px; }

  .reviews-carousel { padding: 0 44px; }
  .reviews-phones { min-height: 560px; gap: 16px; }

  .review-phone-shell {
    width: 250px;
    height: 515px;
  }

  .review-phone.is-active .review-phone-shell {
    width: 268px;
    height: 552px;
  }

  .projects-masonry {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-card-offset {
    margin-top: 0;
  }

  .project-media {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --section-y: 64px;
  }

  .hero-inner { padding: 20px 24px 32px; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-logo img { height: 36px; }
  .hero-content { min-height: auto; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-media {
    flex-direction: column;
    align-items: center;
  }

  .about-video-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 478 / 520;
  }

  .about-stack {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 0;
  }

  .insights-grid { grid-template-columns: 1fr; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial-top { flex-direction: column; }
  .quote-card { padding: 32px 24px; }
  .faq-layout { grid-template-columns: 1fr; }
  .reviews-carousel { padding: 0 40px; }
  .reviews-phones { min-height: 500px; gap: 12px; }
  .review-phone-shell {
    width: 220px;
    height: 455px;
    border-radius: 36px;
    padding: 6px;
  }
  .review-phone.is-active .review-phone-shell {
    width: 240px;
    height: 495px;
    border-radius: 38px;
    padding: 7px;
  }
  .review-phone-img { border-radius: 32px; }
  .review-phone.is-active .review-phone-img { border-radius: 34px; }
  .reviews-arrow { width: 32px; height: 32px; }
  .reviews-arrow svg { width: 8px; height: 14px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-media {
    flex-direction: column;
    align-items: center;
  }

  .about-stack,
  .about-video-wrap,
  .about-copy { width: 100%; }

  .about-stack { width: 100%; max-width: 280px; height: auto; min-height: 0; }
  .about-img-top { width: 100%; height: auto; aspect-ratio: 200 / 158; }
  .about-phone-wrap { width: 100%; }
  .about-img-phone { width: 100%; height: auto; aspect-ratio: 200 / 338; min-height: 0; }
  .about-video-wrap {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 478 / 520;
  }
  .reviews-phones {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  .review-phone:not(.is-active) { display: none; }
  .review-phone.is-active { transform: none; }
  .calculator-section { padding-left: 20px; padding-right: 20px; }
  .calculator-content { padding: 44px 20px; }
  .calculator-title { font-size: 1.75rem; }
  .calculator-text { font-size: 13px; }
  .calculator-card { min-height: 280px; border-radius: 20px; }
  .hero-trust { gap: 8px; }
  .trust-card { padding: 8px 12px; }
  .hero-btn-hire span { display: none; }
  .site-menu { padding: 24px 20px; }
  .site-menu-card { padding: 32px 24px; min-height: auto; }
  .site-menu-grid { grid-template-columns: 1fr; gap: 32px; max-width: none; }
  .site-menu-link,
  .site-menu-services-toggle { font-size: 18px; }
  .site-menu-sublink { font-size: 12px; }
  .site-menu-close { top: 18px; right: 18px; }

  .about-hero-inner { padding: 20px 24px 48px; }
  .about-intro-split,
  .about-framework-wrap,
  .about-process-grid,
  .about-trust-header,
  .about-trust-grid { grid-template-columns: 1fr; }
  .about-trust-intro { margin-left: 0; max-width: none; }
  .about-process-visual { max-width: 100%; }
  .about-process-chart { right: 16px; bottom: 20px; width: 55%; max-width: 180px; }
  .codebrit-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .codebrit-tab:not(.is-active) .codebrit-collapsed { min-height: 260px; width: 64px; }
  .about-accordion-content { grid-template-columns: 1fr; }

  .seo-hero-inner { padding: 20px 24px 56px; }
  .seo-split,
  .seo-dark-box,
  .seo-partner-header,
  .seo-contact-grid { grid-template-columns: 1fr; }
  .seo-process-row { grid-template-columns: 1fr !important; }
  .seo-process-row .seo-process-img { order: -1; }
  .seo-services-grid { grid-template-columns: 1fr; }
  .geo-benefits-grid { grid-template-columns: 1fr; }
}
