@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
  /* Colors from AppMultitenantZentek */
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --brand-color: #3b82f6;      /* Modern Blue */
  --brand-hover: #2563eb;
  --border-color: #e2e8f0;
  --danger-color: #ef4444;

  /* Gold accents from Logo */
  --gold-color: #ca9e5a;       /* Elegant Gold */
  --gold-hover: #b38848;
  --gold-light: rgba(202, 158, 90, 0.15);
  --gold-glow: rgba(202, 158, 90, 0.3);

  /* Dark theme colors for header/hero and specific sections */
  --bg-dark: #090d16;
  --bg-dark-surface: #111827;
  --border-dark: #1f2937;
  --text-light: #f8fafc;
  --text-light-muted: #9ca3af;

  /* Layout assets */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  --shadow-gold-glow: 0 0 25px rgba(202, 158, 90, 0.25);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-color);
}

/* Floating Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.85); /* Dark theme header to blend black logo */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(9, 13, 22, 0.95);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dynamic Text Logo Styles */
.logo-container {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 4px 0;
  user-select: none;
}

.logo-bar {
  width: 4px;
  background-color: var(--gold-color);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(202, 158, 90, 0.4);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.logo-subtitle-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light-muted);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.btn-client-mobile {
  display: none !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--brand-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-color), #b88a47);
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(202, 158, 90, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), #9d7337);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border: 1.5px solid var(--brand-color);
  color: var(--brand-color);
}

.btn-outline-blue:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Hero Section (Dark Tech Theme) */
.hero-section {
  padding: 160px 0 100px;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(202, 158, 90, 0.08) 0px, transparent 50%),
    radial-gradient(circle at 50% 50%, #0d1321, #090d16);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, transparent 75%, rgba(0,0,0,0.5) 120%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(202, 158, 90, 0.12);
  border: 1px solid rgba(202, 158, 90, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-border 3s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 60%, var(--text-light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--brand-color), var(--gold-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Floating Card Interactive Effect in Hero */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: all 0.5s ease;
}

.card-main {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  background: rgba(17, 24, 39, 0.7);
  border-left: 3px solid var(--gold-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-secondary {
  width: 55%;
  height: 35%;
  bottom: 0;
  right: 0;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(24px);
  padding: 20px;
  animation: float 6s ease-in-out infinite alternate;
}

.card-tertiary {
  width: 45%;
  height: 25%;
  top: 0;
  left: 0;
  background: rgba(202, 158, 90, 0.08);
  border: 1px solid rgba(202, 158, 90, 0.2);
  backdrop-filter: blur(24px);
  padding: 16px;
  animation: float 6s ease-in-out infinite alternate-reverse;
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

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

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

.section-subtitle {
  color: var(--brand-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Services Section (Grid of 4 cards) */
.services-section {
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.25);
}

.service-img-wrapper {
  width: 100%;
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}

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

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

.service-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--brand-color);
  color: white;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* About Us Section (Nosotros) */
.about-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.85rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold-color);
}

.about-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stats / Graphic representation on the other side of About Us */
.about-visual {
  position: relative;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  padding: 40px;
}

.about-card-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--brand-color);
  position: relative;
  z-index: 2;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-badge-gold {
  position: absolute;
  bottom: 0px;
  right: 10px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite alternate;
  color: var(--text-light);
}

.about-badge-icon {
  color: var(--gold-color);
}

/* Client Portal Promotion (CTA) Section */
.client-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark-surface) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.client-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.client-cta-content {
  z-index: 2;
}

.client-cta-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.client-cta-title span {
  color: var(--gold-color);
}

.client-cta-desc {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.client-cta-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.client-cta-feature-item svg {
  color: var(--brand-color);
}

.client-cta-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Glassmorphism Client Mock Card */
.portal-mock-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mock-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.mock-logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-color);
}

.mock-badge {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--brand-color);
  font-weight: 600;
}

.mock-card-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-card-label {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

.mock-card-val {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

/* Contact Section (Contacto) */
.contact-section {
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: stretch;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-card-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  background-color: var(--bg-primary);
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-color);
  background-color: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

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

.submit-btn-wrapper {
  margin-top: 8px;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateX(6px);
}

.info-icon-box {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.info-card-content p, .info-card-content a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-card-content a:hover {
  color: var(--brand-color);
}

/* Simulated Map/Visual Graphic */
.contact-map-graphic {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text-light-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.contact-map-graphic::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(202, 158, 90, 0.08) 0%, transparent 70%);
  top: 10px;
  left: 10px;
}

.map-icon {
  color: var(--gold-color);
  margin-bottom: 12px;
}

.map-title {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.map-desc {
  font-size: 0.85rem;
}

/* Success Modal Style */
.success-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(9, 13, 22, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 440px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.success-modal-overlay.active .success-modal {
  transform: translateY(0);
}

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

.success-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.success-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.footer-col-logo {
  mix-blend-mode: screen;
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-link-item a:hover {
  color: var(--gold-color);
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--gold-color);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.social-link-item {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: all 0.3s ease;
}

.social-link-item:hover {
  background: var(--brand-color);
  color: white;
  border-color: var(--brand-color);
  transform: translateY(-3px);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(202, 158, 90, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(202, 158, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(202, 158, 90, 0); }
}

/* Scroll Animation classes (handled by app.js) */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-title {
    font-size: 2.85rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 40px;
  }
  
  .about-grid, .contact-grid, .client-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .client-cta-visual {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 8px 0;
  }

  .logo-title-text {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
  }

  .logo-subtitle-text {
    font-size: 0.65rem;
  }

  .btn-client-mobile {
    display: inline-flex !important;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    border-top: 1px solid var(--border-dark);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-actions {
    display: none; /* Hide action buttons inside desktop nav, show in mobile dropdown if needed */
  }
  
  .nav-menu .btn {
    width: 100%;
    margin-top: 24px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
