/*
Theme Name: Efor Otomotiv Ultra SaaS Theme
Theme URI: https://eforotomotiv.com.tr
Author: Antigravity AI
Author URI: https://eforotomotiv.com.tr
Description: Ultra-modern, high-performance SaaS aesthetic theme for Efor Otomotiv.
Version: 5.0.0
*/

:root {
  --bg-page: #09090b;
  --bg-surface: #121215;
  --bg-card: rgba(24, 24, 27, 0.7);
  --bg-card-hover: rgba(39, 39, 42, 0.85);
  --bg-input: #18181b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(239, 68, 68, 0.4);
  
  --text-main: #ffffff;
  --text-body: #a1a1aa;
  --text-muted: #71717a;
  
  --brand-red: #ef4444;
  --brand-red-hover: #dc2626;
  --brand-red-glow: rgba(239, 68, 68, 0.35);
  --brand-green: #22c55e;
  --brand-green-glow: rgba(34, 197, 94, 0.35);
  --brand-blue: #3b82f6;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

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

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Typography & SaaS Elements
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pill.red {
  border-color: var(--border-accent);
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
}

.badge-pill.green {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

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

.section-header h2 {
  font-size: 2rem;
  margin: 16px 0 14px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.saas-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-red);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px var(--brand-red-glow);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.saas-btn-primary:hover {
  background: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-red-glow);
}

.saas-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.saas-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.saas-btn-primary.large, .saas-btn-secondary.large {
  padding: 14px 30px;
  font-size: 1rem;
}

.saas-btn-primary.full-width, .saas-btn-secondary.full-width {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-topbar {
  background: #09090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 0.82rem;
  color: #a1a1aa;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-green);
  font-weight: 600;
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.topbar-link {
  color: #d4d4d8;
  font-weight: 500;
}

.topbar-link:hover {
  color: #ffffff;
}

.topbar-link.phone-highlight {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar-wa {
  color: #86efac;
  font-weight: 600;
}

.header-main {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  transition: transform 0.2s ease;
}

.brand-logo-link:hover {
  transform: scale(1.02);
}

.site-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-desktop .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  padding: 8px 14px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--brand-red);
  background: #f1f5f9;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
  display: block;
}

.mobile-drawer-inner {
  padding: 24px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.mobile-nav-links li a {
  display: block;
  padding: 12px 16px;
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

/* ==========================================================================
   Hero Global Component
   ========================================================================== */
.page-hero-saas {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, rgba(18, 18, 21, 0.8) 0%, var(--bg-page) 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-hero-saas .page-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 16px 0;
  letter-spacing: -0.03em;
}

.page-hero-saas .page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Home Hero Section
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}

.home-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(9, 9, 11, 0.75) 0%, rgba(9, 9, 11, 0.95) 100%);
  z-index: 1;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 760px;
}

.home-hero-content h1 {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 18px 0;
  letter-spacing: -0.03em;
}

.home-hero-content h1 span {
  color: var(--brand-red);
}

.home-hero-content p {
  font-size: 1.15rem;
  color: #d4d4d8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h3 {
  font-size: 1.75rem;
  color: var(--text-main);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Brand Logos Grid
   ========================================================================== */
.brands-section {
  padding: 40px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.brands-title {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-card:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.brand-card img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   SaaS Cards & Feature Grids
   ========================================================================== */
.saas-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.saas-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.card-feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.card-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.card-feature-list li::before {
  content: '✓';
  color: var(--brand-red);
  font-weight: 800;
}

/* ==========================================================================
   Feature Flow (Left-Right Feature Row)
   ========================================================================== */
.feature-flow-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-flow-row:last-child {
  margin-bottom: 0;
}

.feature-flow-row.reverse {
  flex-direction: row-reverse;
}

.flow-media {
  flex: 1;
}

.flow-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}

.flow-media-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-flow-row:hover .flow-media-frame img {
  transform: scale(1.04);
}

.flow-content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.flow-step-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.flow-content h3 {
  font-size: 1.85rem;
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.flow-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

.flow-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact Hub & Form
   ========================================================================== */
.contact-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 80px 0;
}

.contact-card-info {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-box {
  display: flex;
  gap: 16px;
}

.info-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.saas-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

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

/* ==========================================================================
   Pre-Footer CTA & Footer
   ========================================================================== */
.site-footer {
  background: #09090b;
  border-top: 1px solid var(--border-subtle);
  margin-top: 80px;
}

.footer-cta-section {
  padding: 0 0 60px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.footer-cta-card {
  background: radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 60%),
              linear-gradient(135deg, #18181b 0%, #121215 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cta-content h2 {
  font-size: 1.85rem;
  margin: 12px 0 8px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.footer-main-wrap {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand-logo {
  display: inline-block;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 32px;
}

.brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav li a:hover {
  color: var(--text-main);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bottom-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-badges {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
/* ==========================================================================
   Mobile Floating Sticky Bar & Responsive Breakpoints
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  gap: 12px;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-bar .sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #ffffff !important;
}

.mobile-sticky-bar .call-btn {
  background: var(--brand-red);
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
}

.mobile-sticky-bar .wa-btn {
  background: #16a34a;
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.35);
}

@media (max-width: 1024px) {
  .home-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-card { flex-direction: column; text-align: center; }
  .feature-flow-row, .feature-flow-row.reverse { flex-direction: column; gap: 30px; }
  .flow-media-frame img { height: 280px; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .container {
    padding: 0 16px;
  }
  .header-topbar { display: none; }
  .nav-desktop { display: none; }
  .mobile-nav-toggle { display: flex; }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .home-hero {
    min-height: auto;
    padding: 70px 0 50px;
  }
  .home-hero-content h1 { 
    font-size: 2.2rem; 
    line-height: 1.2;
  }
  .home-hero-actions { 
    flex-direction: column; 
    width: 100%; 
    gap: 12px;
  }
  .home-hero-actions .saas-btn-primary, 
  .home-hero-actions .saas-btn-secondary { 
    width: 100%; 
  }
  
  .home-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item h3 {
    font-size: 1.5rem;
  }

  .flow-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .flow-actions a {
    width: 100%;
  }
  .flow-content h3 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-hub-grid { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta-card { padding: 30px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; }
  .bottom-bar-container { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero-saas { padding: 60px 0 40px; }
  .page-hero-saas .page-hero-title { font-size: 2rem; }
  .brands-grid { gap: 16px; }
  .brand-card { padding: 6px 16px; height: 46px; }
}
