/* 
  Main Styles for Xploit Security Landing Page
  Author: Development Team
  Version: 1.0
*/

/* ----- Base Styles & CSS Reset ----- */
:root {
  /* Color variables */
  --color-primary: #3b82f6;        /* Blue - Primary brand color */
  --color-primary-dark: #1d4ed8;   /* Darker blue for hover states */
  --color-secondary: #10b981;      /* Green - Secondary color */
  --color-accent: #8b5cf6;         /* Purple - Accent color */
  --color-dark: #1e293b;           /* Dark blue-gray for background */
  --color-darker: #0f172a;         /* Even darker blue-gray */
  --color-light: #f8fafc;          /* Light gray for text on dark bg */
  --color-gray: #64748b;           /* Medium gray for secondary text */
  --color-success: #10b981;        /* Green for success messages */
  --color-warning: #f59e0b;        /* Yellow for warnings */
  --color-error: #ef4444;          /* Red for errors */
  --color-signal: #F73201;         /* Signal red/orange from brand palette */
  --color-navy: #012141;           /* Deep navy from brand palette */
  --color-blue-light: #406EB7;     /* Light blue from brand palette */
  --color-slate: #1F2328;          /* Slate black from brand palette */
  --color-concrete: #D9D9D9;       /* Concrete gray from brand palette */
  
  /* Typography */
  --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-heading: 'Futura PT', 'Futura', Helvetica, sans-serif;
  --font-tertiary: 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  
  /* Other variables */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Custom Font Faces */
@font-face {
  font-family: 'Futura PT';
  src: url('../assets/fonts/FuturaPTBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Futura PT';
  src: url('../assets/fonts/FuturaPTMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Code';
  src: url('../assets/fonts/FiraCode-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../assets/fonts/HelveticaNeue.ttc') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-dark);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700; /* Bold for titles */
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4, .subtitle {
  font-family: var(--font-heading);
  font-weight: 500; /* Medium for subtitles */
  font-size: 1.5rem;
}

.tertiary {
  font-family: var(--font-tertiary);
  font-weight: 400; /* Regular */
  letter-spacing: -0.02em;
}

p, body, li, .body-text {
  font-family: var(--font-primary);
  font-weight: 400; /* Regular */
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

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

button {
  cursor: pointer;
  font-family: var(--font-primary);
}

/* ----- Utility Classes ----- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-darker);
  text-align: center;
  width: 100%;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 800px;
  margin-bottom: var(--space-xl);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ----- Button Styles ----- */
.btn {
  font-family: var(--font-heading);
  font-weight: 500; /* Futura PT Medium */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-weight: 700; /* Futura PT Bold */
  font-size: 1.25rem;
  margin-bottom: 0;
}

.service-meta h3 {
  font-family: var(--font-heading);
  font-weight: 700; /* Futura PT Bold */
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.service-type {
  font-family: var(--font-heading);
  font-weight: 500; /* Futura PT Medium */
  font-size: 0.875rem;
  color: var(--color-gray);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700; /* Futura PT Bold */
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: var(--font-heading);
  font-weight: 500; /* Futura PT Medium */
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500; /* Futura PT Medium */
  color: var(--color-light);
  transition: color var(--transition-fast);
  position: relative;
}

code, .code {
  font-family: var(--font-tertiary);
  font-weight: 400; /* Fira Code Regular */
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-signal);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #e62e01; /* Slightly darker shade of the signal color */
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-primary-dark);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ----- Navigation ----- */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-normal);
  padding: var(--space-md) 0;
  background-color: transparent;
}

.nav-container.sticky {
  background-color: var(--color-darker);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
  transition: all var(--transition-normal);
}

/* Make logo slightly smaller when nav is sticky */
.nav-container.sticky .nav-logo {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}

.nav-item {
  margin-left: var(--space-xl);
}

.nav-link {
  color: var(--color-light);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link:hover {
  color: white;
}

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

.nav-cta {
  display: inline-block;
  background-color: var(--color-signal);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-fast);
}

.nav-cta:hover {
  background-color: #e62e01; /* Slightly darker shade of the signal color */
  color: white;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 101;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: all var(--transition-fast);
}

.nav-container.nav-hidden {
  transform: translateY(-100%);
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  background-color: var(--color-darker);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-darker) 0%, #1a365d 100%);
  background-size: cover;
  background-position: center;
  opacity: 1;
}

/* We'll use a dark gradient overlay instead of mesh-bg.svg */
.hero-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: white;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-highlight {
  color: var(--color-signal);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

/* Add signal red to the Zero compromise stat */
.hero-stats .stat:last-child .stat-number {
  color: var(--color-signal);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----- Trust Section ----- */
.trust-section {
  background-color: var(--color-darker);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

.trust-content {
  text-align: center;
}

.trust-heading {
  color: white;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

/* ----- Expertise Section ----- */
.expertise {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.expertise-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.expertise-card.featured {
  background-color: var(--color-primary);
  color: white;
  grid-row: span 2;
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.expertise-card.featured .card-icon {
  color: white;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.expertise-card p {
  margin-bottom: var(--space-lg);
  color: var(--color-gray);
}

.expertise-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.card-features span {
  font-size: 0.75rem;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
}

.expertise-card.featured .card-features span {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ----- Services Section ----- */
.services {
  padding: var(--space-3xl) 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0 var(--border-radius-lg) 0 var(--border-radius-md);
}

.service-header {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid #f1f5f9;
}

.service-icon {
  width: 48px;
  height: 48px;
}

.service-meta h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.service-type {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.service-description {
  padding: var(--space-lg);
  padding-bottom: 0;
  color: var(--color-gray);
}

.service-features {
  padding: 0 var(--space-lg);
  list-style-type: none;
  margin-bottom: var(--space-lg);
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-dark);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-signal);
  font-weight: bold;
}

.service-footer {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.service-duration {
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
}

.service-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.service-card.popular {
  border: 2px solid var(--color-primary);
}

/* ----- Approach Section ----- */
.approach {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.approach-text {
  display: flex;
  flex-direction: column;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.value-item {
  margin-bottom: var(--space-lg);
}

.value-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.value-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-header h3 {
  font-size: 1.125rem;
  margin-bottom: 0;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.approach-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.visual-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.visual-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.visual-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ----- Portfolio Section ----- */
.portfolio {
  padding: var(--space-3xl) 0;
  background-color: #f8fafc;
}

.portfolio .section-header {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Experience badge styling to match the design */
.portfolio .section-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-lg);
  display: inline-block;
  letter-spacing: 0.03em;
}

.portfolio .section-title {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.portfolio .section-description {
  font-size: 1.25rem;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.portfolio-category {
  display: inline-block;
  background-color: var(--color-signal);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
}

.portfolio-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.portfolio-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ----- CTA Section ----- */
.cta-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-darker);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a0845 0%, #1a365d 100%);
  opacity: 0.7;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-md);
}

.cta-title {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.cta-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
  margin-bottom: var(--space-md);
}

.info-item strong {
  color: white;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}

/* ----- Footer ----- */
.footer {
  background-color: var(--color-darker);
  padding-top: var(--space-2xl);
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

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

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: var(--space-md);
  display: block;
}

.footer-description {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-weight: 600;
  color: var(--color-primary);
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
