/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal-900: #0D4A4A;
  --teal-700: #2D7A7A;
  --teal-500: #4A9A9A;
  --coral: #E8614D;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --gray-900: #1A1A1A;
  --gray-700: #4A4A4A;
  --gray-500: #6A6A6A;
  --gray-400: #9A9A9A;
  --gray-200: #CACACA;
  --gray-100: #F0F0F0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(247, 245, 240, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(247, 245, 240, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 74, 74, 0.08);
  box-shadow: 0 2px 20px rgba(13, 74, 74, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .nav-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(6deg);
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.nav-logo-text {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.10em;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .nav-logo-text {
    font-size: 1.5rem;
  }
}

.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(13, 74, 74, 0.05);
  color: var(--teal-900);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.nav-cta {
  display: none;
  padding: 10px 20px;
  background: var(--coral);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta:hover {
  background: #D54D3A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 97, 77, 0.3);
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  padding: 16px 32px;
  background: var(--coral);
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 100px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  padding: 100px 0 40px;
  position: relative;
  overflow: clip;
  background: var(--white);
}

@media (min-width: 1024px) {
  .hero {
    padding: 120px 0 60px;
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D4A4A'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-gradient {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 97, 77, 0.10) 0%, rgba(13, 74, 74, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(13, 74, 74, 0.05);
  opacity: 0;
  animation: fadeInDown 0.6s ease-out forwards;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-900);
}

.hero-title {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-highlight svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 12px;
}

.hero-description {
  font-size: 1rem;
  color: var(--gray-700);
  max-width: 100%;
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
    max-width: 540px;
  }
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: slideInRight 1s ease-out 0.4s forwards;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .hero-visual {
    overflow: visible;
    margin: 0;
    padding: 0;
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-visual {
    margin-top: 80px;
  }
}

.hero-visual-glow-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(232, 97, 77, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  display: none;
}

@media (min-width: 768px) {
  .hero-visual-glow-1 {
    display: block;
  }
}

.hero-visual-glow-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(13, 74, 74, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  display: none;
}

@media (min-width: 768px) {
  .hero-visual-glow-2 {
    display: block;
  }
}

.schedule-card {
  position: relative;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(13, 74, 74, 0.15);
  border: 1px solid rgba(13, 74, 74, 0.05);
  overflow: hidden;
  animation: floatSubtle 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.schedule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}

@media (min-width: 640px) {
  .schedule-header {
    padding: 16px 24px;
  }
}

.schedule-dots {
  display: flex;
  gap: 8px;
}

.schedule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.schedule-dot-red { background: #E8614D; }
.schedule-dot-yellow { background: #F5A623; }
.schedule-dot-green { background: #7ED321; }

.schedule-date {
  font-size: 0.7rem;
  color: var(--gray-500);
  display: none;
}

@media (min-width: 480px) {
  .schedule-date {
    display: block;
    font-size: 0.875rem;
  }
}

.schedule-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(13, 74, 74, 0.05);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--teal-900);
}

@media (min-width: 640px) {
  .schedule-status {
    gap: 8px;
    padding: 4px 12px;
    font-size: 0.75rem;
  }
}

.schedule-status-dot {
  width: 6px;
  height: 6px;
  background: #7ED321;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.schedule-grid {
  padding: 16px;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .schedule-grid {
    padding: 24px;
    overflow-x: visible;
  }
}

.schedule-grid-header {
  display: grid;
  grid-template-columns: 80px repeat(7, 40px);
  gap: 4px;
  margin-bottom: 12px;
  min-width: 360px;
}

@media (min-width: 640px) {
  .schedule-grid-header {
    grid-template-columns: 120px repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    min-width: auto;
  }
}

.schedule-grid-header span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (min-width: 640px) {
  .schedule-grid-header span {
    font-size: 0.7rem;
  }
}

.schedule-grid-header span:first-child {
  text-align: left;
}

.schedule-row {
  display: grid;
  grid-template-columns: 80px repeat(7, 40px);
  gap: 4px;
  margin-bottom: 6px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  min-width: 360px;
}

@media (min-width: 640px) {
  .schedule-row {
    grid-template-columns: 120px repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
    min-width: auto;
  }
}

.schedule-row:nth-child(1) { animation-delay: 0.1s; }
.schedule-row:nth-child(2) { animation-delay: 0.2s; }
.schedule-row:nth-child(3) { animation-delay: 0.3s; }
.schedule-row:nth-child(4) { animation-delay: 0.4s; }

.schedule-employee {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.55rem;
  font-weight: 600;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .schedule-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
}

.schedule-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .schedule-name {
    font-size: 0.8rem;
  }
}

.schedule-shift {
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .schedule-shift {
    height: 36px;
    border-radius: 8px;
    font-size: 0.7rem;
  }
}

.schedule-shift:hover {
  transform: scale(1.05);
}

.schedule-shift-filled {
  color: white;
}

.schedule-shift-empty {
  background: var(--cream);
  color: var(--gray-200);
}

.schedule-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(247, 245, 240, 0.5);
  border-top: 1px solid var(--gray-100);
}

@media (min-width: 640px) {
  .schedule-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 0;
  }
}

