* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Schibsted Grotesk", sans-serif;
  line-height: 1.6;
  color: #000000;
  background: #F7F6F2;
  min-height: 100vh;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #000000;
}
h1 {
  font-size: 3.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.875rem;
  line-height: 1.3;
}
.navbar {
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: #F7F6F2;
  border: 1px solid #000000;
  border-radius: 24px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}
.nav-container {
  max-width: none;
  margin: 0;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.nav-logo h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.025em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}
.nav-link:hover {
  color: #D72928;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #D72928;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.hero {
  padding: 200px 0 140px;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  color: #000000;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 2px solid #D72928;
  box-shadow: none;
  background: transparent;
  letter-spacing: -0.01em;
}
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: #000000;
  letter-spacing: -0.04em;
}
.gradient-text {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #D72928;
  background-clip: unset;
  color: #D72928;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 500;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.hero-metrics {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.metric-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.metric-item .metric-value {
    font-family: "Schibsted Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #B02020;
    line-height: 1;
    margin: 0;
}
.metric-item .metric-value .metric-number {
    color: inherit;
    font-weight: inherit;
}
.metric-item .metric-label {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
}
.hero-cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.book-a-call-btn {
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.2s;
  padding: 12px 24px;
  border-radius: 100px;
  background: #D72928;
  color: #ffffff;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.book-a-call-btn span {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}
.book-a-call-btn:hover {
  background: #B02020;
}
.book-a-call-btn:hover span {
  transform: scale(0.95);
}
.book-a-call-btn:active {
  transform: scale(0.95);
}
.btn-secondary {
  background: transparent;
  color: #D72928;
  border: 2px solid #D72928;
  padding: 11px 23px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
  box-shadow: none;
}
.btn-secondary span {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}
.btn-secondary:hover {
  background: #D72928;
  color: #ffffff;
  box-shadow: none;
}
.btn-secondary:hover span {
  transform: scale(0.95);
}
.btn-secondary:active {
  transform: scale(0.95);
}
section {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
section#results {
    padding: 3.5rem 2rem;
    margin: 80px 24px;
    background: #B02020;
    border-radius: 32px;
}
#results .section-header h2,
#results .section-header p {
    color: #ffffff;
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #000000;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.section-header h2 .vs-text {
    font-size: 3rem;
    font-weight: 700;
    color: #D72928;
    margin: 0 0.75rem;
    vertical-align: middle;
}
.section-header p {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.7;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.result-card {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #000000;
}
.result-icon {
  color: #D72928;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.result-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000000;
  letter-spacing: -0.025em;
}
.result-card p {
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex-grow: 1;
}
.result-metric {
  background: transparent;
  color: #D72928;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  border: 1px solid #D72928;
  margin-top: auto;
  align-self: center;
  max-width: max-content;
}
.pain-points {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  color: #000000;
}
.pain-points .section-header h2 {
  color: #000000;
}
.pain-points .section-header p {
  color: #000000;
}
.pain-points-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.pain-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}
.pain-card {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  color: #000000;
}
.pain-card:nth-child(1) {
  align-self: flex-start;
}
.pain-card:nth-child(2) {
  align-self: flex-end;
}
.pain-card:nth-child(3) {
  align-self: flex-start;
}
.pain-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pain-icon-container {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
}
.pain-icon {
  color: #D72928;
}
.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0;
  color: #000000;
  letter-spacing: -0.025em;
}
.pain-card p {
  color: #000000;
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
}
.portfolio {
  background: transparent;
  color: #000000;
}
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-button {
  background: transparent;
  border: 2px solid #D72928;
  color: #000000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.tab-button:hover {
  border-color: #b31d1d;
  color: #b31d1d;
  background: transparent;
}
.tab-button.active {
  background: #D72928;
  border-color: #D72928;
  color: #ffffff;
  box-shadow: none;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}
