/* Base Styles */
:root {
  --mint: hsl(160, 20%, 95%);
  --navy: hsl(215, 30%, 14%);
  --navy-dark: hsl(215, 30%, 10%);
  --accent-red: hsl(354, 76%, 55%);
  --accent-rgb: 235, 87, 87; /* RGB values for accent color */
  --gray-100: hsl(220, 14%, 96%);
  --gray-200: hsl(220, 13%, 91%);
  --gray-300: hsl(216, 12%, 84%);
  --gray-400: hsl(218, 11%, 65%);
  --gray-500: hsl(220, 9%, 46%);
  --gray-600: hsl(215, 14%, 34%);
  --white: hsl(0, 0%, 100%);
  --background: var(--mint);
  --foreground: hsl(20, 14.3%, 4.1%);
  --radius: 0.5rem;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.text-link {
  color: var(--accent-red);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: hsl(354, 76%, 45%);
}

.text-muted {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: hsl(354, 76%, 45%);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.logo-text {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.logo-img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.desktop-nav {
  display: none;
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

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

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-600);
}

.mobile-nav {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
}

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

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  color: var(--gray-600);
  font-weight: 500;
}

.mobile-btn {
  margin-top: 0.75rem;
  width: 100%;
}

/* Page Title */
.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}

.page-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 36rem;
  margin: 0 auto 3rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 1rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.success-highlights {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.success-highlights:hover {
  transform: translateY(-5px);
}

.highlight-title {
  background-color: #e0e0e0;
  color: #000000;
  margin: 0;
  padding: 1.25rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background-color: var(--gray-200);
}

.highlight-card {
  background-color: white;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card:hover {
  background-color: var(--gray-50);
}

.highlight-card:hover .highlight-stat {
  transform: scale(1.1);
}

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.highlight-card:hover::before {
  width: 100%;
}

.highlight-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.success-iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.success-iframe:hover {
  transform: translateY(-5px);
}

.performance-table tr:last-child td {
  font-weight: 500;
}

/* Animation Classes */
.animated-title {
  position: relative;
  animation: slideInDown 1s ease-out;
  animation-fill-mode: both;
}

.fade-in-animation {
  animation: fadeIn 1.5s ease-in-out;
  animation-fill-mode: both;
}

.scale-in-animation {
  animation: scaleIn 0.8s ease-out;
  animation-fill-mode: both;
}

.bounce-animation {
  animation: bounce 1s ease-in-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.pulse-animation {
  animation: pulse 2s infinite;
  transform-origin: center;
  animation-fill-mode: both;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
  animation-fill-mode: both;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
  animation-fill-mode: both;
}

.slide-in-animation {
  animation: slideIn 0.8s ease-out;
  animation-fill-mode: both;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
  animation-fill-mode: both;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.iframe-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.iframe-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Keyframes */
@keyframes slideInDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Process Section */
.process-section {
  background-color: var(--white);
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.process-card {
  background-color: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.process-icon {
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.process-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-description {
  color: var(--gray-600);
}

/* Success Stories Section */
.success-section {
  padding: 4rem 1rem;
}

.section-description {
  text-align: center;
  color: var(--gray-600);
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.success-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.success-image {
  width: 100%;
  height: 12rem;
  background-size: cover;
  background-position: center;
}

.success-content {
  padding: 1.5rem;
}

.success-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.success-text {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.success-meta {
  display: flex;
  justify-content: space-between;
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.success-meta span {
  font-weight: 500;
  color: var(--gray-700);
  background-color: var(--mint);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white);
  padding: 4rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-card.special {
  background-color: var(--navy);
  color: var(--white);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-size: cover;
  background-position: center;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-title {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-quote {
  color: var(--gray-600);
  font-style: italic;
}

.testimonial-card.special .testimonial-quote {
  color: var(--accent-red);
}

.testimonial-card.special .testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  overflow: hidden;
  margin-right: 1rem;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.brand-logos {
  margin-top: 3rem;
}

.brand-logos-title {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.brand-logo {
  height: 3rem;
  width: 9.375rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
  background-color: var(--navy);
  color: var(--white);
  padding: 4rem 1rem;
}

.cta-container {
  max-width: 48rem;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: hsl(0, 0%, 80%);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 0.875rem;
  color: hsl(0, 0%, 60%);
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--navy-dark);
  color: var(--white);
  padding: 3rem 1rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.footer-tagline {
  color: hsl(0, 0%, 60%);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  color: hsl(0, 0%, 60%);
  margin-bottom: 0.5rem;
  transition: color 0.15s ease;
}

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

.footer-text {
  display: block;
  color: hsl(0, 0%, 60%);
  margin-bottom: 0.5rem;
  cursor: default;
}

.footer-bottom {
  border-top: 1px solid hsl(215, 30%, 20%);
  padding-top: 1.5rem;
  text-align: center;
}

.copyright {
  color: hsl(0, 0%, 40%);
  font-size: 0.875rem;
}

/* FAQ Page Styles */
.faq-section {
  padding: 4rem 1rem;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 60rem;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-red);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.social-links {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1rem;
}

.social-links h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 2rem;
  background-color: var(--gray-100);
  color: var(--gray-600);
  transition: all 0.2s ease;
}

.social-icon span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
}

.social-icon:hover {
  background-color: var(--accent-red);
  color: var(--white);
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-600);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background-color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--gray-100);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 0.45rem;
  top: 0.2rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--gray-600);
}

/* Apply Page Styles */
.apply-section {
  padding: 4rem 1rem;
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 70rem;
  margin: 0 auto;
}

.apply-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  margin-bottom: 1rem;
}

.benefit-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-red);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.apply-form-container {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.apply-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-subtitle {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privacy-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

/* Success Stories Page Styles */
.success-hero {
  background-color: var(--navy);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.success-hero .page-subtitle {
  color: hsl(0, 0%, 80%);
}

.featured-story-section {
  padding: 4rem 1rem;
  background-color: var(--white);
}

.featured-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 70rem;
  margin: 0 auto;
}

.featured-badge {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--navy);
  line-height: 1.2;
}

.featured-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.featured-metrics .metric {
  background-color: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.featured-text {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.success-stories-grid {
  padding: 4rem 1rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.story-image {
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.story-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.story-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.story-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.story-metrics .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-value {
  font-weight: 700;
  color: var(--accent-red);
  font-size: 1.125rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.success-website {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.website-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-red);
  font-weight: 500;
  transition: color 0.2s ease;
}

.website-link svg {
  margin-right: 0.5rem;
}

.website-link:hover {
  color: var(--navy);
}

.story-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-500);
}

.read-more {
  color: var(--accent-red);
  font-weight: 500;
  transition: color 0.15s ease;
}

.read-more:hover {
  color: hsl(354, 76%, 45%);
}

/* Media Queries */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .featured-story {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .apply-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}