.schedule-footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 640px) {
  .schedule-footer-info {
    gap: 24px;
  }
}

.schedule-footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--gray-700);
}

@media (min-width: 640px) {
  .schedule-footer-item {
    gap: 8px;
    font-size: 0.8rem;
  }
}

.schedule-footer-item svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 640px) {
  .schedule-footer-item svg {
    width: 16px;
    height: 16px;
  }
}

/* ================================================================
   STATS/BENEFITS SECTION
   ================================================================ */
.benefits {
  padding: 60px 0;
  background: white;
}

@media (min-width: 768px) {
  .benefits {
    padding: 80px 0;
  }
}

.stats-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid rgba(13, 74, 74, 0.05);
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: var(--teal-900);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--cream) 0%, white 50%, var(--cream) 100%);
}

@media (min-width: 768px) {
  .features {
    padding: 60px 0 80px;
  }
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.features-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(13, 74, 74, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(13, 74, 74, 0.15);
  box-shadow: 0 20px 40px -20px rgba(13, 74, 74, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ================================================================
   USE CASES PREVIEW
   ================================================================ */
.use-cases-preview {
  padding: 60px 0;
  background: white;
}

@media (min-width: 768px) {
  .use-cases-preview {
    padding: 80px 0;
  }
}

.use-cases-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(13, 74, 74, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.use-case-card:hover {
  border-color: rgba(13, 74, 74, 0.15);
  box-shadow: 0 20px 40px -20px rgba(13, 74, 74, 0.15);
  transform: translateY(-4px);
}

.use-case-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.use-case-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-900);
}

.use-case-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.use-case-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.get-started {
  padding: 60px 0;
  background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

@media (min-width: 768px) {
  .get-started {
    padding: 100px 0;
  }
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid rgba(13, 74, 74, 0.08);
  box-shadow: 0 20px 40px -20px rgba(13, 74, 74, 0.1);
}

@media (min-width: 640px) {
  .contact-card {
    padding: 48px 40px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(13, 74, 74, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: 20px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-submit {
  padding: 14px 32px;
  background: var(--teal-900);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 74, 74, 0.25);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(13, 74, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-900);
}

.form-success h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 28px 0 20px;
}

.footer-row-1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -4px;
  flex-wrap: wrap;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
}

.footer-logo-text {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.10em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-row-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 4px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal-sep {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* ================================================================
   CONTENT SECTIONS (FOR OTHER PAGES)
   ================================================================ */
.content-section {
  padding: 120px 0 60px;
}

.content-header {
  text-align: center;
  margin-bottom: 60px;
}

.content-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}

.content-header p {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
}

.content-body h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin: 48px 0 24px;
}

.content-body h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 32px 0 16px;
}

.content-body p {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body ul {
  margin: 20px 0;
  padding-left: 24px;
}

.content-body li {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
}
