/* ============================================
   BackupSec - Award-Winning Editorial Design
   Modern CSS with Swiss Typography System
   ============================================ */

/* ============================================
   SECTION SPACING & ANIMATIONS
   ============================================ */

section {
  padding: var(--space-section) 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

section[data-section="hero"] {
  animation: fadeIn 1s ease-out forwards;
  padding: 0;
}

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

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

/* ============================================
   HERO ROTATING CIRCLE - AWWWARDS GRADE
   ============================================ */

.hero-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-10%);
  width: min(1100px, 150vw);
  height: min(1100px, 150vw);
  background-image: url('/assets/images/circle.avif');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: rotateCircle 40s linear infinite;
  pointer-events: none;
  z-index: 0;
  filter: contrast(1.15) brightness(1.1) saturate(1.15);
  mix-blend-mode: screen;
}

@keyframes rotateCircle {
  0% { 
    transform: translateX(-50%) translateY(-10%) rotate(0deg); 
  }
  100% { 
    transform: translateX(-50%) translateY(-10%) rotate(360deg); 
  }
}

/* Section Headers - Editorial Style */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-content);
  max-width: 54rem;
}

.section-kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-cyan);
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 24ch;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-body-lg);
  line-height: 1.6;
  max-width: 52ch;
  font-weight: 400;
}

/* ============================================
   PRODUCTS SECTION - Asymmetric Grid
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  container-type: inline-size;
}

/* Two product grid - larger cards */
.product-grid-two {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.product-card {
  position: relative;
  background: 
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.6), transparent 80%),
    linear-gradient(145deg, rgba(11, 17, 32, 0.8), rgba(2, 6, 11, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(163, 167, 194, 0.12);
  padding: 2.5rem; /* Biraz daha padding */
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Content sol'a yaslanır */
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 229, 255, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 
    0 24px 60px -12px rgba(0, 229, 255, 0.3),
    0 0 1px rgba(0, 229, 255, 0.5);
}

/* Asymmetric sizing */
.product-card:nth-child(1) {
  grid-row: span 1;
}

.product-card:nth-child(2) {
  grid-row: span 1;
}

.product-pill {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 2rem; /* 1.25rem → 2rem: Generous space after label */
  opacity: 0.8;
}

.product-name {
  margin: 0 0 1.5rem; /* 0.75rem → 1.5rem: Breathing room after title */
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-name span {
  color: var(--accent-cyan);
  font-weight: 800;
}

.product-tagline {
  margin: 0 0 1.75rem; /* 1rem → 1.75rem: More space after tagline */
  font-size: 1rem;
  line-height: 1.6; /* 1.5 → 1.6: Better readability */
  color: var(--text-muted);
  max-width: 42ch;
}

.product-meta {
  font-size: 0.875rem;
  margin-bottom: 2rem; /* 1.5rem → 2rem: Clear separation from list */
  color: var(--text-muted);
  line-height: 1.6; /* 1.5 → 1.6: Consistent line height */
  max-width: 48ch;
}

.product-meta strong {
  color: var(--text-main);
  font-weight: 600;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65; /* 1.6 → 1.65: Better readability for longer text */
  max-width: 52ch;
}

.product-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem; /* 0.75rem → 1.25rem: Much more breathing room between bullets */
}

.product-list li:last-child {
  margin-bottom: 0; /* Last item has no margin */
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-primary);
}

.product-bg-accent {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  filter: blur(40px);
}

/* ============================================
   WHY SECTION - Two Column Editorial
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.list-checks li {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  counter-increment: item;
  position: relative;
}

.list-checks li::before {
  content: "0" counter(item);
  position: absolute;
  left: -3rem;
  top: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-cyan);
  opacity: 0.5;
}

.list-checks {
  counter-reset: item;
  padding-left: 3rem;
}

.check-icon {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.mini-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.stat-card {
  position: sticky;
  top: 120px;
  background: 
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.6), transparent 80%),
    linear-gradient(145deg, rgba(11, 17, 32, 0.8), rgba(2, 6, 11, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(163, 167, 194, 0.12);
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 167, 194, 0.2);
  box-shadow: 
    0 20px 60px -12px rgba(0, 229, 255, 0.15),
    0 0 1px rgba(0, 229, 255, 0.3);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(163, 167, 194, 0.08);
}

.stat-row:last-of-type {
  margin-bottom: 2rem;
  border-bottom: none;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.8;
}

.stat-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  text-align: right;
}

.stat-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(163, 167, 194, 0.08);
}

/* ============================================

/* ============================================
   CTA SECTION - Centered Dramatic Form
   ============================================ */

