/* Layout - Container, Header, Navigation, Sections, Grid */

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Header */
header {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 3rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section - Centered Layout */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

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

.hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.05em;
}

.typing-text {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

.typing-text.typing-complete {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-text::after {
  content: '|';
  display: inline-block;
  animation: blink 1s infinite;
  color: var(--accent);
  margin-left: 2px;
}

.typing-text.typing-complete::after {
  display: none;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tagline-word {
  display: inline-block;
  margin-right: 0.3em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Initial states handled by JavaScript */

.btn-text {
  display: inline-block;
}

/* Hero spiral background - Centered */
.hero-spiral-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  z-index: 1;
}

.spiral-background {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.12;
  animation: gentleRotate 60s linear infinite;
  filter: blur(0.5px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-secondary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll 2s ease infinite;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 6rem 0;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Section styling */
section {
  padding: 6rem 0;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 4rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.accent-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin: 1rem 0 3rem 0;
  border-radius: 2px;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-visual {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 25px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    15px 15px 30px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  transition: all 0.4s ease;
  cursor: pointer;
}

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

.project-card:hover .project-visual {
  transform: translateY(-10px);
  box-shadow: 
    20px 20px 40px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light);
}

.project-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-card:hover .project-visual::before {
  opacity: 0;
}

.project-emoji {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.project-content {
  padding: 0 1rem;
}

.project-type {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
}

.project-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.project-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.project-tag {
  padding: 0.6rem 1.2rem;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
  transition: all 0.3s ease;
}

.project-tag:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: gap 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.project-link:hover {
  gap: 1rem;
}

/* Featured project - full width */
.project-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  margin-bottom: 3rem;
}

.project-featured .project-visual {
  height: 500px;
  margin-bottom: 0;
}

/* Contact */
.contact {
  text-align: center;
  padding: 6rem 3rem;
  margin: 4rem 0;
}

.contact h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}

.contact p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border-radius: 15px;
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    10px 10px 30px var(--shadow-dark),
    -5px -5px 15px var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 0.5rem);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
}

.nav-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 209, 102, 0.05);
  padding-left: 2rem;
}

.nav-dropdown-menu a:hover::before {
  width: calc(100% - 3rem);
}

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

/* Active state for dropdown (mobile/click) */
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 0.5rem);
}

.nav-dropdown.active .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

/* Smooth animation for dropdown arrow */
.nav-dropdown-toggle i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo with Tagline */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 2026 Launch Pricing Styles */
.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 0.75rem 2rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  text-align: center;
}

.badge-text {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-dark);
  font-family: 'Space Grotesk', sans-serif;
}

.badge-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--bg-dark);
  opacity: 0.8;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-showcase {
  margin-bottom: 3rem;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 209, 102, 0.3);
}

.agency-cost, .your-cost {
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
}

.agency-cost .price-amount {
  color: var(--text-secondary);
  text-decoration: line-through;
}

.your-cost .price-amount {
  color: var(--accent);
}

.vs-divider {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.savings-badge {
  background: var(--accent-2);
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.guarantee-item i {
  font-size: 1.2rem;
}

.hero-cta {
  margin-bottom: 2rem;
}

.urgency-element {
  text-align: center;
  color: var(--text-secondary);
}

.limited-text {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.spots-counter {
  font-size: 0.9rem;
}

.counter-number {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Pricing Grid Styles */
.pricing-grid {
  position: relative;
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  box-shadow: 
    20px 20px 40px var(--shadow-dark),
    -10px -10px 20px var(--shadow-light),
    0 0 0 2px var(--accent);
}

.popular-badge {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
}

.price-comparison-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.social-proof {
  font-size: 0.95rem;
  border-left: 3px solid var(--accent);
}

/* Image Modal */
#imageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 20px;
  overflow: auto;
}

#imageModal img {
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}