/* ============================================
   E-Commerce Proposal - Merncore Branding
   Colors: #FFFFFF, #390d5c, #252259
   ============================================ */

/* CSS Variables */
:root {
  --primary: #390d5c;
  --primary-dark: #252259;
  --white: #ffffff;
  --bg-dark: #0a0612;
  --bg-section: #110a1a;
  --bg-card: rgba(57, 13, 92, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --gradient-primary: linear-gradient(135deg, #390d5c 0%, #252259 100%);
  --gradient-hero: linear-gradient(
    180deg,
    #0a0612 0%,
    #1a0f2e 50%,
    #252259 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    #6b21a8 0%,
    #390d5c 50%,
    #252259 100%
  );
  --glass-bg: rgba(57, 13, 92, 0.2);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 60px rgba(57, 13, 92, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 6, 18, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  will-change: padding, background;
  transform: translateZ(0);
}

.navbar.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(10, 6, 18, 0.95);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo:hover img {
  transform: scale(1.05);
}

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

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

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

.nav-links a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.nav-links a:not(.cta-btn):hover::after {
  width: 100%;
}

.cta-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50px;
  font-weight: 600;
  color: var(--white) !important;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(57, 13, 92, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(57, 13, 92, 0.6);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

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

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 6, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-menu .cta-btn {
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(57, 13, 92, 0.8) 0%,
    transparent 70%
  );
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(37, 34, 89, 0.8) 0%,
    transparent 70%
  );
  bottom: -20%;
  left: -10%;
  animation-delay: -7s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(107, 33, 168, 0.6) 0%,
    transparent 70%
  );
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(30px, -30px, 0) scale(1.05);
  }

  50% {
    transform: translate3d(-20px, 20px, 0) scale(0.95);
  }

  75% {
    transform: translate3d(-30px, -20px, 0) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--glass-border);
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  color: var(--white);
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }

  50% {
    transform: translate3d(-50%, 10px, 0);
    opacity: 0.5;
  }
}

/* ============================================
   Sections - General Styles
   ============================================ */
.section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.section:nth-child(even) {
  background: var(--bg-section);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  line-height: 1;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 900px;
  line-height: 1.8;
}

.section-intro strong {
  color: var(--white);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.section-intro br {
  display: block;
  content: '';
  margin-bottom: 0.5rem;
}

/* Info Box Highlight */
.info-box-highlight {
  font-weight: 500;
  background: rgba(102, 126, 234, 0.15) !important;
  padding: 1.25rem !important;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(57, 13, 92, 0.2);
}

.info-box-highlight strong {
  color: #a78bfa;
  display: inline;
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -2rem;
  margin-bottom: 2rem;
}

/* Investment Badge */
.investment-badge {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.investment-badge.large {
  padding: 1rem 2rem;
}

.investment-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.investment-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.investment-badge.large .investment-amount {
  font-size: 2rem;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  will-change: transform, box-shadow, background;
  transform: translateZ(0);
}

.glass-card:hover {
  background: rgba(57, 13, 92, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) translateZ(0);
  box-shadow: var(--shadow-glow), 0 15px 35px rgba(57, 13, 92, 0.3);
}

/* Outcome Box */
.outcome-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(57, 13, 92, 0.2) 100%
  );
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  margin-top: 2rem;
}

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  color: #22c55e;
}

.outcome-content strong {
  color: #22c55e;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.outcome-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.outcome-content p {
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Section 1: Introduction
   ============================================ */
.section-introduction .section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.intro-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 16px;
  color: var(--white);
}

.intro-card p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Section 2: Brand Identity
   ============================================ */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.deliverable-card {
  text-align: center;
  transition: var(--transition-smooth);
}

.deliverable-card:hover .deliverable-icon {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.deliverable-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 16px;
  color: var(--white);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.deliverable-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.deliverable-card p {
  color: var(--text-secondary);
}

.deliverable-card ul {
  list-style: none;
  text-align: left;
}

.deliverable-card ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  padding-left: 1.5rem;
}

.deliverable-card ul li:last-child {
  border-bottom: none;
}

.deliverable-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* Value Explanation Boxes */
.value-explanation {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3) 0%,
    rgba(57, 13, 92, 0.4) 100%
  ) !important;
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 2rem;
}

.value-explanation h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-explanation p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.value-explanation p:last-child {
  margin-bottom: 0;
}

.value-explanation strong {
  color: #c4b5fd;
}

/* Branding Details Section */
.branding-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.branding-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.branding-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  color: var(--text-secondary);
  line-height: 1.7;
}

.branding-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.branding-item ul {
  list-style: none;
  padding-left: 0;
}

.branding-item ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.branding-item ul li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.branding-item em {
  color: #fbbf24;
  font-style: normal;
  font-weight: 600;
}

/* Phase Item Cards */
.phase-item.glass-card {
  transition: var(--transition-smooth);
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border);
}

.phase-item.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  background: rgba(57, 13, 92, 0.25) !important;
}

.phase-item.glass-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.phase-item.glass-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.phase-item.glass-card p strong {
  color: var(--white);
}

.phase-item.glass-card ul {
  list-style: none;
  padding-left: 0;
}

.phase-item.glass-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.phase-item.glass-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* ============================================
   Section 3: UI/UX Design
   ============================================ */
