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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', 'Georgia', serif;
  background: #050505;
  color: #F5F5F5;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(216, 183, 106, 0.3);
  color: #fff;
}

/* Neural Background */
.neural-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.neural-bg .gradient-1 {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(216, 183, 106, 0.04) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.neural-bg .gradient-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  animation: pulseGlow 10s ease-in-out infinite 2s;
}

.neural-bg .gradient-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(216, 183, 106, 0.02) 0%, transparent 70%);
  animation: pulseGlow 12s ease-in-out infinite 4s;
}

.neural-bg .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.neural-bg .neural-lines {
  position: absolute;
  inset: 0;
}

.neural-bg .neural-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

/* Neural dots */
.neural-dots {
  position: absolute;
  inset: 0;
}

.neural-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(216, 183, 106, 0.3);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

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

/* Brain Illustrations */
.brain-illustration {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.brain-illustration svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1.5;
}

.brain-main {
  position: absolute;
  right: -50px;
  top: 5%;
  width: 550px;
  height: 550px;
  opacity: 0.15;
  pointer-events: none;
}

.brain-main svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1.2;
}

.brain-secondary-1 {
  position: absolute;
  left: 5%;
  bottom: 15%;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  pointer-events: none;
}

.brain-secondary-2 {
  position: absolute;
  right: 30%;
  bottom: 5%;
  width: 150px;
  height: 150px;
  opacity: 0.06;
  pointer-events: none;
}

.brain-secondary-3 {
  position: absolute;
  left: 40%;
  top: 20%;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.navbar .logo svg {
  width: 40px;
  height: 40px;
}

.navbar .logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F5F5F5;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar .logo-text span {
  color: #D8B76A;
}

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

.nav-links a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D8B76A;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #F5F5F5;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #F5F5F5;
}

.nav-links a.active::after {
  width: 100%;
  background: #D8B76A;
}

.nav-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(216, 183, 106, 0.4);
  color: #D8B76A;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.nav-btn:hover {
  background: rgba(216, 183, 106, 0.1);
  border-color: #D8B76A;
  box-shadow: 0 0 20px rgba(216, 183, 106, 0.1);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: #F5F5F5;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.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 Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 120px 40px 40px;
  transition: right 0.4s ease;
  z-index: 999;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 25px;
}

.mobile-menu ul a {
  color: #F5F5F5;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.mobile-menu ul a:hover {
  color: #D8B76A;
}

.mobile-menu .nav-btn {
  display: inline-block;
  margin-top: 10px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .line-2 {
  display: block;
  margin-top: 5px;
}

.hero-slogan {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(245, 245, 245, 0.8);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  margin: 25px 0 20px;
  line-height: 1.4;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-slogan .highlight {
  color: #D8B76A;
  font-style: normal;
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
}

.btn-primary {
  background: transparent;
  border: 1px solid #D8B76A;
  color: #D8B76A;
}

.btn-primary:hover {
  background: rgba(216, 183, 106, 0.1);
  box-shadow: 0 0 30px rgba(216, 183, 106, 0.15);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.2);
  color: rgba(245, 245, 245, 0.8);
}

.btn-secondary:hover {
  border-color: rgba(245, 245, 245, 0.5);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.3);
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 1px solid rgba(245, 245, 245, 0.15);
  border-radius: 10px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgba(245, 245, 245, 0.3);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Header */
.page-header {
  padding: 160px 80px 60px;
  position: relative;
  z-index: 1;
}

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

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(200, 200, 200, 0.7);
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  line-height: 1.6;
}

/* Sections */
section {
  padding: 80px;
  position: relative;
  z-index: 1;
}

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(200, 200, 200, 0.6);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(216, 183, 106, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 1.3rem;
  color: #F5F5F5;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  color: rgba(200, 200, 200, 0.7);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

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

/* Content page styling */
.content-page {
  padding: 0 80px 100px;
  position: relative;
  z-index: 1;
}

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

.content-text {
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.75);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  max-width: 800px;
  margin-bottom: 60px;
}

.content-text p {
  margin-bottom: 20px;
}

/* Intro section with brain right */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intro-content {
  max-width: 600px;
}

.intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.intro-visual svg {
  max-width: 350px;
  height: auto;
  opacity: 0.15;
}

