/* ============================================
   LODE MEDIA - Website Styles v3
   Young, bold, creator energy
   ============================================ */

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

:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --pink: #EC4899;
  --orange: #F97316;
  --yellow: #FBBF24;
  --cyan: #06B6D4;
  --green: #10B981;
  --dark: #18181B;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gradient-1: linear-gradient(135deg, #7C3AED, #EC4899, #F97316);
  --gradient-2: linear-gradient(135deg, #06B6D4, #7C3AED);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', var(--font-main);
  --max-width: 1180px;
  --section-pad: 100px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(3rem, 6.5vw, 5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); letter-spacing: -0.01em; }

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  -webkit-text-fill-color: var(--purple);
  background: none;
  color: var(--purple);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-gradient {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--purple);
  border-radius: 50px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.header.scrolled .logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 1.025rem;
  white-space: nowrap;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.header.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-links a:hover {
  color: var(--white);
}

.header.scrolled .nav-links a:hover {
  color: var(--purple);
}

.nav-home {
  font-weight: 700 !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
}

.nav-home:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

.header.scrolled .nav-home {
  color: var(--purple) !important;
  -webkit-text-fill-color: var(--purple) !important;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE) !important;
}

.header.scrolled .nav-home:hover {
  background: var(--purple) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.nav-cta {
  padding: 12px 30px !important;
  font-size: 1rem !important;
  background: var(--white) !important;
  color: var(--dark) !important;
  border-radius: 50px;
  font-weight: 600;
}

.header.scrolled .nav-cta {
  background: var(--gradient-1) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background: var(--dark);
}

/* ============================================
   HERO — bright gradient background
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 25%, #06B6D4 50%, #10B981 75%, #FBBF24 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Video background hero */
.hero-video {
  background: var(--dark);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-video::after {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6) 0%, rgba(6, 182, 212, 0.4) 50%, rgba(16, 185, 129, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 4px 60px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}

.hero h1 .gradient-text {
  background: none;
  -webkit-text-fill-color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 8px;
  text-decoration-thickness: 4px;
}

.hero-sub, .hero-content > p {
  font-size: 1.35rem;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-buttons .btn {
  padding: 20px 44px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: none;
}

.hero-buttons .btn-outline {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  border-width: 2px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
  background: var(--white) !important;
  color: var(--dark) !important;
  border-color: var(--white) !important;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat h3, .stat-item h3 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-stat p, .stat-item p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

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

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

.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; color: var(--gray-600); font-size: 0.95rem; }

.about-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--purple);
  transition: var(--transition);
}

.about-feature:hover {
  background: #F5F3FF;
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.about-feature h3, .about-feature h4 { margin-bottom: 6px; font-size: 1.3rem; font-weight: 800; }
.about-feature p { font-size: 1rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE, #DDD6FE);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--purple-light);
  font-size: 0.85rem;
  border-radius: var(--radius);
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  padding: 180px 0 60px;
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 30%, #06B6D4 60%, #10B981 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  text-align: center;
}

.page-hero-video {
  position: relative;
  overflow: hidden;
}

.page-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.page-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.7) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(16, 185, 129, 0.4) 100%);
  z-index: 1;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* --- Founder Section --- */
.founder {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-image {
  position: sticky;
  top: 100px;
}

.founder-image .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  border-radius: var(--radius) !important;
}

.founder-video {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 9 / 16;
  max-height: 600px;
}

.founder-story h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.founder-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 32px !important;
  font-style: italic;
}

.founder-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.founder-story p strong {
  color: var(--dark);
}

.founder-closing {
  font-size: 1.15rem !important;
  color: var(--dark) !important;
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 2px solid var(--purple);
}

.about-features-section {
  padding: 80px 0;
  background: var(--gray-50);
}

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

@media (max-width: 1024px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }
  .founder-image {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

.about-image-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--purple-light);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   SERVICES — bright cards
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-subtitle { margin: 12px auto 0; }

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

.service-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.service-card-icon, .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-card-icon svg, .service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   WORK — self-hosted-ready video cards
   ============================================ */
.work {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--white);
}

.work-header {
  text-align: center;
  margin-bottom: 56px;
}

.work-header .section-label {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--purple-light);
}

