/* ===== FONTS ===== */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --purple-dark: #1a0733;
  --purple: #230A41;
  --purple-light: #351460;
  --orange: #F6A300;
  --orange-light: #f8b533;
  --white: #ffffff;
  --gray-light: #f5f5f7;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--orange) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 60%, var(--purple-light) 125%);
  color: var(--white);
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-light) 60%, var(--purple) 125%);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--purple-dark);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 60%, var(--purple-light) 125%);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-light) 60%, var(--purple) 125%);
}

/* Nav dropdown — Storitve hover menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-arrow {
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--purple-dark);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(8px);
  border: 1px solid rgba(246, 163, 0, 0.15);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
  background: rgba(246, 163, 0, 0.12);
  color: var(--orange-light);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Ensure dropdown trigger inherits nav link underline behavior */
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after {
  width: 100%;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--purple-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 10, 65, 0.7);
  z-index: 0;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(246, 163, 0, 0.15);
  border: 1px solid rgba(246, 163, 0, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator — bouncing arrow at bottom of hero */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  transition: border-color var(--transition), background var(--transition);
}

.scroll-indicator:hover .scroll-arrow {
  border-color: var(--orange);
  background: rgba(246, 163, 0, 0.15);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-visual-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(246, 163, 0, 0.15), transparent);
  pointer-events: none;
}

.about-visual-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-visual-box p {
  opacity: 0.85;
  line-height: 1.7;
}

.about-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  border-radius: 20px;
  opacity: 0.2;
}

/* ===== SERVICES ===== */
.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Service card — video background with text overlay, 3.75:3 aspect ratio */
.service-card {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(35, 10, 65, 0);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.75 / 3;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 10, 65, 0.1);
}

/* Background video — fills the entire card */
.service-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay so white text is readable over the video */
.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 10, 65, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* Text sits on top of the overlay */
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FEATURED WORK ===== */
.work {
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.work-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(35, 10, 65, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 10, 65, 0.15);
}

.work-card-video {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: var(--purple-dark);
}

/* Self-hosted portfolio video — fills the 16:9 container */
.portfolio-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blurred overlay with YouTube button — sits on top of the video.
   Starts fully transparent (invisible). JS adds "show" class after 1s of hover/focus,
   which fades in the blur + button. */
.portfolio-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: rgba(35, 10, 65, 0);
  cursor: pointer;
  pointer-events: none;
  transition: backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease, background 0.8s ease;
}

/* "show" class added by JS after 1s delay — fades in blur and dark tint */
.portfolio-video-overlay.show {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(35, 10, 65, 0.2);
  pointer-events: auto;
}

/* Red YouTube button — hidden by default, fades in with overlay */
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: #FF0000;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow var(--transition);
}

.portfolio-video-overlay.show .yt-btn {
  opacity: 1;
  transform: scale(1);
}

.portfolio-video-overlay.show:hover .yt-btn {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.work-card-info {
  padding: 1.5rem;
}

.work-card-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--purple-dark);
}

.work-card-info .client {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.work-card-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
}

.pricing .section-subtitle {
  max-width: 640px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-light);
  border-radius: 16px;
  padding: 2rem;
  border-top: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 10, 65, 0.08);
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pricing-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pricing-range {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.pricing-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-light);
  transition: color var(--transition);
}

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

.pricing-quick {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-quick::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(246, 163, 0, 0.1), transparent);
  pointer-events: none;
}

.pricing-quick h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  color: var(--orange);
}

.pricing-quick p {
  opacity: 0.85;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.pricing-quick-btn {
  position: relative;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-quick {
    padding: 2rem;
  }
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: var(--white);
}

.contact-centered {
  text-align: center;
}

.contact-centered .section-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-centered .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.contact-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-btn-icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
  flex-shrink: 0;
}

.btn-contact {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}


/* ===== LEGAL / TERMS ===== */
.legal {
  background: var(--gray-light);
}

.legal .section-subtitle {
  max-width: 700px;
}

/* Arrow-pointed list of PDF document links */
.legal-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.75rem;
}

.legal-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  margin-right: 0.75rem;
}

.legal-list a {
  color: var(--purple);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color var(--transition);
}

.legal-list a:hover {
  color: var(--orange);
}

/* ===== FOOTER ===== */
.footer {
  background: #120626;
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ===== PORTFOLIO PAGE ===== */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero .section-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition);
}

