:root {
  --deep-navy: #1E2A44;
  --deep-purple: #5A3F73;
  --magenta-ink: #8C3A6B;
  --slate-grey: #5E6B78;
  --light-grey: #F2F4F7;
  --pure-white: #FFFFFF;
  --gradient: linear-gradient(90deg, #1E2A44 0%, #5A3F73 50%, #8C3A6B 100%);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--deep-navy);
  background: var(--pure-white);
  line-height: 1.6;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(30, 42, 68, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--deep-navy);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle::after {
  content: '';
  border: solid var(--deep-navy);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -3px;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(30, 42, 68, 0.15);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  margin-top: 12px;
  list-style: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--pure-white);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--deep-navy);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--light-grey);
  color: var(--magenta-ink);
}

.nav-cta {
  background: var(--deep-navy);
  color: var(--pure-white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--deep-purple) !important;
  color: var(--pure-white) !important;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu svg {
  width: 24px;
  height: 24px;
  color: var(--deep-navy);
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-5deg); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 42, 68, 0.85) 0%, rgba(90, 63, 115, 0.8) 50%, rgba(140, 58, 107, 0.75) 100%);
  z-index: 1;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float-reverse 10s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 25%;
  animation: float 12s ease-in-out infinite;
  animation-delay: -2s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation: pulse 4s ease-in-out infinite;
}

.shape-5 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  right: 15%;
  animation: float-reverse 9s ease-in-out infinite;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--pure-white);
  animation: fadeInUp 1s ease forwards;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #fff 0%, #e8a4c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--pure-white);
  color: var(--deep-navy);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--pure-white);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--pure-white);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-graphic {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.graphic-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.graphic-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.graphic-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--pure-white);
}

.graphic-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--pure-white);
}

/* Page Hero (for subpages) */
.page-hero {
  padding: 180px 24px 100px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-purple) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 42, 68, 0.85) 0%, rgba(90, 63, 115, 0.8) 50%, rgba(140, 58, 107, 0.75) 100%);
  z-index: 1;
}

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

.page-hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.page-hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Content */
.service-content {
  padding: 80px 24px;
}

.service-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.service-intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.service-intro p {
  font-size: 17px;
  color: var(--slate-grey);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.feature-card {
  background: var(--pure-white);
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 42, 68, 0.1);
  border-color: rgba(140, 58, 107, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--magenta-ink);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--slate-grey);
  line-height: 1.6;
}

.service-cta {
  text-align: center;
  padding: 60px;
  background: var(--light-grey);
  border-radius: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.service-cta p {
  font-size: 17px;
  color: var(--slate-grey);
  margin-bottom: 24px;
}

.service-cta .btn-primary {
  background: var(--deep-navy);
  color: var(--pure-white);
}

.service-cta .btn-primary:hover {
  background: var(--deep-purple);
}

/* About Page */
.about-page {
  padding: 80px 24px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.about-section-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.about-section-content p {
  font-size: 16px;
  color: var(--slate-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section-image .image-placeholder {
  background: var(--light-grey);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section-image .image-placeholder svg {
  width: 120px;
  height: 120px;
  color: var(--deep-navy);
  opacity: 0.3;
}

.values-section {
  margin-bottom: 100px;
}

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

.value-card {
  background: var(--light-grey);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 42, 68, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--pure-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--magenta-ink);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--slate-grey);
  line-height: 1.6;
}

.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.why-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.why-content > p {
  font-size: 16px;
  color: var(--slate-grey);
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 20px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-list li svg {
  width: 24px;
  height: 24px;
  color: var(--magenta-ink);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-list li strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
}

.why-list li span {
  font-size: 14px;
  color: var(--slate-grey);
  line-height: 1.5;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--deep-navy);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-number span {
  color: var(--magenta-ink);
}

.stat-card .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-image {
    order: -1;
  }

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

  .why-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

  .about-section-content h2,
  .why-content h2 {
    font-size: 28px;
  }
}

/* Stats */
.stats {
  padding: 60px 24px;
  background: var(--pure-white);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--magenta-ink);
}

.stat-label {
  font-size: 15px;
  color: var(--slate-grey);
}

/* Services Section */
.services {
  padding: 100px 24px;
  background: var(--light-grey);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta-ink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--slate-grey);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 42, 68, 0.1);
  border-color: rgba(140, 58, 107, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light-grey);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--magenta-ink);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--slate-grey);
  line-height: 1.6;
}

/* About */
.about {
  padding: 100px 24px;
  background: var(--pure-white);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  background: var(--light-grey);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.about-image svg {
  width: 120px;
  height: 120px;
  color: var(--deep-navy);
  opacity: 0.3;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--slate-grey);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature svg {
  width: 24px;
  height: 24px;
  color: var(--magenta-ink);
  flex-shrink: 0;
}

.about-feature span {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-navy);
}

/* Why Choose Us */
.why {
  padding: 100px 24px;
  background: var(--deep-navy);
  color: var(--pure-white);
}

.why .section-label {
  color: var(--magenta-ink);
}

.why .section-title {
  color: var(--pure-white);
}

.why .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
  padding: 32px;
}

.why-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-icon svg {
  width: 36px;
  height: 36px;
  color: var(--magenta-ink);
}

.why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Contact */
.contact {
  padding: 100px 24px;
  background: var(--light-grey);
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--slate-grey);
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--pure-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--magenta-ink);
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--slate-grey);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--magenta-ink);
}

.contact-form {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(30, 42, 68, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(30, 42, 68, 0.15);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--magenta-ink);
}

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

.form-submit {
  width: 100%;
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--deep-purple);
}

/* Footer */
footer {
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 60px 24px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 80px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--magenta-ink);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--pure-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 140px 24px 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .shape-1, .shape-3 {
    display: none;
  }

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

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

  .about-image {
    order: -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .page-hero h1 {
    font-size: 40px;
  }
}

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

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-shapes .shape {
    display: none;
  }

  .shape-2 {
    display: block !important;
    width: 150px;
    height: 150px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

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

  .section-title {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

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

  .page-hero {
    padding: 120px 24px 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .service-cta {
    padding: 40px 24px;
  }

  .service-cta h2 {
    font-size: 26px;
  }
}
