/* ============================================
   SCROLL TRIO MEDIA - Complete Design System
   Premium Digital Marketing Agency
   ============================================ */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Brand Colors */
  --color-primary: #00D4FF;
  --color-secondary: #E91E8C;
  --color-accent: #FF8C00;
  
  /* Background Colors */
  --color-bg-dark: #0A1628;
  --color-bg-darker: #060E1A;
  --color-bg-card: #132742;
  
  /* Text Colors */
  --color-text-light: #FFFFFF;
  --color-text-muted: #94A3B8;
  --color-text-dark: #1E293B;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  --gradient-primary-hover: linear-gradient(135deg, #00B8E6 0%, #D11B7D 50%, #E67E00 100%);
  --gradient-dark: linear-gradient(180deg, #0A1628 0%, #060E1A 100%);
  
  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
  
  /* Layout */
  --container-max: 1280px;
  --container-padding: 1.5rem;
  --header-height: 80px;
}

/* ============================================
   BASE STYLES
   ============================================ */
html, body {
  background-color: #0A1628 !important;
  color: #FFFFFF !important;
  font-family: 'DM Sans', sans-serif !important;
  margin: 0 !important;
  padding: 0 !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif !important;
  color: #FFFFFF !important;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: 2.25rem; font-weight: 800; }
h2 { font-size: 1.875rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
  margin: 0 0 1rem;
  color: #94A3B8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background-color: #0A1628 !important;
}

.section-darker {
  background-color: #060E1A !important;
}

.section-light {
  background-color: #FFFFFF !important;
}

.section-light h1, .section-light h2, .section-light h3,
.section-light h4, .section-light h5, .section-light h6 {
  color: #1E293B !important;
}

.section-light p {
  color: #64748B;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00D4FF;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #94A3B8;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 14, 26, 0.99) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF !important;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
  text-decoration: none;
}

.dropdown-link:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
}

.header-cta {
  display: none;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
  display: none !important;
}

.nav-mobile.active {
  display: block !important;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #060E1A;
  padding: 2rem;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.nav-mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-link:hover {
  color: #00D4FF;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: #FFFFFF !important;
  border: 2px solid #00D4FF;
}

.btn-secondary:hover {
  background: #00D4FF;
  color: #0A1628 !important;
}

.btn-white {
  background: #FFFFFF;
  color: #0A1628 !important;
}

.btn-white:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: #00D4FF;
  color: #00D4FF !important;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: #0A1628 !important;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%);
  z-index: -1;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #00D4FF;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #94A3B8;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

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

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
}

.hero-visual {
  display: none;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #132742 !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(233, 30, 140, 0.2));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.card-link {
  color: #00D4FF;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link:hover {
  gap: 0.5rem;
}

/* ============================================
   GRIDS
   ============================================ */
.services-grid { display: grid; gap: 1.5rem; }
.portfolio-grid { display: grid; gap: 1.5rem; }
.blog-grid { display: grid; gap: 1.5rem; }
.team-grid { display: grid; gap: 1.5rem; }
.features-grid { display: grid; gap: 2rem; }
.process-grid { display: grid; gap: 2rem; }
.pricing-grid { display: grid; gap: 1.5rem; }
.testimonials-grid { display: grid; gap: 1.5rem; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
  background: #132742;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.portfolio-category {
  font-size: 0.875rem;
  color: #00D4FF;
  margin-bottom: 0.25rem;
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.portfolio-stat {
  font-size: 0.875rem;
  color: #94A3B8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-stars {
  color: #FFB800;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #FFFFFF;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #94A3B8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%) !important;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.875rem;
  color: #FFFFFF !important;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-step {
  text-align: center;
  padding: 2rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(233, 30, 140, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.process-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #00D4FF;
  margin-bottom: 0.5rem;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-text {
  font-size: 1rem;
  color: #94A3B8;
}

/* ============================================
   FEATURES
   ============================================ */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(233, 30, 140, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.9375rem;
  color: #94A3B8;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
  position: relative;
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
  border-color: #00D4FF;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, #132742 50%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.pricing-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 0.875rem;
  color: #94A3B8;
}

.pricing-features {
  list-style: none !important;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #94A3B8;
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: '✓';
  color: #00D4FF;
  font-weight: 700;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #FFFFFF;
  background: #132742 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.15s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #00D4FF;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94A3B8;
}

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

.form-select {
  cursor: pointer;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #00D4FF;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: #00D4FF;
}

.faq-icon {
  flex-shrink: 0;
  color: #00D4FF;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

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

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: #94A3B8;
  line-height: 1.7;
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0A1628;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00D4FF;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #94A3B8;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: #132742;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.newsletter-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-text {
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
}

.newsletter-input::placeholder {
  color: #94A3B8;
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 1rem;
}

/* ============================================
   LOGO CLOUD
   ============================================ */
.logo-cloud {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-cloud-label {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94A3B8;
  margin-bottom: 2rem;
}

.logo-cloud-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.6;
}

.logo-cloud-item {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ============================================
   TEAM
   ============================================ */
.team-card {
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4FF 0%, #E91E8C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: #00D4FF;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060E1A !important;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #94A3B8;
  text-decoration: none;
  transition: all 0.15s ease;
}

.social-link:hover {
  background: #00D4FF;
  color: #0A1628;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #00D4FF;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #94A3B8;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #94A3B8;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #00D4FF;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  background: #0A1628;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header-bg {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #94A3B8;
}

.breadcrumb a:hover {
  color: #00D4FF;
}

.breadcrumb-separator {
  color: #94A3B8;
}

.breadcrumb-current {
  color: #FFFFFF;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: #132742;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(233, 30, 140, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 500;
  color: #FFFFFF;
}

.contact-value a {
  color: #FFFFFF;
}

.contact-value a:hover {
  color: #00D4FF;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 1.5rem; }
.mb-xl { margin-bottom: 2rem; }
.mb-2xl { margin-bottom: 3rem; }

.mt-0 { margin-top: 0 !important; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 1.5rem; }
.mt-xl { margin-top: 2rem; }

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
  
  .section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .newsletter-form {
    flex-direction: row;
  }
  
  .page-title {
    font-size: 3rem;
  }
  
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .mobile-toggle {
    display: none !important;
  }
  
  .nav-desktop {
    display: block !important;
  }
  
  .header-cta {
    display: block !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-visual {
    display: block;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  }
  
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .page-title {
    font-size: 3.5rem;
  }
}