/* Grid card layouts */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Activity cards */
.activity-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.activity-card:hover {
  border-color: rgba(216, 183, 106, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(5px);
}

.activity-card .uni-name {
  font-size: 1.2rem;
  color: #F5F5F5;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  gap: 20px;
}

.activity-row:last-child {
  border-bottom: none;
}

.activity-row .name {
  color: rgba(200, 200, 200, 0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(216, 183, 106, 0.3);
  color: #D8B76A;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-small:hover {
  background: rgba(216, 183, 106, 0.1);
  border-color: #D8B76A;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 35px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(216, 183, 106, 0.25);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.recommended {
  border-color: rgba(216, 183, 106, 0.3);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 30px;
  padding: 4px 16px;
  background: #D8B76A;
  color: #050505;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-card .plan-name {
  font-size: 1.3rem;
  color: #F5F5F5;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 600;
}

.pricing-card .plan-sub {
  font-size: 0.85rem;
  color: rgba(200, 200, 200, 0.5);
  font-style: italic;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2.5rem;
  color: #D8B76A;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.4);
  font-weight: 300;
}

.pricing-card .desc {
  font-size: 0.9rem;
  color: rgba(200, 200, 200, 0.6);
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.pricing-card .includes {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card .includes li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(200, 200, 200, 0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-card .includes li::before {
  content: '—';
  color: #D8B76A;
  opacity: 0.5;
}

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

/* Contact card */
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-card .contact-item {
  margin-bottom: 35px;
}

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

.contact-card .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200, 200, 200, 0.4);
  margin-bottom: 10px;
}

.contact-card .value {
  font-size: 1.5rem;
  color: #F5F5F5;
  letter-spacing: 1px;
}

.contact-card .value a {
  color: #F5F5F5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card .value a:hover {
  color: #D8B76A;
}

.contact-card .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.contact-card .social-links a {
  color: rgba(245, 245, 245, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-card .social-links a:hover {
  color: #D8B76A;
}

/* Quote section */
.quote-section {
  text-align: center;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-section blockquote {
  font-size: 1.5rem;
  color: rgba(245, 245, 245, 0.8);
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.6;
  font-weight: 300;
}

.quote-section .quote-icon {
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.2;
}

/* Section divider */
.section-divider {
  text-align: center;
  margin: 60px 0 40px;
}

.section-divider h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #F5F5F5;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Points list */
.points-list {
  list-style: none;
  margin: 20px 0 40px;
}

.points-list li {
  padding: 12px 0;
  font-size: 1rem;
  color: rgba(200, 200, 200, 0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.points-list li::before {
  content: '◆';
  color: #D8B76A;
  font-size: 0.5rem;
  margin-top: 6px;
  opacity: 0.6;
}

/* Address card */
.address-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 30px;
  margin-top: 10px;
}

.address-card .icon {
  font-size: 1.2rem;
  opacity: 0.4;
}

.address-card .address {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(200, 200, 200, 0.7);
}

.address-card .address strong {
  color: #F5F5F5;
  font-weight: 400;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  border: 1px solid #D8B76A;
  color: #D8B76A;
  background: transparent;
  margin-top: 10px;
}

.btn-cta:hover {
  background: rgba(216, 183, 106, 0.1);
  box-shadow: 0 0 30px rgba(216, 183, 106, 0.15);
  transform: translateY(-2px);
}

/* Create account button */
.btn-account {
  position: absolute;
  top: 130px;
  right: 80px;
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(216, 183, 106, 0.4);
  color: #D8B76A;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  z-index: 2;
}

.btn-account:hover {
  background: rgba(216, 183, 106, 0.1);
  border-color: #D8B76A;
  box-shadow: 0 0 20px rgba(216, 183, 106, 0.1);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 80px;
  position: relative;
  z-index: 1;
}

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

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(200, 200, 200, 0.4);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(200, 200, 200, 0.8);
}

.footer-copy {
  color: rgba(200, 200, 200, 0.3);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 0 40px;
  }

  .brain-main {
    width: 400px;
    height: 400px;
    right: -30px;
  }

  .page-header {
    padding: 140px 40px 50px;
  }

  section {
    padding: 60px 40px;
  }

  .content-page {
    padding: 0 40px 80px;
  }

  .footer {
    padding: 30px 40px;
  }

  .btn-account {
    right: 40px;
  }

  .intro-section {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-overlay {
    display: block;
  }

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

  .hero-title {
    letter-spacing: 6px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .brain-main {
    display: none;
  }

  .brain-secondary-1,
  .brain-secondary-2,
  .brain-secondary-3 {
    display: none;
  }

  .page-header {
    padding: 120px 20px 40px;
  }

  section {
    padding: 40px 20px;
  }

  .content-page {
    padding: 0 20px 60px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-visual {
    display: none;
  }

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

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

  .activity-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .activity-row:last-child .btn-small {
    align-self: flex-start;
  }

  .contact-card {
    padding: 40px 25px;
  }

  .contact-card .value {
    font-size: 1.2rem;
  }

  .footer {
    padding: 30px 20px;
  }

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

  .scroll-indicator {
    display: none;
  }

  .btn-account {
    position: static;
    display: inline-block;
    margin: 0 0 30px 20px;
  }

  .section-divider {
    margin: 40px 0 30px;
  }

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

  .quote-section blockquote {
    font-size: 1.2rem;
  }

  .card {
    padding: 30px 25px;
  }

  .pricing-card {
    padding: 30px 25px;
  }

  .navbar .logo-text {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .page-title {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .pricing-card .price {
    font-size: 2rem;
  }
}