/* ========================
   Contact Section
   ======================== */
.contact-section {
  padding: var(--space-section) 0;
  position: relative;
}

/* Contact Form */
.contact-form {
  margin-top: clamp(3rem, 5vw, 4rem);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Form Field */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

/* Form Label */
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 247, 255, 0.7);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.form-field:focus-within .form-label {
  color: var(--accent-cyan);
}

/* Form Input */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  font-size: 0.9375rem;
  font-family: var(--font-primary);
  outline: none !important;
  outline-offset: 0 !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/* Focus State - Override all browser defaults */
.form-input:focus,
.form-input:focus-visible,
.form-select:focus,
.form-select:focus-visible,
.form-textarea:focus,
.form-textarea:focus-visible {
  border-color: var(--accent-cyan) !important;
  background: rgba(15, 23, 42, 0.6) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 
    0 0 0 3px rgba(0, 229, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  outline: none !important;
  outline-width: 0 !important;
  outline-offset: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Select */
.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a3a7c2' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

/* Remove ALL native styling - complete override */
.form-select::-ms-expand {
  display: none;
}

.form-select:focus {
  outline: none;
  outline-offset: 0;
  box-shadow: 
    0 0 0 3px rgba(0, 229, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Force consistent background on all states */
.form-select,
.form-select:hover,
.form-select:active,
.form-select:focus,
.form-select:focus-visible {
  background-color: rgba(15, 23, 42, 0.4) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a3a7c2' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.25rem center !important;
  border-radius: var(--radius-lg) !important;
  backdrop-filter: blur(10px) !important;
}

/* Select option styling - force dark mode */
.form-select option {
  background: #0a0f1e;
  background-color: #0a0f1e;
  color: var(--text-main);
  padding: 0.75rem;
  font-weight: normal;
}

/* Textarea */
.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  font-family: inherit;
  border-radius: var(--radius-lg) !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Error State */
.form-error {
  display: none;
  font-size: 0.8125rem;
  color: #ff3366;
  margin-top: 0.25rem;
}

.form-field.error .form-error {
  display: block;
}

.form-field.error .form-input,
.form-field.error .form-select,
.form-field.error .form-textarea {
  border-color: #ff3366;
}

/* Form Footer */
.form-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

/* Submit Button - Identical to Hero btn-trial */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  height: 50px;
  background: #f4d88a;
  color: #000;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 0 8px 0 24px;
  border-radius: 60px;
  border: 2px solid #f4d88a;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Black overlay - expands from right to left */
.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.form-submit:hover::before {
  transform: translateX(0);
}

.form-submit-text {
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.form-submit-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.form-submit-icon svg {
  color: #fff;
  transition: all 0.5s ease;
  transform: rotate(0deg);
}

/* Hover State */
.form-submit:hover {
  border-color: #f4d88a;
}

.form-submit:hover .form-submit-text {
  color: #fff;
}

.form-submit:hover .form-submit-icon {
  background: transparent;
  transform: translateX(2px);
}

.form-submit:hover .form-submit-icon svg {
  color: #f4d88a;
  transform: rotate(-45deg);
}

.form-submit:active {
  transform: scale(0.98);
}

/* Form Note */
.form-note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 247, 255, 0.5);
  text-align: left;
  flex: 0 0 auto;
  max-width: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.875rem 1rem;
  }

  .form-select {
    padding-right: 2.5rem;
    background-position: right 1rem center;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-submit {
    width: 100%;
  }

  .form-note {
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .form-label {
    font-size: 0.8125rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.875rem;
  }

  .form-submit {
    font-size: 0.9375rem;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.badge-veeam {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(34, 197, 94, 0.5);
  background: rgba(22, 163, 74, 0.08);
  color: #86efac;
}

/* ============================================
   HERO VISUAL - AWWWARDS-GRADE STATUS DISPLAY
   ============================================ */

.status-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 3rem 2rem;
  position: relative;
}

/* Eyebrow label - subtle, sophisticated */
.status-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 1.25rem;
  position: relative;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}

/* Number wrapper - for precise control */
.status-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  animation: fadeInScale 1s ease-out 0.5s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Main status number - hero typography */
.status-number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 8s linear infinite;
  position: relative;
  font-feature-settings: 'tnum', 'lnum';
  font-variant-numeric: tabular-nums lining-nums;
}

/* Percentage symbol - elegant, scaled down */
.status-percent {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 8s linear infinite;
  opacity: 0.85;
  margin-top: 0.5em;
  transform: translateY(-0.15em);
}

/* Status label - refined typography */
.status-label {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.75vw, 2rem);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  letter-spacing: -0.015em;
  opacity: 0.95;
  animation: fadeIn 0.8s ease-out 0.7s both;
}

.status-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
  animation: fadeIn 0.8s ease-out 0.9s both;
}

.status-meta span {
  white-space: nowrap;
}

.status-divider {
  opacity: 0.4;
  font-weight: 300;
}

.status-products {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.status-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(163, 167, 194, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-product:hover {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(163, 167, 194, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -6px rgba(0, 229, 255, 0.2);
}

.status-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: left;
}

.status-product-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.status-product-desc {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.8;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot-live {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot-available {
  background: var(--accent-purple);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  animation: statusPulseSecondary 2.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.8);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(0.9);
    box-shadow: 0 0 20px rgba(0, 229, 255, 1);
  }
}

@keyframes statusPulseSecondary {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(0.95);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.8);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .status-hero {
    min-height: 300px;
    padding: 2.5rem 1.5rem;
  }
  
  .status-eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
  }
  
  .status-number-wrapper {
    margin-bottom: 1rem;
  }
  
  .status-label {
    margin-bottom: 1.75rem;
  }
  
  .status-meta {
    font-size: 0.8125rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .status-products {
    gap: 1.25rem;
  }
  
  .status-product {
    padding: 0.5rem 1rem;
  }
  
  .status-product-name {
    font-size: 0.75rem;
  }
  
  .status-product-desc {
    font-size: 0.625rem;
  }
}

/* ============================================
   FORM MESSAGE STYLES - AWWWARDS PREMIUM
   ============================================ */

.form-message {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  border: 1px solid;
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

.form-message.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-message-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.125rem;
}

.form-message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-message-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.form-message-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}

.form-message-success {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.08) 0%,
    rgba(0, 229, 255, 0.04) 100%
  );
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--accent-cyan);
  box-shadow: 
    0 20px 60px -15px rgba(0, 229, 255, 0.3),
    0 0 1px rgba(0, 229, 255, 0.5);
}

