/*
Theme Name: AG Consulting Neobank
Theme URI: https://agconsultinginv.com/
Author: AG Consulting
Author URI: https://agconsultinginv.com/
Description: Tema moderno estilo neobanco/fintech para AG Consulting. Diseño ultra-oscuro con glassmorphism, gradientes neón, y efectos premium.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agconsulting-neobank
Tags: one-column, custom-menu, featured-images, translation-ready, dark
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #080d1a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080d1a; }
::-webkit-scrollbar-thumb { background: #1e2a4a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3b82f6; }

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card-hover {
  transition: all 0.5s ease;
}

.glass-card-hover:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRADIENT BUTTON ===== */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-gradient:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.btn-gradient-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== MESH GRADIENT BACKGROUND ===== */
.mesh-gradient {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
}

/* ===== GRADIENT BORDER ===== */
.gradient-border {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
  background-size: 300% 300%;
  animation: gradient-shift 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* ===== SECTION DIVIDERS ===== */
.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== BADGE/PILL ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.badge-blue { color: #60a5fa; }
.badge-violet { color: #a78bfa; }
.badge-emerald { color: #34d399; }

/* ===== ANIMATIONS ===== */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

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

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.7s ease forwards;
  opacity: 0;
}

.animate-fade-in-right {
  animation: fadeInRight 0.7s ease forwards;
  opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-700 { animation-delay: 0.7s; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  height: 80px;
}

.site-header.scrolled {
  background: rgba(8, 13, 26, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo-link img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* WordPress custom logo override */
.site-logo .custom-logo-link {
  display: inline-block;
}

.site-logo a {
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 16px;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
  border-radius: 9999px !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  padding: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(8, 13, 26, 0.95);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin: 12px 0 0;
  padding: 12px !important;
  border-radius: 12px !important;
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .site-logo img { height: 28px; }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,13,26,0.6), rgba(8,13,26,0.4), #080d1a);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-blue {
  top: 25%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.1);
}

.hero-orb-violet {
  bottom: 25%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.1);
  animation-delay: 1.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 128px 0;
}

.hero-content .container {
  max-width: 800px;
  margin: 0;
  padding-left: max(16px, calc((100vw - 1280px) / 2 + 32px));
}

@media (max-width: 1280px) {
  .hero-content .container {
    padding-left: 32px;
  }
}

@media (max-width: 640px) {
  .hero-content .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat svg {
  width: 16px;
  height: 16px;
}

.hero-stat span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 10;
  color: rgba(255, 255, 255, 0.3);
  animation: bounce-scroll 2s ease-in-out infinite;
  transition: color 0.3s ease;
}

.scroll-indicator:hover { color: rgba(255, 255, 255, 0.6); }

/* ===== SECTION COMMON ===== */
.section {
  position: relative;
  padding: 96px 0;
}

@media (min-width: 640px) {
  .section { padding: 128px 0; }
}

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

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-desc {
  max-width: 768px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ===== MISSION / VISION ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.mv-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,13,26,0.6), transparent);
}

.mv-text h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.mv-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .mv-reverse .mv-text { order: 1; }
  .mv-reverse .mv-image { order: 2; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-card-body {
  padding: 24px 32px 32px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* Service color variants */
.service-blue .service-icon { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0)); }
.service-blue .service-icon svg { color: #60a5fa; }
.service-blue:hover { border-color: rgba(59,130,246,0.3); }

.service-violet .service-icon { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0)); }
.service-violet .service-icon svg { color: #a78bfa; }
.service-violet:hover { border-color: rgba(139,92,246,0.3); }

.service-cyan .service-icon { background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(6,182,212,0)); }
.service-cyan .service-icon svg { color: #22d3ee; }
.service-cyan:hover { border-color: rgba(6,182,212,0.3); }

.service-emerald .service-icon { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0)); }
.service-emerald .service-icon svg { color: #34d399; }
.service-emerald:hover { border-color: rgba(16,185,129,0.3); }

.service-amber .service-icon { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0)); }
.service-amber .service-icon svg { color: #fbbf24; }
.service-amber:hover { border-color: rgba(245,158,11,0.3); }

.service-rose .service-icon { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(244,63,94,0)); }
.service-rose .service-icon svg { color: #fb7185; }
.service-rose:hover { border-color: rgba(244,63,94,0.3); }

/* ===== LEADERSHIP/CTA ===== */
.leadership-section {
  position: relative;
  overflow: hidden;
}

.leadership-bg {
  position: absolute;
  inset: 0;
}

.leadership-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.leadership-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #080d1a, rgba(8,13,26,0.9), rgba(8,13,26,0.7));
}

.leadership-glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  transform: translateY(-50%);
}

.leadership-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.leadership-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.leadership-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.leadership-pill svg { width: 16px; height: 16px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-icon-blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0));
}
.contact-card-icon-blue svg { color: #60a5fa; }

.contact-card-icon-violet {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0));
}
.contact-card-icon-violet svg { color: #a78bfa; }

.contact-card-text {
  flex: 1;
}

.contact-card-text small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-card-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-card-arrow {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-arrow { color: #60a5fa; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.social-link svg { width: 20px; height: 20px; }

/* Contact Form */
.contact-form {
  padding: 32px;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg { width: 32px; height: 32px; color: #34d399; }

.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.form-success a {
  color: #60a5fa;
  font-weight: 600;
}

.form-success a:hover { color: #93c5fd; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-brand { align-items: flex-start; }
}

.footer-brand img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.2);
}
