/* ============================================================
   LINK TASH — MeUp.com Style CSS
   ============================================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --card: #ffffff;
  --ring: #f59e0b;
  --input: #e5e7eb;
  --muted: #f9fafb;
  --accent: #fffbeb;
  --border: #e5e7eb;
  --radius: 0.375rem;
  --chart-1: #f59e0b;
  --chart-2: #d97706;
  --chart-3: #b45309;
  --chart-4: #92400e;
  --chart-5: #78350f;
  --popover: #ffffff;
  --primary: #f59e0b;
  --sidebar: #f9fafb;
  --spacing: 0.25rem;
  --font-mono: JetBrains Mono, monospace;
  --font-sans: Inter, sans-serif;
  --secondary: #f3f4f6;
  --background: #ffffff;
  --font-serif: Source Serif 4, serif;
  --foreground: #262626;
  --destructive: #ef4444;
  --shadow-blur: 8px;
  --shadow-color: hsl(0 0% 0%);
  --sidebar-ring: #f59e0b;
  --shadow-spread: -1px;
  --letter-spacing: 0em;
  --shadow-opacity: 0.1;
  --sidebar-accent: #fffbeb;
  --sidebar-border: #e5e7eb;
  --card-foreground: #262626;
  --shadow-offset-x: 0px;
  --shadow-offset-y: 4px;
  --sidebar-primary: #f59e0b;
  --muted-foreground: #6b7280;
  --accent-foreground: #92400e;
  --popover-foreground: #262626;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #262626;
  --secondary-foreground: #4b5563;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #92400e;
  --sidebar-primary-foreground: #ffffff;
  
  /* Legacy mapping for compatibility */
  --green: var(--primary);
  --green-dark: var(--chart-2);
  --green-glow: rgba(245, 158, 11, 0.2);
  --bg-dark: var(--background);
  --bg-card: var(--card);
  --bg-card2: var(--muted);
  --text-white: #ffffff;
  --text-gray: var(--muted-foreground);
  --text-dark: var(--foreground);
  --border-dark: var(--border);
  --border-light: var(--border);
  --orange: var(--primary);
  --orange-hover: var(--chart-2);
  --orange-glow: rgba(245, 158, 11, 0.15);
  --footer-bg: var(--muted);
  --footer-border: rgba(245, 158, 11, 0.1);
}

.dark {
  --card: #ffffff;
  --ring: #f59e0b;
  --input: #e5e7eb;
  --muted: #f9fafb;
  --accent: #fffbeb;
  --border: #e5e7eb;
  --radius: 0.375rem;
  --chart-1: #f59e0b;
  --chart-2: #d97706;
  --chart-3: #b45309;
  --chart-4: #92400e;
  --chart-5: #78350f;
  --popover: #ffffff;
  --primary: #f59e0b;
  --sidebar: #f9fafb;
  --spacing: 0.25rem;
  --font-mono: JetBrains Mono, monospace;
  --font-sans: Inter, sans-serif;
  --secondary: #f3f4f6;
  --background: #ffffff;
  --font-serif: Source Serif 4, serif;
  --foreground: #262626;
  --destructive: #ef4444;
  --shadow-blur: 8px;
  --shadow-color: hsl(0 0% 0%);
  --sidebar-ring: #f59e0b;
  --shadow-spread: -1px;
  --letter-spacing: 0em;
  --shadow-opacity: 0.1;
  --sidebar-accent: #fffbeb;
  --sidebar-border: #e5e7eb;
  --card-foreground: #262626;
  --shadow-offset-x: 0px;
  --shadow-offset-y: 4px;
  --sidebar-primary: #f59e0b;
  --muted-foreground: #6b7280;
  --accent-foreground: #92400e;
  --popover-foreground: #262626;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #262626;
  --secondary-foreground: #4b5563;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #92400e;
  --sidebar-primary-foreground: #ffffff;

  /* Legacy mapping for dark mode (locked to light mode values) */
  --green: var(--primary);
  --green-dark: var(--chart-2);
  --green-glow: rgba(245, 158, 11, 0.2);
  --bg-dark: var(--background);
  --bg-card: var(--card);
  --bg-card2: var(--muted);
  --text-white: #ffffff;
  --text-gray: var(--muted-foreground);
  --text-dark: var(--foreground);
  --border-dark: var(--border);
  --border-light: var(--border);
  --orange: var(--primary);
  --orange-hover: var(--chart-2);
  --orange-glow: rgba(245, 158, 11, 0.15);
  --footer-bg: var(--muted);
  --footer-border: rgba(245, 158, 11, 0.1);
}