.work-header h2 { color: var(--white); }
.work-header .section-subtitle { color: rgba(255, 255, 255, 0.6); margin: 12px auto 0; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.work-card:hover { transform: translateY(-6px); }

.work-card-media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  /* Fallback gradient shown until poster/video loads */
  background: radial-gradient(ellipse at 30% 20%, rgba(59, 123, 246, 0.35), transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0, 194, 255, 0.25), transparent 60%),
              linear-gradient(135deg, #0F1729 0%, #1A2540 100%);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.35s ease, outline 0.2s ease;
  outline: 1px solid rgba(255, 255, 255, 0.06);
}

.work-card:hover .work-card-media {
  box-shadow: 0 30px 80px -20px rgba(59, 123, 246, 0.4);
  outline-color: rgba(0, 194, 255, 0.4);
}

/* Self-hosted reel — poster shows by default, video plays on hover (see js/main.js) */
.work-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none; /* let click bubble to the parent <a> */
}

.work-card-brand {
  position: absolute;
  top: 18px;
  left: 18px;
  height: 28px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 3;
}

.work-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  z-index: 3;
  transition: opacity 0.25s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.work-card-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

/* Hide the play button while hovering — video itself becomes the affordance */
.work-card:hover .work-card-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}

.work-card-views {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.work-card-meta {
  padding: 18px 4px 0;
}

.work-card-meta h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.3;
}

.work-card-platform {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

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

.work-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.work-cta .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ============================================
   CLIENTS — scrolling logos
   ============================================ */
.clients {
  padding: 64px 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.clients-header {
  text-align: center;
  margin-bottom: 40px;
}

.clients-scroll {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  flex-shrink: 0;
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.client-logo img {
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.client-logo svg {
  height: auto;
}

/* ============================================
   PACKAGES — with featured gradient card
   ============================================ */
.packages {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.packages-header {
  text-align: center;
  margin-bottom: 56px;
}
.packages-header .section-subtitle { margin: 12px auto 0; }

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

.package-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--gray-100);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  background: var(--gradient-1);
  border: none;
  color: var(--white);
  position: relative;
  transform: scale(1.04);
}

.package-card.featured:hover {
  transform: scale(1.06);
}

.package-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  margin-bottom: 16px;
}

.package-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 24px;
}

.package-price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
}

.package-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.featured .package-divider {
  background: rgba(255, 255, 255, 0.2);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.package-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.featured .package-features li svg {
  stroke: var(--white);
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

.featured .btn-primary {
  background: var(--white);
  color: var(--purple);
  box-shadow: none;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
}

.contact-detail p { font-size: 0.9rem; color: var(--gray-600); }
.contact-detail a { color: var(--purple); font-weight: 500; }

.contact-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-status { margin-top: 12px; font-size: 0.85rem; }

/* --- Contact method icons --- */
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- Feature icons (about page) --- */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
  fill: none;
}

/* ============================================
   HOMEPAGE TEASERS
   ============================================ */
.section-teaser {
  padding: 72px 0;
  text-align: center;
}

.section-teaser .container {
  max-width: 680px;
}

.section-teaser h2 {
  margin-bottom: 12px;
}

.section-teaser p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.section-teaser .btn-outline {
  margin-top: 8px;
}

.section-teaser.alt-bg {
  background: var(--gray-50);
}

.section-teaser.dark-bg {
  background: var(--dark);
  color: var(--white);
}

.section-teaser.dark-bg h2 { color: var(--white); }
.section-teaser.dark-bg p { color: rgba(255, 255, 255, 0.6); }

.section-teaser.dark-bg .section-label {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--purple-light);
}

.section-teaser.dark-bg .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.section-teaser.dark-bg .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.home-work-preview {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.home-work-preview .instagram-media {
  margin: 0 auto !important;
  max-width: 100% !important;
  border-radius: var(--radius) !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 25%, #06B6D4 50%, #10B981 75%, #FBBF24 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.9;
}

.footer-social-icons a:hover {
  transform: scale(1.15);
  opacity: 1;
}

.footer-social-icons svg {
  width: 32px;
  height: 32px;
}

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

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  font-weight: 500;
}

.footer-nav-col a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.active a { color: var(--gray-700); }

  .about-content,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

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

  .work-grid { gap: 24px; }

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

  .hero-stats { gap: 40px; }

  .package-card.featured { transform: scale(1); }
}

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

  .hero-stats { flex-direction: column; gap: 24px; }

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

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

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

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ========== POLICY PAGES ========== */
.policy-content {
  padding: 4rem 0 6rem;
}

.policy-content .container {
  max-width: 800px;
}

.policy-updated {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.policy-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.policy-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.policy-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--pink);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--gray-50);
  color: var(--dark);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