.form-message-success .form-message-icon {
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.form-message-success .form-message-title {
  color: var(--text-main);
}

.form-message-error {
  background: linear-gradient(
    135deg,
    rgba(255, 51, 102, 0.08) 0%,
    rgba(255, 51, 102, 0.04) 100%
  );
  border-color: rgba(255, 51, 102, 0.25);
  color: var(--accent-pink);
  box-shadow: 
    0 20px 60px -15px rgba(255, 51, 102, 0.3),
    0 0 1px rgba(255, 51, 102, 0.5);
}

.form-message-error .form-message-icon {
  color: var(--accent-pink);
  filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.5));
}

.form-message-error .form-message-title {
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
  .form-message {
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  
  .form-message-icon {
    width: 20px;
    height: 20px;
  }
  
  .form-message-title {
    font-size: 0.9375rem;
  }
  
  .form-message-text {
    font-size: 0.875rem;
  }
}

.cta-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Enhancement
   ============================================ */

@media (max-width: 1200px) {
  :root {
    --text-hero: clamp(3rem, 8vw, 6rem);
    --text-section: clamp(2rem, 5vw, 3.5rem);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-bg-circle {
    width: min(1000px, 150vw);
    height: min(1000px, 150vw);
    top: 50%;
    opacity: 0.5;
    transform: translateX(-50%) translateY(10%);
  }
}

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stat-card {
    position: static;
  }
  
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .list-checks {
    padding-left: 0;
  }
  
  .list-checks li::before {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  /* Product cards stack on tablet */
  .product-grid,
  .product-grid-two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: clamp(3rem, 8vw, 6rem);
    --space-content: clamp(1.5rem, 4vw, 3rem);
  }
  
  /* Header adjustments */
  .minimal-nav {
    padding: 12px 16px;
  }
  
  .header-menu-wrapper {
    right: 16px;
    top: 12px;
  }
  
  /* Mobile: Full-screen menu with rounded corners */
  .menu-overlay {
    max-width: none;
    left: 0;
    padding: 1rem;
  }
  
  .menu-overlay-content {
    max-width: none;
    height: calc(100vh - 2rem);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
  }
  
  .menu-overlay::before {
    display: none;
  }
  
  .menu-link {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  
  .menu-close {
    top: 1.5rem;
    right: 1.5rem;
  }
  
  /* Hero section mobile */
  .hero {
    min-height: auto;
    padding: calc(var(--space-section) + 2rem) 0 var(--space-section);
  }
  
  /* Circle MUCH smaller on mobile */
  .hero-bg-circle {
    width: min(400px, 100vw);
    height: min(400px, 100vw);
    opacity: 0.25;
    top: 20%;
    transform: translateX(-50%) translateY(0);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin: 2rem 0 1rem;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .hero-badge {
    font-size: 0.625rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Products mobile */
  .product-grid,
  .product-grid-two {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card {
    padding: 1.75rem;
  }
  
  .product-card:nth-child(n) {
    grid-row: span 1;
  }
  
  .product-name {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
  }
  
  .product-tagline {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .product-list {
    font-size: 0.875rem;
  }
  
  .product-list li {
    margin-bottom: 1rem;
  }
  
  /* Form mobile */
  .cta-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Section headers mobile */
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-visual-grid,
  .hero-visual-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }
  
  .minimal-nav {
    padding: 1.5rem 0;
  }
  
  .menu-toggle {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .menu-toggle::before {
    width: 18px;
  }
  
  .menu-link {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .menu-close {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    justify-content: center;
  }
  
  /* Hero CTA button full width mobile */
  .btn-trial {
    width: 100%;
    max-width: 100%;
  }
  
  /* Circle even smaller on small mobile */
  .hero-bg-circle {
    width: min(300px, 80vw);
    height: min(300px, 80vw);
    opacity: 0.2;
    top: 15%;
  }
  
  /* Hero title smaller on tiny screens */
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  
  /* Product cards extra padding reduction */
  .product-card {
    padding: 1.5rem;
  }
  
  .product-pill {
    font-size: 0.625rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hero visual mobile optimization */
  .hero-visual {
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .status-hero {
    min-height: 280px;
    padding: 2rem 1.25rem;
  }
}

/* ============================================
   SMOOTH SCROLLING & SCROLL BEHAVIOR
   ============================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-bg-circle {
    animation: none !important;
  }
  
  .marquee-content {
    animation: none !important;
  }
}

/* ============================================
   COMPANIES SECTION
   ============================================ */

.companies-section {
  padding: 7rem 0 2rem;
  background: transparent;
  position: relative;
  overflow: visible;
}

.companies-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 229, 255, 0.15) 25%, 
    rgba(0, 229, 255, 0.3) 50%, 
    rgba(0, 229, 255, 0.15) 75%, 
    transparent 100%);
}

.companies-label {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 2rem;
  letter-spacing: 0.03em;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.marquee-content {
  display: flex;
  gap: 6rem;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.company-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.company-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.95;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logo:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
}

.company-logo:hover svg {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header {
    position: static;
  }
  
  .hero::before,
  .cta-inner::before,
  .product-bg-accent {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
}
/* ========================================
   Reviews / Testimonials Section
   ======================================== */

.reviews-section {
  padding: var(--space-section) 0;
  background: transparent;
  position: relative;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  gap: 2rem;
}

.reviews-header-content .section-kicker {
  display: block;
  margin-bottom: 1rem;
}

.reviews-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.reviews-title-muted {
  color: rgba(163, 167, 194, 0.7); /* Gri */
}

.reviews-title-highlight {
  color: #ffffff; /* Beyaz */
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  height: 50px;
  background: #f4d88a;
  color: #000;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 0 8px 0 24px;
  border-radius: 60px;
  border: 2px solid #f4d88a;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Siyah overlay - sağdan sola genişler */
.reviews-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.reviews-cta-btn:hover::before {
  transform: translateX(0);
}

.reviews-btn-text {
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

.reviews-btn-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.reviews-btn-icon svg {
  color: #fff; /* Ok beyaz */
  transition: all 0.5s ease;
  transform: rotate(0deg);
}

/* Hover State */
.reviews-cta-btn:hover {
  border-color: #f4d88a;
}

.reviews-cta-btn:hover .reviews-btn-text {
  color: #fff;
}

.reviews-cta-btn:hover .reviews-btn-icon {
  background: transparent;
  transform: translateX(2px);
}

.reviews-cta-btn:hover .reviews-btn-icon svg {
  color: #f4d88a;
  transform: rotate(-45deg);
}

.reviews-cta-btn:active {
  transform: scale(0.98);
}

/* Masonry Grid Layout - Asymmetric Bento Style */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 column grid for flexibility */
  gap: 1.5rem;
  grid-auto-flow: dense;
  margin-top: 0;
}

@media (max-width: 767px) {
  .reviews-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on tablet */
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
    gap: 1.5rem;
  }
}

/* Review Card */
.review-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.6),
    rgba(11, 17, 32, 0.8)
  );
  border: 1px solid rgba(163, 167, 194, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: span 2; /* Default: 2 columns wide */
}

/* Asymmetric sizing patterns - Bento style */
.review-card:nth-child(1) {
  grid-column: span 3; /* Wide card */
}

.review-card:nth-child(2) {
  grid-column: span 3; /* Wide card */
}

.review-card:nth-child(3) {
  grid-column: span 2; /* Medium card */
}

.review-card:nth-child(4) {
  grid-column: span 2; /* Medium card */
}

.review-card:nth-child(5) {
  grid-column: span 2; /* Medium card */
}

.review-card:nth-child(6) {
  grid-column: span 3; /* Wide card */
}

.review-card:nth-child(7) {
  grid-column: span 3; /* Wide card */
}

/* Mobile: all cards full width */
@media (max-width: 767px) {
  .review-card {
    grid-column: span 1 !important;
  }
}

/* Tablet: simpler pattern */
@media (min-width: 768px) and (max-width: 1023px) {
  .review-card:nth-child(odd) {
    grid-column: span 2;
  }
  .review-card:nth-child(even) {
    grid-column: span 2;
  }
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 
    0 20px 60px -12px rgba(0, 229, 255, 0.2),
    0 0 1px rgba(0, 229, 255, 0.4);
}

/* Author Section */
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.3);
}

.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.verified-badge {
  flex-shrink: 0;
}

.review-handle {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* Review Text */
.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(247, 247, 255, 0.85);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-title {
    font-size: 2rem;
  }
}

/* ========================
   FAQ Section
   ======================== */
.faq-section {
  padding: var(--space-section) 0;
  position: relative;
}

.faq-list {
  margin-top: clamp(3rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* FAQ Question (Summary) */
.faq-question {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  list-style: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  padding-bottom: 1.25rem;
}

.faq-question:hover .faq-text {
  color: rgba(247, 247, 255, 1);
}

.faq-question:hover .faq-icon {
  color: rgba(247, 247, 255, 0.8);
}

/* FAQ Number */
.faq-number {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(0, 229, 255, 0.5);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 2rem;
  text-align: left;
  transition: color 0.25s ease;
}

.faq-question:hover .faq-number {
  color: var(--accent-cyan);
}

/* FAQ Text */
.faq-text {
  flex: 1;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(247, 247, 255, 0.85);
  letter-spacing: -0.01em;
  line-height: 1.5;
  transition: color 0.25s ease;
}

/* FAQ Icon */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(247, 247, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

/* FAQ Answer */
.faq-answer {
  padding: 0 0 2rem 4rem;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(247, 247, 255, 0.65);
  max-width: 60ch;
  animation: slideInAnswer 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-question {
    gap: 1.25rem;
    padding: 1.5rem 0;
  }

  .faq-item[open] .faq-question {
    padding-bottom: 1rem;
  }

  .faq-number {
    width: 1.75rem;
    font-size: 0.75rem;
  }

  .faq-text {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 0 1.5rem 3rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .faq-item[open] .faq-question {
    padding-bottom: 0.75rem;
  }

  .faq-number {
    width: 1.5rem;
  }

  .faq-answer {
    padding: 0 0 1.25rem 2.5rem;
  }
}

/* ========================
   Footer
   ======================== */
.footer {
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: clamp(3rem, 6vw, 5rem);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(247, 247, 255, 0.5);
  margin: 0;
  max-width: 32ch;
}

/* Footer Navigation */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 247, 255, 0.7);
  margin: 0 0 0.5rem 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  color: rgba(247, 247, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--text-main);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(247, 247, 255, 0.4);
}

.footer-badge {
  font-size: 0.8125rem;
  color: rgba(247, 247, 255, 0.5);
  padding: 0.375rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .footer-nav-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-tagline {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav-col:last-child {
    grid-column: 1;
  }

  .footer-logo {
    font-size: 1.25rem;
  }

  .footer-badge {
    width: 100%;
    text-align: center;
  }
}