.two-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pages-list h3,
.priorities-list h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.page-items,
.priority-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.page-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.page-icon {
  font-size: 1.5rem;
}

.page-item span:last-child {
  color: var(--text-secondary);
}

.priority-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.priority-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  color: #22c55e;
}

.priority-item span {
  color: var(--text-secondary);
}

/* ============================================
   Section 4: Website Development
   ============================================ */
.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-category h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-category h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: rgba(57, 13, 92, 0.3);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-item span {
  color: var(--text-secondary);
}

.admin-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.admin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.admin-icon {
  font-size: 2rem;
}

.admin-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
}

.tech-item svg {
  color: #22c55e;
}

/* ============================================
   Section 5: VPS Server & Security
   ============================================ */
.server-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.server-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.server-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 20px;
  color: var(--white);
}

.server-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.server-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   Section 6: Maintenance & Support
   ============================================ */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.maintenance-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
}

.year-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-tag {
  margin: 1.5rem 0;
}

.price-tag .price {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.price-tag.free .price {
  color: #22c55e;
}

.price-tag .price-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.maintenance-card p {
  color: var(--text-secondary);
}

.maintenance-includes {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}

.maintenance-includes h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

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

.include-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.include-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.include-icon {
  font-size: 1.5rem;
}

.include-item span {
  color: var(--text-secondary);
}

/* ============================================
   Section 7: Project Phases
   ============================================ */
.phases-timeline {
  position: relative;
  padding-left: 3rem;
}

.phases-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.phase-item {
  position: relative;
  margin-bottom: 2rem;
}

.phase-item:last-child {
  margin-bottom: 0;
}

.phase-number {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  z-index: 10;
  box-shadow: 0 0 30px rgba(57, 13, 92, 0.6);
}

.phase-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.phase-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.phase-content h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.phase-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   Section 8: Cost Summary
   ============================================ */
.pricing-table {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.pricing-header {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.5rem 2rem;
  background: var(--gradient-accent);
  font-weight: 600;
  font-size: 1rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-row .price {
  font-weight: 600;
  color: var(--white);
}

.pricing-total {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.5rem 2rem;
  background: rgba(34, 197, 94, 0.1);
  font-weight: 700;
  font-size: 1.125rem;
}

.total-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.total-price .currency {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.total-price .amount {
  font-size: 1.5rem;
  color: #22c55e;
}

/* ============================================
   Section 9: Conclusion
   ============================================ */
.conclusion-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 3rem;
}

.conclusion-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.conclusion-content p:last-child {
  margin-bottom: 0;
}

.conclusion-content .highlight {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-top: 2rem;
  text-align: center;
}

.conclusion-content p br {
  line-height: 2;
}

/* ============================================
   Contact / CTA Section
   ============================================ */
.section-contact {
  padding: 8rem 2rem;
  background: var(--gradient-hero);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--gradient-accent);
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(57, 13, 92, 0.5);
  transition: var(--transition-smooth);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(57, 13, 92, 0.7);
}

.contact-btn svg {
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: translateX(5px);
}

.contact-info {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-info a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info a:hover {
  color: var(--white);
}

.contact-info .divider {
  color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 3rem 2rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-text {
  text-align: center;
}

.footer-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

/* ============================================
   Animation Classes
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.slide-left {
  transform: translate3d(-50px, 0, 0);
}

.animate-on-scroll.slide-right {
  transform: translate3d(50px, 0, 0);
}

.animate-on-scroll.slide-up {
  transform: translate3d(0, 50px, 0);
}

.animate-on-scroll.scale-up {
  transform: scale(0.9) translateZ(0);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Phase Animation */
.phase-animation {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  will-change: opacity, transform;
}

.phase-animation.visible {
  animation: slideInPhase 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--delay) * 0.15s);
}

@keyframes slideInPhase {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Counter Animation */
.stat-number.counting {
  animation: countPulse 0.1s ease-out;
}

@keyframes countPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

/* Parallax Effects */
.parallax-bg {
  transition: transform 0.1s linear;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .section {
    padding: 5rem 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .investment-badge {
    margin-left: 0;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding-top: 80px;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-number {
    font-size: 2.5rem;
  }

  .intro-card {
    flex-direction: column;
    text-align: center;
  }

  .intro-icon {
    margin: 0 auto;
  }

  .phases-timeline {
    padding-left: 2.5rem;
  }

  .phases-timeline::before {
    left: 1rem;
  }

  .phase-number {
    left: -2.5rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .phase-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .pricing-header,
  .pricing-row,
  .pricing-total {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .total-price {
    justify-content: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .glass-card {
    padding: 1.5rem;
  }

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

  /* Responsive fixes for new content */
  .value-explanation {
    padding: 1.5rem !important;
  }

  .value-explanation h4 {
    font-size: 1.1rem;
  }

  .value-explanation p {
    font-size: 0.95rem;
  }

  .branding-item {
    padding: 0.75rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .section-intro strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 35px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .deliverables-grid,
  .server-features {
    grid-template-columns: 1fr;
  }

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

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

  .admin-features {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .mobile-menu,
  .scroll-indicator,
  .contact-btn {
    display: none !important;
  }

  .section {
    break-inside: avoid;
    padding: 2rem 0;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .glass-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
  }
}