@theme inline {
  --color-card: var(--card);
  --color-ring: var(--ring);
  --color-input: var(--input);
  --color-muted: var(--muted);
  --color-accent: var(--accent);
  --color-border: var(--border);
  --color-radius: var(--radius);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-popover: var(--popover);
  --color-primary: var(--primary);
  --color-sidebar: var(--sidebar);
  --color-spacing: var(--spacing);
  --color-font-mono: var(--font-mono);
  --color-font-sans: var(--font-sans);
  --color-secondary: var(--secondary);
  --color-background: var(--background);
  --color-font-serif: var(--font-serif);
  --color-foreground: var(--foreground);
  --color-destructive: var(--destructive);
  --color-shadow-blur: var(--shadow-blur);
  --color-shadow-color: var(--shadow-color);
  --color-sidebar-ring: var(--sidebar-ring);
  --color-shadow-spread: var(--shadow-spread);
  --color-letter-spacing: var(--letter-spacing);
  --color-shadow-opacity: var(--shadow-opacity);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-border: var(--sidebar-border);
  --color-card-foreground: var(--card-foreground);
  --color-shadow-offset-x: var(--shadow-offset-x);
  --color-shadow-offset-y: var(--shadow-offset-y);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent-foreground: var(--accent-foreground);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary-foreground: var(--primary-foreground);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  padding: 14px 32px;
  background: linear-gradient(180deg, var(--background) 0%, var(--card) 100%);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav.scrolled {
  top: 10px;
  background: var(--background);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 158, 11, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--foreground);
  text-decoration: none;
}

.nav-logo span {
  color: var(--primary);
}

.nav-logo.lg {
  font-size: 26px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-login {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--foreground);
}

.nav-cta .btn-green {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
}

/* ===== BUTTONS ===== */
.btn-green {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--orange-hover));
  color: var(--foreground);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
}

.btn-green:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.btn-green.sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--primary);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.02);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--foreground);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 55vh;
  padding: 85px 40px 60px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 90%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

.hero-right {
  margin-top: 40px;
}

.hero-left h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

/* ===== LEGAL HERO (Terms, Privacy, Refund) ===== */
.legal-hero {
  position: relative;
  min-height: auto;
  padding: 50px 40px 50px;
  display: flex;
  align-items: center;
  background-color: var(--background);
  background-image: 
    radial-gradient(circle at 50% 0%, var(--green-glow) 0%, transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
  border-bottom: 1px solid var(--border);
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.8), var(--primary), rgba(245, 158, 11, 0.8), transparent);
  box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.3);
  z-index: 5;
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero .tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legal-hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.legal-hero p {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 500px;
  margin: 0 auto;
}

