/* =============================================================
   GSDM AGENCY — Dark Industrial Brutalism Design System
   Colors: Near-black #0A0A0F | GSDM Red #F2131D | Steel #C0C8D8
   Fonts: Bebas Neue (display) | DM Sans (body) | Space Mono (accent)
   ============================================================= */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: #0A0A0F;
  color: #E8EAF0;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --red: #F2131D;
  --red-dark: #C4000A;
  --bg-primary: #0A0A0F;
  --bg-secondary: #0D0D14;
  --bg-card: #111118;
  --bg-footer: #070709;
  --white: #FFFFFF;
  --text-muted: rgba(255,255,255,0.8);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(242,19,29,0.4);
  --radius: 0;
  --container-max: 1280px;
  --transition: 0.25s ease;
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-mono    { font-family: 'Space Mono', monospace; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.9;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gsdm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-gsdm:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }

.navbar-logo img { height: 3.5rem; width: auto; object-fit: contain; }

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar-nav { display: flex; } }

.navbar-nav a, .navbar-nav button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar-nav a:hover, .navbar-nav button:hover { color: #fff; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  display: none !important;
  z-index: 100;
}
.nav-dropdown-panel[style*="display: block"],
.nav-dropdown-panel[style*="display:block"] {
  display: block !important;
}
/* Panel visibility now controlled exclusively by JS inline style */
.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-panel a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-dropdown-panel a span { color: var(--red); opacity: 1; transition: opacity 0.15s; }
.nav-dropdown-panel a:hover span { opacity: 1; }
.nav-dropdown-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.5rem;
}
.nav-dropdown-footer a {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.navbar-cta { display: none; }
@media (min-width: 768px) { .navbar-cta { display: flex; align-items: center; gap: 1rem; } }

.navbar-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--red);
  transition: color var(--transition);
}
.navbar-phone:hover { color: #fff; }
@media (min-width: 1024px) { .navbar-phone { display: flex; } }

/* Mobile menu toggle */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.5rem;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { display: block; max-height: 600px; }

.mobile-menu-inner {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-inner a, .mobile-menu-inner button {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: block;
}
.mobile-menu-inner a:hover, .mobile-menu-inner button:hover { color: var(--red); }
/* Mobile services sub-panel */
.mobile-services-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-services-toggle-btn svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-services-sub-panel {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
  margin-left: 0.25rem;
}
.mobile-services-sub-panel a {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 0.4rem 0 !important;
  border-bottom: none !important;
}
.mobile-services-sub-panel a:hover { color: var(--red) !important; }
.mobile-menu-actions { padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* Mobile menu button styles - Updated v2.1 */
.mobile-menu-actions .btn-gsdm-mobile {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--red) !important;
  color: #fff !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--transition), transform var(--transition);
  border: none !important;
  border-bottom: none !important;
  cursor: pointer;
  text-align: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
.mobile-menu-actions .btn-gsdm-mobile:hover { 
  background: var(--red-dark) !important; 
  transform: translateY(-1px); 
  color: #fff !important;
}

.mobile-menu-actions .btn-whatsapp-mobile {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: #25D366 !important;
  color: #fff !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--transition), transform var(--transition);
  border: none !important;
  border-bottom: none !important;
  cursor: pointer;
  text-align: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
.mobile-menu-actions .btn-whatsapp-mobile:hover { 
  background: #128C7E !important; 
  transform: translateY(-1px); 
  color: #fff !important;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A0A0F 0%, rgba(10, 10, 15, 0.2) 40%, rgba(10, 10, 15, 0.1) 100%)
}
.hero-bg-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0F 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0 5rem;
  max-width: 56rem;
}
.hero-label { margin-bottom: 1.5rem; }
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-headline .accent { color: var(--red); position: relative; display: inline-block; }
.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: 0.5rem; left: 0;
  width: 100%; height: 5px;
  background: rgba(242,19,29,1);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 44rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hero-sub2 {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 44rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 28rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: #F2131D;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hide hero scroll on mobile */
@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .portfolio-overlay { opacity: 1; visibility: visible; }
  
  .hero-headline .accent::after {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(242, 19, 29, 1);
  }
}

/* reCAPTCHA styling */
.g-recaptcha {
  margin: 1rem 0;
}

/* Form error styling */
.form-error {
  background: rgba(242, 19, 29, 0.1);
  border: 1px solid rgba(242, 19, 29, 0.3);
  color: #F2131D;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Form success styling improvements */
.form-success {
  text-align: center;
  padding: 2rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  display: none;
}

.form-success-icon {
  font-size: 3rem;
  color: #22C55E;
  margin-bottom: 1rem;
}

.form-success-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #22C55E;
  margin-bottom: 0.5rem;
}

.form-success-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Real-time validation styling */
.form-group {
  position: relative;
}

.validation-indicator {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 5;
}

.validation-indicator.show-valid {
  opacity: 1;
}

.validation-indicator.show-error {
  opacity: 1;
}

.validation-check {
  color: #22C55E;
  display: none;
}

.validation-error {
  color: #F2131D;
  display: none;
}

.validation-indicator.show-valid .validation-check {
  display: block;
}

.validation-indicator.show-error .validation-error {
  display: block;
}

/* Field validation states */
.form-input.field-valid,
.form-textarea.field-valid {
  border-color: #22C55E;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.form-input.field-error,
.form-textarea.field-error {
  border-color: #F2131D;
  box-shadow: 0 0 0 1px rgba(242, 19, 29, 0.2);
}

/* Mobile: Restrict clickable area to service name and arrow only */
@media (max-width: 768px) {
  .service-card {
    pointer-events: none;
  }
  
  .service-name,
  .service-arrow,
  .service-footer {
    pointer-events: auto;
  }
  
  .service-name {
    cursor: pointer;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    border-radius: 4px;
    transition: background 0.2s ease;
  }
  
  .service-name:hover {
    background: rgba(242, 19, 29, 0.05);
  }
}

/* Desktop: Full card clickable */
@media (min-width: 769px) {
  .service-card {
    pointer-events: auto;
  }
}

/* Word rotation */
.word-rotate { display: inline-block; }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-section {
  background: #070709;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker-item::before { content: '▸'; color: var(--red); opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section {
  position: relative;
  padding: 4rem 0 6rem;
  background: var(--bg-primary);
}
.services-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663396963391/NsVSQyQsCjvoZjqeE4xYNp/gsdm-services-bg-NSaJqoPKeGVWTDLkXGTtXo.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary), transparent, var(--bg-primary));
}
.section-header { margin-bottom: 4rem; }
.section-title-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-title-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1;
}
.section-title .accent { color: var(--red); }
.section-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  max-width: 30rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .section-subtitle { text-align: right; } }
.section-divider {
  margin-top: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, var(--red), rgba(255,255,255,0.1), transparent);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 19, 29, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-card:hover {
  border-color: rgba(242, 19, 29, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(242, 19, 29, 0.1);
}

.service-card:hover::before {
  left: 100%;
}
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.service-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(242,19,29,0.1);
  border: 1px solid rgba(242,19,29,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(242, 19, 29, 0.15);
  border-color: rgba(242, 19, 29, 0.4);
  transform: scale(1.05);
}
.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-name {
  color: rgba(242, 19, 29, 0.9);
}
.service-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.service-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-kw {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: rgba(242,19,29,0.9);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.service-arrow { color: rgba(255,255,255,0.2); transition: color var(--transition), transform var(--transition); }
.service-card:hover .service-arrow { color: var(--red); transform: translateX(3px); }

.services-cta { margin-top: 4rem; text-align: center; }
.services-cta p { font-size: 1.5rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio-section { padding: 4rem 0 6rem; background: var(--bg-secondary); }
.portfolio-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}
.filter-btn:hover { border-color: rgba(242,19,29,0.5); color: #fff; }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.portfolio-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.portfolio-card:hover { border-color: rgba(242,19,29,0.2); }
.portfolio-card.hidden { display: none; }

.portfolio-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.portfolio-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.6) 50%, transparent 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

/* Show portfolio overlays by default on mobile */
@media (max-width: 768px) {
  .portfolio-overlay { opacity: 1; }
}
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.75rem; }
.portfolio-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  background: rgba(242,19,29,0.7);
  border: 1px solid rgba(242,19,29,1);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-overlay-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.portfolio-overlay-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* Mobile badge */
.mobile-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(242,19,29,0.3);
  padding: 0.25rem 0.5rem;
  backdrop-filter: blur(4px);
}
.mobile-badge svg { color: var(--red); }
.mobile-badge span {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-bar {
  background: var(--bg-card);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}
.portfolio-bar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.portfolio-bar-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.125rem;
}
.portfolio-bar-actions { display: flex; align-items: center; gap: 0.375rem; }
.store-btn {
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  text-decoration: none;
}
.store-btn:hover { border-color: var(--red); background: rgba(242,19,29,0.1); color: #fff; }
.store-btn.disabled { opacity: 0.25; pointer-events: none; }
.ext-link-btn {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
  display: flex; align-items: center;
}
.ext-link-btn:hover { color: var(--red); }

/* Portfolio featured strip */
.portfolio-featured {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .portfolio-featured { grid-template-columns: 1fr 1fr; } }
.portfolio-featured-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.portfolio-featured-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.8);
}
.portfolio-featured-list li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.portfolio-featured-img { position: relative; }
.portfolio-featured-img::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(242,19,29,0.05);
  filter: blur(3rem);
  border-radius: 50%;
}
.portfolio-featured-img img { position: relative; width: 100%; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }

/* ── PROCESS ──────────────────────────────────────────────── */
.process-section { padding: 4rem 0 6rem; background: var(--bg-primary); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }

.process-step {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 19, 29, 0.05), transparent);
  transition: left 0.6s ease;
}

.process-step:hover {
  border-color: rgba(242, 19, 29, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(242, 19, 29, 0.1);
}

.process-step:hover::before {
  left: 100%;
}
.process-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(242,19,29,0.6);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-num {
  color: rgba(242, 19, 29, 0.9);
  transform: scale(1.05);
}
.process-step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.process-step:hover .process-step-title {
  color: rgba(242, 19, 29, 0.9);
}
.process-step-desc { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.process-connector {
  display: none;
  position: absolute;
  top: 50%; right: -1.5rem;
  width: 1.5rem; height: 1px;
  background: rgba(242,19,29,0.3);
}
@media (min-width: 1024px) { .process-connector { display: block; } }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section { padding: 4rem 0 6rem; background: var(--bg-secondary); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-visual { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  background: var(--red);
  padding: 1.25rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-align: center;
}
.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.about-badge-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-content { }
.about-intro { font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 2rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.about-value {
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.about-value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.about-value-desc { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.about-clients { margin-top: 2.5rem; }
.about-clients-label {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-clients-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.about-client-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(242,19,29,0.3);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { padding: 4rem 0 6rem; background: var(--bg-primary); }
.testimonials-carousel { position: relative; overflow: hidden; margin-top: 3rem; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  max-width: 48rem;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars span { color: var(--red); font-size: 0.875rem; }
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 3rem; height: 3rem;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  flex-shrink: 0;
}
.testimonial-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; color: #fff; letter-spacing: 0.05em; }
.testimonial-role { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.35); letter-spacing: 0.15em; text-transform: uppercase; }
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}
.carousel-btn:hover { border-color: var(--red); color: var(--red); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 0.5rem; height: 0.5rem;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.carousel-dot.active { background: var(--red); width: 1.5rem; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--bg-secondary);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663396963391/NsVSQyQsCjvoZjqeE4xYNp/gsdm-cta-bg-NwMX8HqVWEQGaJVfGPGNRz.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.cta-bg-overlay { position: absolute; inset: 0; background: rgba(10,10,15,0.7); }
.cta-diagonal {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4rem;
  background: var(--bg-primary);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.cta-diagonal-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4rem;
  background: var(--bg-primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.cta-title .accent { color: var(--red); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { padding: 4rem 0 6rem; background: var(--bg-primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(242,19,29,0.1);
  border: 1px solid rgba(242,19,29,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-info-value { font-size: 0.9375rem; color: rgba(255,255,255,0.8); }
.contact-hours { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--border); background: var(--bg-card); }
.contact-hours-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.contact-hours-row { display: flex; justify-content: space-between; font-size: 0.8125rem; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.contact-hours-row span:last-child { color: rgba(255,255,255,0.7); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 15px;
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-select { appearance: none; cursor: pointer; }
.form-select option {
  background: #141418;
  color: #fff;
}
.form-textarea { resize: vertical; min-height: 7rem; }
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(242,19,29,0.3);
  background: rgba(242,19,29,0.05);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2rem; color: var(--red); margin-bottom: 0.75rem; }
.form-success-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; letter-spacing: 0.05em; }
.form-success-sub { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--bg-footer); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand-logo { height: 5rem; width: auto; object-fit: contain; margin-bottom: 1.5rem; opacity: 0.9; }
.footer-brand-logo:hover { opacity: 1; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.footer-social:hover { border-color: var(--red); color: var(--red); }
.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.25rem;
}
.footer-links a::before { content: '▸'; color: rgba(255,255,255,0.8); transition: color var(--transition); font-size: 0.75rem; }
.footer-links a:hover { color: var(--red); }
.footer-links a:hover::before { color: var(--red); }
.footer-seo-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.footer-seo-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.footer-seo-tags span {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-icon { color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-contact-sub { font-family: 'Space Mono', monospace; font-size: 0.55rem; color: rgba(255,255,255,0.25); letter-spacing: 0.15em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.floating-whatsapp {
  width: 3.25rem; height: 3.25rem;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
  text-decoration: none;
}
.floating-whatsapp:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 28px rgba(37,211,102,0.6); 
  color: #fff;
}
.scroll-top-btn {
  width: 2.75rem; height: 2.75rem;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
  border: none;
  transform: translateY(10px);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--red-dark); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SERVICE PAGE LAYOUT ──────────────────────────────────── */
.service-page-hero {
  position: relative;
  padding: 8rem 0 1rem;
  overflow: hidden;
  min-height: 28rem;
  display: flex;
  align-items: center;
}
.service-page-hero-bg {
  position: absolute;
  inset: 0;
}
.service-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.97) 50%, rgba(10,10,15,0.7) 100%);
}
.service-page-hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0F 0%, transparent 60%);
}
.service-page-hero-content { position: relative; z-index: 1; max-width: 42rem; }
.service-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--red);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(242,19,29,0.3);
  background: rgba(242,19,29,0.05);
}
.service-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}
.service-page-title .accent { color: var(--red); }
.service-page-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 2rem; max-width: 36rem; }
.service-page-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.service-page-body { padding: 3rem 0 6rem; background: var(--bg-primary); }
.service-page-intro { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 4rem; max-width: 52rem; }
.service-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px)  { .service-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.feature-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; color: var(--red); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.feature-card-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.why-us-section { margin-bottom: 4rem; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }
.why-us-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.why-us-item::before { content: '✓'; color: var(--red); flex-shrink: 0; font-weight: bold; }

.process-steps-section { margin-bottom: 4rem; }
.process-steps-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.process-step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.process-step-num-badge {
  width: 3rem; height: 3rem;
  background: rgba(242,19,29,0.1);
  border: 1px solid rgba(242,19,29,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--red);
  flex-shrink: 0;
}
.process-step-content-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; color: #fff; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.process-step-content-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.pricing-section { margin-bottom: 4rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  display: flex; flex-direction: column;
}
.pricing-card.highlighted {
  border-color: rgba(242,19,29,0.4);
  background: rgba(242,19,29,0.05);
}
.pricing-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: #fff; letter-spacing: 0.05em; margin-bottom: 1rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--red); line-height: 1; }
.pricing-period { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.pricing-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 1.5rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: rgba(255,255,255,0.8); }
.pricing-feature::before { content: '✓'; color: var(--red); flex-shrink: 0; }
.pricing-cta { margin-top: auto; }

.faq-section { margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.faq-item { border: 1px solid rgba(255,255,255,0.08); background: var(--bg-card); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: #fff; }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; color: var(--red); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 20rem; }
.faq-answer-inner { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.75; }

.related-services { margin-bottom: 2rem; }
.related-services-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }
.related-service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.related-service-link:hover { border-color: var(--red); color: #fff; }
.related-service-link span { color: var(--red); font-size: 0.75rem; }

.service-contact-strip {
  background: var(--bg-card);
  border: 1px solid rgba(242,19,29,0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
}
@media (min-width: 768px) { .service-contact-strip { flex-direction: row; align-items: center; justify-content: space-between; } }
.service-contact-strip-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; color: #fff; letter-spacing: 0.05em; }
.service-contact-strip-sub { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

.section-sub-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* TRUST BADGES */
.trust-section { background: #0d0d12; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2.5rem 0; }
.trust-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); text-align: center; margin-bottom: 1.5rem; text-transform: uppercase; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 2.5rem; }
.trust-logo-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.35); transition: color 0.3s; cursor: default; }
.trust-logo-item:hover { color: var(--red); }
.trust-logo-item span { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* WHY GSDM */
.why-section { background: var(--bg-primary); padding: 6rem 0; }
.why-table-wrap { overflow-x: auto; margin-top: 3rem; }
.why-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 600px; }
.why-table thead tr { background: rgba(255,255,255,0.04); border-bottom: 2px solid var(--red); }
.why-table th { padding: 1rem 1.25rem; text-align: left; font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.why-table th.why-col-gsdm { color: var(--red); background: rgba(242,19,29,0.08); }
.why-gsdm-badge { background: var(--red); color: #fff; padding: 0.2rem 0.6rem; font-size: 0.65rem; letter-spacing: 0.08em; }
.why-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.why-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.why-table td { padding: 0.875rem 1.25rem; color: rgba(255,255,255,0.8); }
.why-table td:first-child { color: rgba(255,255,255,0.9); font-weight: 500; }
.why-table td.why-col-gsdm { background: rgba(242,19,29,0.05); color: rgba(255,255,255,0.9); font-weight: 500; }
.why-check { color: var(--red); font-weight: 700; margin-right: 0.35rem; }

/* PRICING */
.pricing-section { background: #0d0d12; padding: 6rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.pricing-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 2rem; position: relative; transition: border-color 0.3s, transform 0.3s; }
.pricing-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.pricing-card-featured { border-color: var(--red); background: rgba(242,19,29,0.05); transform: translateY(-8px); }
.pricing-card-featured:hover { transform: translateY(-12px); }
.pricing-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }
.pricing-tier { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.pricing-price { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.pricing-price span { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #fff; letter-spacing: 0.02em; line-height: 1; }
.pricing-desc { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
.pricing-check { color: var(--red); font-weight: 700; }
.pricing-feature-off { color: rgba(255,255,255,0.25) !important; }
.pricing-note { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.8); margin-top: 2.5rem; }

/* BLOG */
.blog-section { background: var(--bg-primary); padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); overflow: hidden; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--red); transform: translateY(-4px); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.blog-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.03em; color: #fff; line-height: 1.2; margin-bottom: 0.75rem; }
.blog-card-excerpt { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.blog-card-meta { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); text-transform: uppercase; display: flex; justify-content: space-between; }
.blog-card-link { display: inline-flex; align-items: center; gap: 0.4rem; font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); text-decoration: none; margin-top: 1rem; transition: gap 0.2s; }
.blog-card-link:hover { gap: 0.7rem; }

/* STANDALONE PAGES */
.page-hero { min-height: 40vh; display: flex; align-items: flex-end; padding: 8rem 0 4rem; position: relative; background: var(--bg-primary); border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(242,19,29,0.12) 0%, transparent 70%); pointer-events: none; }
.page-hero-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.page-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.02em; line-height: 0.95; color: #fff; margin-bottom: 1.5rem; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; }
.page-content { padding: 5rem 0; background: var(--bg-primary); }
.page-content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .page-content-grid { grid-template-columns: 1fr; } }
.page-prose h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.03em; color: #fff; margin: 2.5rem 0 1rem; }
.page-prose h2:first-child { margin-top: 0; }
.page-prose p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1.25rem; }
.page-prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.page-prose ul li { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 0.4rem; }
.page-prose ul li::marker { color: var(--red); }
.page-sidebar-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; }
.page-sidebar-card:first-child { position: sticky; top: 100px; background: var(--bg-card); }
.page-sidebar-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.03em; color: #fff; margin-bottom: 0.75rem; }
.page-sidebar-card p { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.5rem; text-align: center; transition: border-color 0.3s; }
.team-card:hover { border-color: var(--red); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.05em; color: #fff; margin-bottom: 0.25rem; }
.team-role { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.25rem; }
.value-card-title { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.value-card-text { font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.blog-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .blog-hero-grid { grid-template-columns: 1fr; } }
.blog-featured-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); overflow: hidden; transition: border-color 0.3s; }
.blog-featured-card:hover { border-color: var(--red); }
.blog-featured-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-featured-body { padding: 2rem; }
.blog-featured-tag { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.blog-featured-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.03em; color: #fff; line-height: 1.1; margin-bottom: 0.75rem; }
.blog-featured-excerpt { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.blog-sidebar-list { display: flex; flex-direction: column; gap: 1rem; }
.blog-sidebar-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.25rem; transition: border-color 0.3s; }
.blog-sidebar-item:hover { border-color: var(--red); }
.blog-sidebar-tag { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.blog-sidebar-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.03em; color: #fff; line-height: 1.2; margin-bottom: 0.4rem; }
.blog-sidebar-date { font-family: 'Space Mono', monospace; font-size: 0.55rem; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.08em; }
.article-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: 0.03em; color: #fff; margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.85); margin: 2rem 0 0.75rem; }
.article-body p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 0.4rem; }
.article-body ul li::marker { color: var(--red); }
.article-body blockquote { border-left: 3px solid var(--red); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(242,19,29,0.05); font-style: italic; color: rgba(255,255,255,0.7); }
.article-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.article-meta-item { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.article-meta-item span { color: rgba(255,255,255,0.8); }
