/* CSS VARIABLES - BRAND IDENTITY */
:root {
  /* Brand Colors from Logo */
  --color-primary: #30bec8; /* Cyan/Teal */
  --color-primary-dark: #279ea7;
  --color-text-brand: #503328; /* Dark Brown */
  --color-accent: #e53b47; /* Red/Coral */

  /* Backgrounds & Text (Light Mode SaaS style) */
  --bg-main: #fafbfc;
  --bg-card: #ffffff;
  --text-main: #1a1f2b;
  --text-muted: #64748b;

  /* Utilities */
  --color-success: #10b981;
  --border-color: #e2e8f0;
  --border-radius: 20px;
  --border-radius-sm: 12px;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 25px rgba(48, 190, 200, 0.3);

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-pd: 100px 0;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-brand);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pd);
}

/* TYPOGRAPHY */
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: rgba(80, 51, 40, 0.05);
  color: var(--color-text-brand);
}

.btn-secondary:hover {
  background-color: rgba(80, 51, 40, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--color-text-brand);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Custom Logo Styling */
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -1px;
}

.logo-img {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.logo-img-footer {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
}

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

.nav-actions {
  display: flex;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text-brand);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background-color: var(--bg-main);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  background: var(--color-primary);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  background: var(--color-accent);
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -100px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(48, 190, 200, 0.1);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(48, 190, 200, 0.2);
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stats .ph-fill {
  color: var(--color-primary);
}

/* SOCIAL PROOF */
.proof-strip {
  padding: 0 0 40px;
}

.proof-grid {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-item {
  text-align: center;
  padding: 10px;
}

.proof-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--color-text-brand);
  line-height: 1.1;
}

.proof-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* HERO VISUAL MOCKUP */
.glass-mockup {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  padding: 16px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  display: block;
  border: 1px solid var(--border-color);
  background: #f1f5f9;
  min-height: 350px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-color);
  animation: float 6s ease-in-out infinite;
}

.metric-card {
  top: 40px;
  left: -40px;
}

.metric-card i {
  font-size: 32px;
  color: var(--color-primary);
}

.status-card {
  bottom: 40px;
  right: -30px;
  animation-delay: 2s;
}

.status-card i {
  font-size: 32px;
}

.color-success {
  color: var(--color-success) !important;
}

.floating-card h4 {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* FEATURES BENTO GRID */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(48, 190, 200, 0.3);
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(48, 190, 200, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--color-primary);
  color: #fff;
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 0;
}

.bento-visual {
  margin-top: auto;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
}

.bento-img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  background: #f8fafc;
  min-height: 150px;
  object-fit: cover;
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}

/* Grid Spanning Utilities */
.bento-large {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-large .bento-visual {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(48, 190, 200, 0.12);
  background: linear-gradient(
    180deg,
    rgba(48, 190, 200, 0.04),
    rgba(255, 255, 255, 0)
  );
  flex: 0 0 auto;
}

.bento-large .bento-img {
  min-height: 0;
  max-height: 220px;
  object-fit: contain;
  object-position: center top;
  background: transparent;
}

.bento-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 0;
}

.bento-wide .bento-content {
  padding: 32px;
  flex: 1;
}

.bento-wide .bento-visual {
  flex: 1;
  height: 100%;
  margin: 0;
}

.bento-wide .bento-img {
  height: 100%;
  object-fit: cover;
}

/* COMPARATIVA */
.comparison {
  background: linear-gradient(
    180deg,
    rgba(250, 251, 252, 0),
    rgba(48, 190, 200, 0.04)
  );
}

.comparison-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: auto;
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.comparison-table th {
  background: #f8fbfc;
  color: var(--color-text-brand);
  font-family: var(--font-heading);
}

.comparison-table tbody tr:hover {
  background: rgba(48, 190, 200, 0.05);
}

.comparison-table .is-good {
  color: #0f766e;
  font-weight: 600;
}

.comparison-table .is-bad {
  color: #b42318;
  font-weight: 600;
}

/* HOW IT WORKS */
.how-it-works {
  background: linear-gradient(
    180deg,
    rgba(48, 190, 200, 0.04),
    rgba(250, 251, 252, 0)
  );
}

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: rgba(48, 190, 200, 0.1);
  border: 1px solid rgba(48, 190, 200, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-banner {
  margin: 0 auto 24px;
  max-width: 960px;
  background: linear-gradient(120deg, #fff4e4, #ffe9d2);
  border: 1px solid rgba(229, 59, 71, 0.2);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offer-banner p {
  color: var(--color-text-brand);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.price-sub {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-value {
  font-family: var(--font-heading);
  color: var(--color-text-brand);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.price-value span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-main);
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-list .ph {
  color: var(--color-success);
  font-size: 1rem;
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(48, 190, 200, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* TESTIMONIOS Y CASOS */
.testimonials {
  padding-top: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--color-text-brand);
  font-family: var(--font-heading);
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.case-highlight {
  background: linear-gradient(
    120deg,
    rgba(48, 190, 200, 0.1),
    rgba(229, 59, 71, 0.08)
  );
  border: 1px solid rgba(48, 190, 200, 0.25);
  border-radius: var(--border-radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

.case-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(80, 51, 40, 0.08);
  color: var(--color-text-brand);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.case-content p {
  color: var(--text-muted);
}

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

.case-metric {
  background: #fff;
  border: 1px solid rgba(48, 190, 200, 0.25);
  border-radius: 14px;
  text-align: center;
  padding: 14px 10px;
}

.case-metric strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-text-brand);
  font-size: 1.4rem;
}

.case-metric span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* FAQ */
.faq {
  padding-top: 30px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 20px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  color: var(--color-text-brand);
  font-weight: 600;
  font-size: 1.08rem;
  padding-right: 24px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  color: var(--color-primary-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 12px;
  color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner {
  padding: 0 24px 100px;
}

.cta-card {
  background: var(--color-text-brand);
  border-radius: var(--border-radius);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  border-radius: 50%;
  filter: blur(100px);
  top: -150px;
  right: -50px;
  opacity: 0.5;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--color-primary);
  border-radius: 50%;
  filter: blur(100px);
  bottom: -100px;
  left: -50px;
  opacity: 0.4;
}

.cta-card h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

.cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

.lead-form {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 22px;
}

.lead-form h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.lead-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.lead-form input {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-main);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

.form-success {
  margin-top: 10px;
  color: #d1fadf;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

.company-data {
  margin-top: 8px;
  font-size: 0.86rem;
  max-width: 420px !important;
}

.footer-links h4 {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .metric-card {
    left: 20px;
  }

  .status-card {
    right: 20px;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: span 2;
  }

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

  .steps-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .offer-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-highlight {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none; /* simple mobile menu toggle in js */
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

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

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

  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-wide {
    flex-direction: column;
  }

  .bento-wide .bento-visual {
    width: 100%;
    min-height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 46px;
  }

  .cta-actions {
    flex-direction: column;
  }
}