.hero-left p {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* ===== INNER HERO (FOR SUBPAGES) ===== */
.inner-hero {
  padding: 30px 0 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.inner-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.inner-hero .hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.inner-hero .hero-content p {
  font-size: 17px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}

/* Exact MeUp.com Hero Composition */
.hero-image-wrapper { 
  position: relative; width: 100%; max-width: 600px; min-height: 480px;
  display: flex; align-items: center; justify-content: flex-end;
}

.main-metric-img { 
  width: 85%; height: auto; border-radius: 24px; z-index: 1; 
  box-shadow: 0 40px 100px rgba(0,0,0,0.05); border: 1px solid var(--border);
}

.overlay-cards { 
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 20px; 
}

.overlay-card { 
  width: 260px; background: var(--card); border-radius: 16px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid var(--border); 
  padding: 4px;
}

.overlay-card img { width: 100%; border-radius: 12px; }

.inner-trust-bar {
  position: absolute; bottom: -20px; right: 0; width: 90%;
  background: var(--card); border-radius: 100px; padding: 12px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid var(--border);
  display: flex; justify-content: center; z-index: 3;
}

.inner-trust-bar img { height: 38px; width: auto; }

.inner-trust-bar {
  margin-top: auto; padding-top: 40px; border-top: 1px solid var(--border);
  display: flex; justify-content: center;
}

.inner-trust-bar img { height: 42px; width: auto; opacity: 0.9; }

.dot-pattern {
  position: absolute;
  top: 20%;
  right: 0;
  width: 400px;
  height: 400px;
  background-image: radial-gradient(var(--border) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-btns .btn-green,
.hero-btns .btn-outline {
  font-size: 16px;
  padding: 16px 32px;
}



@keyframes pulse-border {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.3);
  }

  50% {
    border-color: rgba(245, 158, 11, 0.6);
  }
}

/* ===== MOCKUP BROWSER ===== */
.mockup-browser {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
}

.mockup-browser.dark {
  border-color: var(--border);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.browser-bar {
  background: var(--muted);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.bbar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.bbar-dot.r {
  background: #ef4444;
}

.bbar-dot.y {
  background: var(--chart-5);
}

.bbar-dot.g {
  background: var(--primary);
}

.bbar-url {
  flex: 1;
  margin-left: 12px;
  background: var(--card);
  border-radius: 4px;
  font-size: 12px;
  color: var(--muted-foreground);
  padding: 4px 12px;
  border: 1px solid var(--border);
}

.mockup-browser img {
  width: 100%;
  display: block;
}

/* ===== SECTION HELPERS ===== */
.dark-section {
  background: var(--bg-dark);
  padding: 70px 0;
}

.white-section {
  background: var(--background);
  padding: 50px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

/* Section headings use foreground color */
.dark-section .section-head h2,
.section-head-dark h2 {
  color: var(--foreground);
}

.green-scribble {
  position: relative;
  z-index: 1;
}
.green-scribble::after {
  content: '';
  position: absolute;
  left: -5%; bottom: -5px; width: 110%; height: 12px;
  background: rgba(34, 197, 94, 0.4);
  border-radius: 100px;
  z-index: -1;
  transform: rotate(-1deg);
}

.section-head p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-head-dark {
  text-align: center;
  margin-bottom: 64px;
}

.section-head-dark h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.green {
  color: var(--green);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--card);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.05;
}

.trust-head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.trust-head h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.trust-subtitle {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.green-scribble {
  display: inline-block;
  position: relative;
}

.green-scribble::after {
  content: '';
  position: absolute;
  left: -2%; bottom: -4px; width: 104%; height: 14px;
  background: rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  z-index: -1;
  transform: rotate(-0.5deg);
}

.trust-hub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.trust-pills {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.trust-pills.left .pill {
  transform: translateX(20px);
}

.trust-pills.right .pill {
  transform: translateX(-20px);
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 16px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  animation: float-pill 6s ease-in-out infinite;
}

.trust-pills.left .pill:nth-child(even),
.trust-pills.right .pill:nth-child(odd) {
  animation-delay: -3s;
}

@keyframes float-pill {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}

.pill:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
  background: var(--background);
}

.pill i {
  color: var(--primary);
  font-size: 18px;
  opacity: 0.9;
}

.trust-card-wrapper {
  position: relative;
  width: 320px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  border-radius: 40px;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  border: none;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-card-wrapper:hover {
  transform: scale(1.05);
}

.trust-card-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(
    from 90deg,
    transparent 0%,
    transparent 40%,
    var(--primary) 50%,
    var(--green) 55%,
    transparent 60%,
    transparent 100%
  );
  animation: border-spin 3s linear infinite;
  z-index: 1;
}

@keyframes border-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.trust-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.01);
}

.trust-center-logo {
  font-size: 56px;
  font-weight: 950;
  letter-spacing: -0.07em;
  color: var(--foreground);
  text-align: center;
}

.trust-center-logo span {
  color: var(--green);
}

.trust-footer {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.trust-footer b {
  color: var(--green);
}

.green-check {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ===== WORKFLOW ===== */
.workflow {
  background: var(--background);
  padding: 50px 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.workflow-right h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--foreground);
  line-height: 1.5;
}

.check-list li .fas {
  color: var(--green);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.check-list.dark li {
  color: var(--text-dark);
}

.integrated {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.integrated span {
  font-size: 14px;
  color: var(--muted-foreground);
}

.integrated strong {
  font-size: 14px;
  color: var(--foreground);
  font-weight: 600;
}

/* ===== TOOLS ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.12);
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tool-icon .fas {
  color: var(--green);
  font-size: 20px;
}

.tool-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.tools-cta {
  text-align: center;
}

/* ===== MANAGED ===== */
.managed-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.managed-left .tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.managed-left h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.2;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 70px 0;
}

.testi-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.2), transparent 70%);
  pointer-events: none;
}

.testimonials .section-head {
  margin-bottom: 64px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.08);
}

.stars {
  color: var(--chart-5);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card>p {
  font-size: 15px;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--foreground);
  font-weight: 600;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-gray);
}