.portfolio-item.hidden {
  display: none;
}

/* ===== WHY V KADRU ===== */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--orange);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 10, 65, 0.08);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1;
  text-align: center;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PROCESS ===== */
.process {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: var(--white);
}

.process .section-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 30px);
  width: calc(100% - 60px + 2rem);
  height: 2px;
  background: var(--orange);
  opacity: 0.25;
}

.process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* ===== SERVICE PAGES ===== */

/* Clickable service cards on index.html */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(246, 163, 0, 0.2);
  border: 1px solid rgba(246, 163, 0, 0.4);
  border-radius: 50px;
  color: var(--orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

a.service-card:hover .service-card-link {
  background: var(--orange);
  color: var(--white);
  transform: translateX(4px);
}

/* Service page hero — two-column layout */
.sp-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sp-hero-text {
  position: relative;
  z-index: 1;
}

.sp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

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

.sp-hero .section-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.sp-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: none;
}

.sp-hero-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sp-hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Problem section — readable paragraphs */
.sp-problem-text {
  max-width: 750px;
}

.sp-problem-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.sp-problem-text p:last-child {
  margin-bottom: 0;
}

/* Process timeline */
.sp-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sp-timeline-step {
  text-align: center;
  position: relative;
}

/* Connector line between steps */
.sp-timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 30px);
  width: calc(100% - 60px + 2rem);
  height: 2px;
  background: var(--orange);
  opacity: 0.25;
}

.sp-timeline-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.sp-timeline-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sp-timeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sp-techniques {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--orange);
}

.sp-techniques h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sp-techniques p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Audience list */
.sp-audience-list {
  max-width: 750px;
  margin-top: 2rem;
}

.sp-audience-item {
  padding: 1rem 0 1rem 2.25rem;
  position: relative;
  border-bottom: 1px solid rgba(35, 10, 65, 0.06);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.05rem;
}

.sp-audience-item:last-child {
  border-bottom: none;
}

.sp-audience-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Deliverables grid */
.sp-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sp-deliverable-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(35, 10, 65, 0.06);
}

.sp-deliverable-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sp-deliverable-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing signal section */
.sp-pricing {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: var(--white);
  text-align: center;
}

.sp-pricing .section-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-pricing-range {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1rem;
}

.sp-pricing p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.sp-pricing-examples {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.sp-pricing-example {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-pricing-example:last-child {
  border-bottom: none;
}

.sp-pricing-example-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.sp-pricing-example-price {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.sp-pricing-closing {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Quick project invitation on service pages */
.sp-quick-project {
  background: var(--white);
}

.sp-quick-card {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sp-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(246, 163, 0, 0.1), transparent);
  pointer-events: none;
}

.sp-quick-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--orange);
  position: relative;
}

.sp-quick-card p {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.sp-quick-btn {
  position: relative;
}

@media (max-width: 768px) {
  .sp-pricing-example {
    flex-direction: column;
    gap: 0.25rem;
  }

  .sp-quick-card {
    padding: 2rem;
  }
}

/* Portfolio examples on service pages */
.sp-examples .work-grid {
  max-width: 800px;
}

.sp-examples-placeholder {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-light);
  border-radius: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.sp-examples-placeholder a {
  color: var(--orange);
  font-weight: 600;
}

.sp-examples-placeholder a:hover {
  text-decoration: underline;
}

/* FAQ accordion */
.sp-faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.sp-faq-item {
  border-bottom: 1px solid rgba(35, 10, 65, 0.1);
}

.sp-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.sp-faq-question:hover {
  color: var(--orange);
}

.sp-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.sp-faq-item.open .sp-faq-question::after {
  transform: rotate(45deg);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.sp-faq-item.open .sp-faq-answer {
  max-height: 500px;
}

.sp-faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Final CTA — reuses .contact styles, service-specific override */
.sp-final-cta .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICE PAGES — RESPONSIVE ===== */
@media (max-width: 968px) {
  .sp-hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sp-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-timeline-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 8rem 0 3rem;
  }

  .sp-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .sp-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .sp-examples .work-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Tablet: keep 2 columns for services/work/portfolio grids */
  .services-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--purple-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile dropdown — inline expand instead of hover popup */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: none;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin-top: 0.5rem;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    padding: 0.5rem 0;
  }

  .nav-dropdown-menu a {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .work-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
