/* ============================================================
   VYUTHA — Brand Stylesheet
   Security architecture for Indian startups.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0F172A;
  line-height: 1.6;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Design tokens ---------- */
:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --navy-border: rgba(255, 255, 255, 0.08);
  --amber: #F59E0B;
  --amber-soft: rgba(245, 158, 11, 0.08);
  --amber-border: rgba(245, 158, 11, 0.2);
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --container: 1200px;
  --container-narrow: 880px;
}

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

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

/* ---------- Navigation ---------- */
.nav {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid var(--navy-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo-dot {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--gray-300);
}

.nav-links a:not(.nav-cta) {
  color: inherit;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 500;
}

.nav-cta {
  background: var(--white);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.nav-mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 24px;
  padding: 4px;
}

/* ---------- Hero / Page Hero ---------- */
.hero, .pagehero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.pagehero {
  padding: 72px 0 80px;
}

/* Dot grid pattern */
.hero::before, .pagehero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Cursor-follow amber spotlight — desktop hover devices only */
@media (hover: hover) and (pointer: fine) {
  .hero::after, .pagehero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle 500px at var(--mouse-x) var(--mouse-y),
      rgba(245, 158, 11, 0.10) 0%,
      rgba(245, 158, 11, 0.04) 30%,
      transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    transition: background 0.15s ease-out;
  }
}

.hero-content, .pagehero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { transform: scale(1.2); opacity: 0.85; box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

.eyebrow-light {
  color: var(--gray-500);
}

.eyebrow-light::before {
  background: var(--gray-400);
}

h1.hero-title, h1.pagetitle {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--white);
  max-width: 720px;
}

.dot { color: var(--amber); }

.hero-sub, .pagesub {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ---------- Proof strip ---------- */
.proof {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-500);
}

.proof-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
}

.proof-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-stat strong {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
  background: var(--off-white);
}

.section-light {
  background: var(--white);
}

.section-header {
  margin-bottom: 48px;
}

.section-h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
  max-width: 680px;
}

.section-intro {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.7;
}

/* ---------- Services grid (Home page) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.service {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.service::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gray-300);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.service:hover {
  background: var(--off-white);
}

.service:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--amber);
}

.service-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0.08em;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-600);
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Steps (How we work) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
}

.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  min-width: 36px;
  padding-top: 3px;
  letter-spacing: 0.06em;
}

.step-body { flex: 1; }

.step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.final-sub {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ---------- Services page — detailed cards ---------- */
.svc-detailed {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 36px 32px;
  margin-bottom: 20px;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.svc-detailed:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-100);
}

.svc-head-left { flex: 1; }

.svc-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.svc-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--navy);
}

.svc-tagline {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
}

.svc-price-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-soft);
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid var(--amber-border);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.svc-list-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svc-list {
  list-style: none;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

.svc-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 500;
}

.svc-meta {
  display: flex;
  gap: 28px;
  font-size: 12px;
  color: var(--gray-500);
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.svc-meta strong {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- About page ---------- */
.founder-line {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  max-width: 580px;
}

.founder-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.founder-text {
  font-size: 14px;
  color: var(--gray-600);
}

.founder-name {
  color: var(--navy);
  font-weight: 600;
}

.founder-meta {
  color: var(--gray-400);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  margin-left: 8px;
}

.prose {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 20px;
}

.prose-em {
  color: var(--navy);
  font-weight: 500;
}

/* Beliefs grid */
.beliefs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.belief {
  background: var(--white);
  padding: 28px 26px;
  transition: background 0.2s ease;
}

.belief:hover {
  background: var(--off-white);
}

.belief-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.belief-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.belief-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
}

.contact-h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--amber);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  font-weight: 600;
}

.contact-label {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}

.contact-value a {
  color: var(--navy);
  border-bottom: 1px dotted var(--gray-300);
  transition: border-color 0.2s ease;
}

.contact-value a:hover {
  border-color: var(--amber);
}

/* Form */
.form-field {
  margin-bottom: 16px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--off-white);
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--amber-soft);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.form-btn {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.form-btn:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(29, 158, 117, 0.08);
  color: #0f6e56;
  border: 1px solid rgba(29, 158, 117, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(226, 75, 74, 0.08);
  color: #a32d2d;
  border: 1px solid rgba(226, 75, 74, 0.2);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 32px 0;
  border-top: 1px solid var(--navy-border);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer a {
  color: var(--gray-300);
}

.footer a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* ---------- Fade-in on load ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > *,
.pagehero-content > * {
  animation: fadeInUp 0.6s ease-out backwards;
}

.hero-content > *:nth-child(1),
.pagehero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2),
.pagehero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3),
.pagehero-content > *:nth-child(3) { animation-delay: 0.19s; }
.hero-content > *:nth-child(4),
.pagehero-content > *:nth-child(4) { animation-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ---------- Scroll-triggered fade-ins ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child elements within a faded-in section */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger.in-view > *:nth-child(1) { transition-delay: 0.0s; }
.fade-in-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.fade-in-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.fade-in-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .services-grid,
  .beliefs {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--navy-border);
  }

  .nav-links.open .nav-cta {
    align-self: flex-start;
  }

  .hero, .pagehero {
    padding: 56px 0 64px;
  }

  .section, .final-cta {
    padding: 64px 0;
  }

  .hero-title, .pagetitle {
    font-size: 32px;
  }

  .section-h2, .final-h2 {
    font-size: 26px;
  }

  .svc-detailed {
    padding: 28px 22px;
  }

  .svc-head {
    flex-direction: column;
    gap: 16px;
  }

  .svc-price-tag {
    align-self: flex-start;
  }

  .proof-inner {
    gap: 18px;
  }

  .proof-stats {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