/* ===== FAQ ===== */
.faq {
  padding: 70px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-q.open {
  color: var(--green);
}

.faq-q .fas {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-gray);
}

.faq-q.open .fas {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btns .btn-green,
.cta-btns .btn-outline-dark {
  font-size: 16px;
  padding: 16px 32px;
}

/* ===== PRE-FOOTER CTA ===== */
.pre-footer-cta {
  background-color: var(--background);
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

/* White CTA Card */
.cta-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 40px 100px rgba(74, 59, 51, 0.08), 0 0 60px rgba(245, 158, 11, 0.05);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Background dots graphic on top-right of white card */
.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 120px;
  background-image: radial-gradient(rgba(245, 158, 11, 0.25) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.8;
  border-top-right-radius: 24px;
  pointer-events: none;
}

.cta-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.cta-header-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.cta-icon-box {
  width: 90px;
  height: 90px;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-box i {
  color: var(--primary);
  font-size: 36px;
}

.cta-text-box {
  flex: 1;
}

.cta-text-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--foreground);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-text-box h2 span.highlight-orange {
  color: var(--primary);
}

.cta-subtext {
  font-size: 16px;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 0;
}

.cta-button-group {
  flex-shrink: 0;
}

.btn-orange-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.btn-orange-large:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.35), 0 0 15px rgba(245, 158, 11, 0.2);
}

/* Bottom Row Metrics */
.cta-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  width: 100%;
}

.cta-metric-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Thin vertical dividers */
.cta-metric-col:not(:last-child) {
  border-right: 1px solid var(--border);
}

.cta-metric-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-metric-circle i {
  color: var(--primary);
  font-size: 20px;
}

.cta-metric-info {
  display: flex;
  flex-direction: column;
}

.cta-metric-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.cta-metric-lbl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Glowing Separator between CTA and Footer */
.footer-divider-glow {
  height: 70px;
  background: linear-gradient(180deg, var(--background) 0%, var(--sidebar) 100%);
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-divider-glow::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11,0.9), var(--primary), rgba(245, 158, 11,0.9), transparent);
  box-shadow: 0 0 25px 8px rgba(245, 158, 11, 0.35), 0 0 60px 20px rgba(245, 158, 11, 0.1);
  border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--sidebar);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.02) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
  color: var(--muted-foreground);
  padding: 60px 0 40px;
  border-top: none;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 2.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 320px;
}

/* Styled contact box */
.footer-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  text-decoration: none;
}

.footer-contact-box:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.02);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.footer-contact-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-left i {
  color: var(--primary);
  font-size: 16px;
}

.footer-contact-left span {
  color: var(--foreground);
  font-size: 14px;
  font-weight: 500;
}

.footer-contact-box .chevron-icon {
  color: var(--muted-foreground);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.footer-contact-box:hover .chevron-icon {
  color: var(--primary);
  transform: translateX(4px);
}

/* Outlined trust cards */
.footer-trust-cards {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.trust-mini-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px 8px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-mini-card:hover {
  background: rgba(245, 158, 11, 0.02);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.03), 0 0 15px rgba(245, 158, 11, 0.05);
}

.trust-mini-card i {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-mini-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-foreground);
  line-height: 1.3;
}

/* Columns */
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--foreground);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li::before {
  display: none !important;
}

.footer-col ul a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--foreground);
}

.footer-col ul a:hover::before {
  transform: translateX(4px);
}

/* Industries We Serve 2-Column Grid */
.footer-industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-top: 8px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card:hover {
  background: rgba(245, 158, 11, 0.02);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
  transform: translateY(-2px);
}

.industry-card i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.industry-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
}

