/* =============================================
   DEEPFRAME MEDIA — Global Styles
   Mobile-first, SEO-optimized, Premium feel
   ============================================= */

/* --- Google Fonts loaded via <link> in HTML <head> for better performance --- */

/* --- CSS Custom Properties --- */
:root {
  --orange: #FF5500;
  --orange-light: #FF7733;
  --orange-dark: #CC4400;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --grey: #333333;
  --grey-mid: #666666;
  --grey-light: #999999;
  --off-white: #F5F4F2;
  --white: #FFFFFF;

  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography Scale --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--grey-light);
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-light);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* --- Color Utilities --- */
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-grey { color: var(--grey-light); }
.bg-dark { background-color: var(--dark); }
.bg-dark-2 { background-color: var(--dark-2); }
.bg-off-white { background-color: var(--off-white); color: var(--dark); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container { padding: 0 32px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 85, 0, 0.35);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--orange);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.logo-image {
  width: auto;
  height: 36px;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-image {
    height: 28px;
    width: auto;
  }
}

/* When the full-logo image is present, hide the redundant text lockup */
.nav-logo:has(.logo-image) .logo-text { display: none; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--orange);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 2px 4px;
  border-radius: 4px;
}

.lang-btn[aria-pressed="true"] {
  color: var(--orange);
}

.lang-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
}

@media (max-width: 767px) {
  .lang-toggle {
    margin-left: auto;
    margin-right: 8px;
  }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--white);
}

.nav-mobile-link.active {
  color: var(--orange);
}

.nav-mobile-cta {
  margin-top: 32px;
}

/* --- Hero Section --- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(255,85,0,0.07) 0%, transparent 70%);
}

.hero-grid {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-desc {
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-number span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--grey-light);
  font-weight: 500;
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 56px;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,85,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255,85,0,0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,85,0,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey-light);
}

/* --- Portfolio / Work Grid --- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: rgba(255,85,0,0.4);
  color: var(--white);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@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 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-2);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

/* Always show info on mobile */
@media (max-width: 767px) {
  .portfolio-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  }
}

.portfolio-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,85,0,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-card-arrow {
  opacity: 1;
}

/* Featured large card */
.portfolio-card.featured {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .portfolio-card.featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}

/* Card placeholder (gradient bg) */
.portfolio-card-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-2);
}

.about-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-light);
}

.about-list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,85,0,0.15);
  border: 1.5px solid var(--orange);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF5500'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5' stroke='%23FF5500' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  counter-increment: step;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(255,85,0,0.25);
  transform: translateY(-4px);
}

.process-step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,85,0,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.process-step:hover .process-step-number {
  color: rgba(255,85,0,0.25);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey-light);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255,85,0,0.2);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-light);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--grey-light);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--orange);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-section * { position: relative; }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-cta-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-outline-white:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,85,0,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact-info-sub {
  font-size: 0.825rem;
  color: var(--grey-light);
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  background: rgba(255,85,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
}

.form-select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
}

.contact-form-progress {
  margin-bottom: 24px;
}

.contact-form-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.contact-form-progress-fill {
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width var(--transition);
}

.contact-form-step-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.contact-form-step-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.contact-form-step-label.is-active {
  color: var(--orange);
}

.contact-form-step {
  display: none;
}

.contact-form-step.is-active {
  display: block;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.contact-form-actions-between {
  justify-content: space-between;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--white);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,85,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
  font-size: 1.5rem;
}

/* --- Footer --- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--grey-light);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 0.8rem;
  color: var(--grey-light);
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--orange);
}

/* --- About Page --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,85,0,0.2);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--dark-3);
}

.team-card-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  overflow: hidden;
}

.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card-info {
  padding: 16px;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.78rem;
  color: var(--orange);
}

/* --- Values --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(255,85,0,0.2);
  transform: translateY(-2px);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,85,0,0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255,85,0,0.1) 0%, transparent 70%);
}

.page-hero > * { position: relative; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- Divider --- */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  border: none;
}

/* ── Premium overrides: warmer, editorial, less tech ── */