.section-cta {
  text-align: center;
  padding: 2rem 0 60px 0;
}
.comparison {
  background: transparent;
  color: #000000;
}
.comparison-table {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}
.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.comparison-col {
  padding: 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  color: #000000;
}
.comparison-col.highlight {
  background: #D72928;
  color: #ffffff;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.comparison-item.positive {
  background: #ffffff;
  color: #000000;
}
.comparison-item.negative {
  background: #ffffff;
  color: #808080;
}
.comparison-item.positive .icon {
    color: #D72928;
}
.comparison-item .icon {
  font-weight: 800;
  font-size: 1.1rem;
}
.comparison-cta {
  text-align: center;
  margin-top: 4rem;
}
.faq {
  background: transparent;
  color: #000000;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  color: #000000;
}
.faq-item:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #f7f6f2;
}
.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.025em;
}
.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease-out;
}
.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}
.faq-answer p {
  color: #000000;
  line-height: 1.7;
  font-weight: 500;
}
.final-cta {
  background: transparent;
  padding: 120px 0;
  color: #000000;
}
.cta-card {
  background: transparent;
  border-radius: 32px;
  padding: 4rem;
  box-shadow: none;
  border: none;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #000000;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  color: #000000;
}
.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.6;
}
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #000000;
}
.benefit-icon {
  color: #D72928;
  font-weight: 800;
  font-size: 1.1rem;
}
.cta-guarantee {
  margin-top: 1.5rem;
  font-style: italic;
  color: #000000;
  font-weight: 500;
}
.cta-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 24px;
  background: #F7F6F2;
  box-shadow: none;
  margin-bottom: 1.5rem;
}
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 60px 0 30px;
  border-top: 4px solid #D72928;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.footer-brand p {
  color: #9ca3af;
  font-weight: 500;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.footer-socials a {
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #d1d5db;
}
.footer-socials svg, .footer-socials .social-icon-img {
  width: 20px;
  height: 20px;
}
.footer-links-column h4, .footer-cta-column h4 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-links-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.footer-links-column a:hover {
    color: #ffffff;
}
.footer-cta-column p {
    margin-bottom: 1.5rem;
    color: #9ca3af;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.8rem;
}
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    border: none;
    outline: none;
    background-color: #D72928;
    color: white;
    cursor: pointer;
    padding: 18px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, opacity 0.3s, visibility 0.3s;
}
#back-to-top-btn:hover {
    background-color: #b31d1d;
}
#back-to-top-btn svg {
    width: 24px;
    height: 24px;
}
@media (min-width: 769px) {
    section#results, section.pain-points {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .result-card:hover, .pain-card:hover {
        transform: none;
    }
}
@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 20px);
    top: 10px;
  }
  .hero {
    padding: 140px 0 80px;
  }
  .hero .container {
    gap: 3rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section#results {
    margin: 50px 12px;
  }
  .pain-points .section-header h2 {
    font-size: 2.6rem;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .navbar {
    border-radius: 16px;
    position: relative;
    top: 10px;
    padding: 0;
  }
  .nav-container {
    padding: 0 16px;
    flex-wrap: wrap;
    height: auto;
    min-height: 80px;
  }
  .nav-menu {
    flex-basis: 100%;
    order: 1;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0;
    gap: 1.5rem;
    display: none;
    align-items: center;
  }
   .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero {
    padding: 120px 0 80px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-metrics {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: flex-start;
  }
   .metric-item {
      min-width: 0;
  }
  .metric-item .metric-value {
      font-size: 2.25rem;
  }
  .metric-item .metric-label {
      font-size: 0.85rem;
  }
  .section-header h2 {
    font-size: 2.25rem;
  }
  .results-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .cta-benefits {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-links-column, .footer-cta-column {
    text-align: center;
  }
  .cta-card {
    padding: 2.5rem;
    margin: 0 1rem;
  }
  .portfolio-tabs {
    flex-direction: column;
    align-items: center;
  }
  .tab-button {
    width: 100%;
    max-width: 300px;
  }
  .cta-iframe {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-header h2 {
    font-size: 1.875rem;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
  .result-card,
  .pain-card {
    padding: 2rem;
  }
  .cta-card {
    padding: 2rem;
    margin: 0 0.5rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-iframe {
    height: 450px;
    border-radius: 16px;
  }
}
.work-card-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #000000;
}
.work-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}
.work-card-tag {
    padding: 6px 12px;
    border-radius: 8px;
}
.tag-product-launch {
    border: 2px solid #D72928;
    color: #D72928;
    background-color: transparent;
}
.tag-educational {
    border: 2px solid #D72928;
    color: #D72928;
    background-color: transparent;
}
.tag-lifestyle {
    border: 2px solid #D72928;
    color: #D72928;
    background-color: transparent;
}
.work-card-title {
    font-family: "Schibsted Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0.5rem 0;
}
.work-card-preview {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    height: 120px;
    overflow: hidden;
}
.work-card-preview p {
    margin-bottom: 0.5rem;
}
.work-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.stat-item {
    font-size: 0.9rem;
    color: #4b5563;
}
.stat-item span {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: #D72928;
}
.work-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}
.work-card-details-link {
    font-weight: 700;
    color: #D72928;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.work-card-details-link:hover {
    color: #b31d1d;
}
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: auto;
}
.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
    z-index: 10;
}
.lightbox-close:hover {
    color: #1f2937;
}
.lightbox-content {
    padding: 2.5rem;
    overflow-y: auto;
    font-family: "Schibsted Grotesk", sans-serif;
    color: #374151;
    line-height: 1.7;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}
.lightbox-content p {
    margin-bottom: 1.25rem;
}
.lightbox-content strong {
    font-weight: 700;
    color: #111827;
}
.social-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.social-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}
.social-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4b5563;
}
.social-stats .stat svg path {
    fill: #D72928;
}
#social .portfolio-grid {
  display: block;
  column-count: 2;
  column-gap: 0.75rem;
}
#social .work-card-container {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  width: 100%;
  display: inline-block;
}
#product .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.product-gallery-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.testimonials {
  background: #F7F6F2;
  padding: 100px 0;
  overflow: hidden;
}
.testimonial-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 1rem;
  gap: 2rem;
  scroll-snap-type: x mandatory;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  scroll-snap-align: center;
}
.testimonial-quote-icon {
    font-family: "Schibsted Grotesk", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #D72928;
    line-height: 0.5;
    margin-bottom: 2rem;
}
.testimonial-text {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1f2937;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fee2e2;
}
.author-avatar svg {
    fill: #D72928;
    width: 32px;
    height: 32px;
}
.author-info {
  text-align: left;
}
.author-name {
  display: block;
  font-weight: 700;
  color: #111827;
}
.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}
.testimonial-dot {
    background-color: #ccc;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.testimonial-dot.active {
    background-color: #D72928;
}
@media (max-width: 768px) {
    .work-card-stats {
        grid-template-columns: 1fr 1fr;
    }
    #social .portfolio-grid {
        column-count: 1;
    }
    #product .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .pain-points .section-header h2 {
        white-space: normal;
    }
    .testimonial-card {
        padding: 2rem;
        min-height: 450px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .work-card-container {
        padding: 1.5rem;
        margin: 0;
        border-radius: 24px;
    }
    .lightbox-container {
        max-width: 95vw;
        max-height: 85vh;
    }
    .lightbox-content {
        padding: 2rem 1.5rem;
    }
  }