/* Bottom Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-left p {
  font-size: 13px;
  color: var(--muted-foreground);
}

.footer-bottom-center {
  font-size: 13px;
  color: var(--foreground);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-center i {
  color: var(--primary);
  font-size: 13px;
}

.footer-social-glow {
  display: flex;
  gap: 20px;
}

.footer-social-glow a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social-glow a:hover {
  color: var(--primary-foreground);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
  transform: translateY(-3px);
}

/* Premium Footer/CTA Responsive Styles */
@media (max-width: 1024px) {
  .cta-card {
    padding: 40px;
    gap: 36px;
  }
  .cta-top-row {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-header-group {
    flex-direction: column;
    gap: 16px;
  }
  .cta-metrics-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
  }
  .cta-metric-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-row: span 2;
  }
  .footer-grid > .footer-col:nth-child(4) {
    grid-column: span 2;
  }
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    display: flex;
    gap: 16px;
    margin: 0 auto;
  }
  .nav-links a {
    font-size: 13px;
  }
  .nav-cta {
    gap: 12px;
  }
  .nav-login {
    display: inline-block !important;
    font-size: 13px;
  }
  .nav-cta .btn-green {
    font-size: 12px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
  }
  .nav-logo img {
    height: 34px !important;
    width: auto !important;
  }
}

@media (max-width: 640px) {
  .cta-card {
    padding: 30px 20px;
    border-radius: 20px;
    gap: 30px;
  }
  .cta-text-box h2 {
    font-size: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
  .footer-grid > .footer-col:nth-child(2),
  .footer-grid > .footer-col:nth-child(3) {
    grid-column: span 1;
  }
  .footer-grid > .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-center {
    order: 2;
  }
  .footer-social-glow {
    order: 1;
    gap: 24px;
  }
  .footer-bottom-left {
    order: 3;
  }
}

/* ===== MESSAGES ===== */
.form-message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(245, 158, 11, 0.08);
  color: var(--foreground);
  border: 1px solid var(--green);
}

.form-message.error {
  background: rgba(153, 27, 27, 0.08);
  color: var(--destructive);
  border: 1px solid var(--destructive);
}

.form-message i {
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 44px;
  }

  .hero-right {
    display: block;
    margin-top: 40px;
  }

  .trust-hub {
    flex-direction: column;
    gap: 32px;
  }

  .trust-pills.left,
  .trust-pills.right {
    align-items: flex-start;
  }

  .workflow-grid,
  .managed-grid {
    grid-template-columns: 1fr;
  }

  .workflow-left {
    display: none;
  }

  .trust-center-logo img {
    content: url("../Link%20Tash%20log's/Link%20Tash.svg");
    height: 70px !important;
    width: auto !important;
  }

  .managed-right {
    display: none;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-row: span 2;
  }
  .footer-grid > .footer-col:nth-child(4) {
    grid-column: span 2;
  }
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    display: flex;
    gap: 16px;
    margin: 0 auto;
  }
  .nav-links a {
    font-size: 13px;
  }
  .nav-cta {
    gap: 12px;
  }
  .nav-login {
    display: inline-block !important;
    font-size: 13px;
  }
  .nav-cta .btn-green {
    font-size: 12px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
  }
  .nav-logo img {
    height: 34px !important;
    width: auto !important;
  }

  .footer-industry-tags {
    max-width: 100%;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .inner-hero {
    padding: 60px 0 40px;
  }

  .inner-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .inner-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .inner-hero .hero-content h1 {
    font-size: 40px;
  }

  .inner-hero .hero-content p {
    margin-bottom: 24px;
  }

  .hero-image-wrapper {
    justify-content: center;
    min-height: auto;
    max-width: 100%;
    margin-top: 20px;
  }

  .main-metric-img {
    width: 100%;
    max-width: 450px;
  }

  .overlay-cards {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-login {
    display: none !important;
  }

  .nav-logo img {
    content: url("../Link%20Tash%20log's/Link%20Tash.svg") !important;
    height: 35px !important;
    width: auto !important;
  }

  .nav-cta .btn-green {
    font-size: 12px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px;
    gap: 36px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .footer-grid > .footer-col:nth-child(2),
  .footer-grid > .footer-col:nth-child(3) {
    grid-column: span 1;
  }

  .footer-grid > .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .container {
    padding: 0 20px;
  }

  .section-head h2,
  .section-head-dark h2 {
    font-size: 30px;
  }

  .cta-box h2 {
    font-size: 30px;
  }
}