/* Softer dark background – warmer black */
body { background-color: #0E0E0E; }
:root { --dark: #0E0E0E; --dark-2: #161616; --dark-3: #1E1E1E; }

/* Testimonial cards — no harsh border */
.testimonial-card {
  background: #161616;
  border-color: rgba(255,255,255,0.05);
}

/* Process steps — cleaner */
.process-step { background: #161616; border-color: rgba(255,255,255,0.05); }

/* Service card text slightly larger */
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); }
.service-card h3 { font-size: 1.05rem; font-weight: 600; }

/* Eyebrow label: no dot on inner pages */
.page-hero .label { margin-bottom: 0; }

/* Section labels — a touch smaller, airier */
.label { letter-spacing: 0.14em; font-size: 0.72rem; }

/* Nav — transparent until scrolled, even cleaner */
.nav { background: transparent; }

/* CTA section — slightly less intense */
.cta-section { border-radius: var(--radius-xl); }

/* Footer top border softer */
.footer { background: #0E0E0E; border-top: 1px solid rgba(255,255,255,0.05); }

/* Marquee even softer */
.marquee-wrapper { background: transparent; border-color: rgba(255,255,255,0.04); padding: 18px 0; }
.marquee-item { color: rgba(255,255,255,0.2); font-size: 0.75rem; letter-spacing: 0.12em; }
.marquee-dot { background: rgba(255,85,0,0.5); }

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--grey);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* --- Selection --- */
::selection {
  background: rgba(255,85,0,0.3);
  color: var(--white);
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.max-w-2xl { max-width: 640px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 800px; margin-left: auto; margin-right: auto; }
.hidden { display: none !important; }

/* --- Portfolio hidden items (filter) --- */
.portfolio-card[data-hidden="true"] {
  display: none;
}

/* --- Marquee / ticker --- */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  background: var(--dark-2);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* --- Instagram Gallery Section --- */
.ig-embed {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 40px;
  /* Grid fallback if embed contains multiple items */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Keep any injected iframes/scripts responsive */
.ig-embed iframe,
.ig-embed > * {
  max-width: 100%;
  height: auto;
}

/* When embed fills itself, reset the grid so it doesn't interfere */
.ig-embed:not(:empty) {
  display: block;
}

.ig-follow-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.ig-follow-link:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--orange);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════
   PROMO MODAL — "24h Free Website Audit" promotional popup
   Matches: dark glass card, orange accents, blur overlay, radius-xl
   ═══════════════════════════════════════════════════════════════════ */

/* ── Prevent body scroll when modal is open ── */
body.promo-open { overflow: hidden; }

/* ── Overlay ─────────────────────────────────────────────────────── */
#promoOverlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#promoOverlay:not([hidden]) {
  animation: promoFadeIn 0.25s ease forwards;
}
@keyframes promoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Modal card ──────────────────────────────────────────────────── */
#promoModal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1101;
  width: min(540px, calc(100% - 32px));
  max-height: 90vh;
  overflow: auto;
  overscroll-behavior: contain;
  /* glass-dark card — subtle orange tint at top-left */
  background:
    linear-gradient(160deg, rgba(255,85,0,0.04) 0%, transparent 38%),
    #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 85, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 40px 36px 36px;
}
#promoModal:not([hidden]) {
  animation: promoSlideIn 0.42s cubic-bezier(0.34, 1.46, 0.64, 1) forwards;
}
@keyframes promoSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px)) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Exit animation — JS adds .promo-closing before re-setting hidden */
#promoModal.promo-closing {
  animation: promoSlideOut 0.22s ease forwards !important;
}
#promoOverlay.promo-closing {
  animation: promoFadeOut 0.22s ease forwards !important;
}
@keyframes promoSlideOut {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0; transform: translate(-50%, calc(-50% + 14px)) scale(0.97); }
}
@keyframes promoFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ── Mobile: bottom-sheet style (< 480px) ─── */
@media (max-width: 479px) {
  #promoModal {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-height: 92svh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 28px 20px 40px;
  }
  #promoModal:not([hidden]) {
    animation: promoSlideUp 0.38s cubic-bezier(0.34, 1.46, 0.64, 1) forwards;
  }
  @keyframes promoSlideUp {
    from { opacity: 0; transform: translateY(60px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  #promoModal.promo-closing {
    animation: promoSlideDown 0.22s ease forwards !important;
  }
  @keyframes promoSlideDown {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(60px); }
  }
}

/* ── Close button ────────────────────────────────────────────────── */
#promoClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
#promoClose:hover {
  background: rgba(255, 85, 0, 0.18);
  color: var(--white);
}
#promoClose:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── Language toggle inside modal ────────────────────────────────── */
.promo-lang-toggle {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.promo-lang-toggle .lang-btn {
  background: none;
  border: none;
  padding: 4px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.promo-lang-toggle .lang-btn[aria-pressed="true"] {
  color: var(--orange);
}
.promo-lang-toggle .lang-btn:hover {
  color: var(--white);
}
.promo-lang-toggle .lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  line-height: 1;
}

/* ── Modal header ────────────────────────────────────────────────── */
.promo-modal-header {
  margin-top: 36px; /* push below the toggle + close button row */
  margin-bottom: 24px;
  text-align: left;
}
.promo-modal-header .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.promo-modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.promo-modal-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
}

/* ── Step progress dots ──────────────────────────────────────────── */
.promo-progress {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.promo-progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}
.promo-progress-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--transition);
  line-height: 1;
}
/* Active step */
.promo-progress-step--active {
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.12);
}
.promo-progress-step--active .promo-progress-num {
  color: var(--orange);
}
/* Completed step */
.promo-progress-step--done {
  border-color: var(--orange);
  background: var(--orange);
}
.promo-progress-step--done .promo-progress-num {
  color: var(--white);
}
/* Connector line */
.promo-progress-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 6px;
  transition: background var(--transition);
}
.promo-progress-line--done {
  background: var(--orange);
}

/* ── Step title ──────────────────────────────────────────────────── */
.promo-step-title {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

/* ── Field wrapper ───────────────────────────────────────────────── */
.promo-field {
  margin-bottom: 14px;
}
.promo-field label,
.promo-field-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 8px;
}

/* ── Text / URL inputs ───────────────────────────────────────────── */
.promo-field input[type="text"],
.promo-field input[type="url"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.promo-field input[type="text"]::placeholder,
.promo-field input[type="url"]::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.promo-field input[type="text"]:focus,
.promo-field input[type="url"]:focus {
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}

/* ── Select ──────────────────────────────────────────────────────── */
.promo-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 13px 40px 13px 16px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  /* chevron icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.promo-field select:focus {
  border-color: var(--orange);
  background-color: rgba(255, 85, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
}
.promo-field select option {
  background: #1e1e1e;
  color: var(--white);
}

/* ── Radio pill group ────────────────────────────────────────────── */
.promo-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.promo-radio-option {
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  user-select: none;
  text-align: center;
}
.promo-radio-option:hover {
  border-color: rgba(255, 85, 0, 0.35);
  color: var(--white);
  background: rgba(255, 85, 0, 0.04);
}
/* Hide native radio dot */
.promo-radio-option input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
/* Checked state via :has() — supported in all modern browsers */
.promo-radio-option:has(input[type="radio"]:checked) {
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.1);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 85, 0, 0.15);
}

/* ── Step nav (back / next row) ──────────────────────────────────── */
.promo-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.promo-step-nav .btn {
  flex: 1;
  justify-content: center;
}
/* Solo "Continue" on step 1 — full width, no back button */
#promoStep1 .promo-btn-next {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  display: flex;
}

/* ── Disclaimer line ─────────────────────────────────────────────── */
.promo-disclaimer {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ── Success state ───────────────────────────────────────────────── */
.promo-success {
  text-align: center;
  padding: 12px 0 4px;
}
.promo-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.12);
  border: 2px solid rgba(255, 85, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.9rem;
  color: var(--orange);
  box-shadow: 0 0 48px rgba(255, 85, 0, 0.2);
  animation: promoSuccessPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes promoSuccessPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.promo-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.promo-success p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── Very small screens: stack radios vertically ─────────────────── */
@media (max-width: 360px) {
  .promo-radio-group {
    flex-direction: column;
  }
  .promo-radio-option {
    justify-content: flex-start;
    flex: unset;
    width: 100%;
  }
}

/* --- WhatsApp Floating Button --- */
.wa-fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  animation: wa-float 3s ease-in-out infinite;
}

.wa-fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-fab::before,
.wa-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}

.wa-fab::after {
  animation-delay: 1.2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.wa-fab svg {
  position: relative;
  z-index: 1;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
