/* Login Steps Custom Styling */

.login-steps-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
}

.login-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 0;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #f39c12;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff0e6;
}

.arrow-step {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  margin: 0 2px;
}

/* Always keep login steps in a row, even on mobile */
@media (max-width: 900px) {
  .login-steps-wrapper {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .login-step {
    min-width: 110px;
    max-width: 140px;
  }
  .arrow-step {
    margin: 0 2px;
    font-size: 1.1em;
    transform: none;
  }
  .feature-icon i {
    font-size: 2em !important; /* Adjust icon size for*/
  }
  .feature-text {
    font-size: 1em;
  }
  .feature-desc {
    font-size: 0.95em;
  }
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
}
/* Login Feature Section */
.login-feature-section {
  padding: 40px 0;
  background-color: #fff;
}

.login-feature-section .features-title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.login-feature-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.login-feature-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
  transition: box-shadow 0.3s;
}

.login-feature-section .feature-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
}

.login-feature-section .feature-icon {
  margin-bottom: 18px;
}

.login-feature-section .feature-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.login-feature-section .feature-desc {
  font-size: 1.05rem;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 768px) {
  .login-feature-section .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .login-feature-section .feature-item {
    padding: 24px 10px;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fef7f0 0%, #ffffff 100%);
}
.login-register {
  background-color: #f39c12;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.login-register:hover {
  background-color: #e68a00;
  transform: scale(1.05); /* Slight pop effect */
}

/* Buttonshake */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s ease infinite;
}

/* Typography */
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 32px;
  color: #1a1a1a;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  /* background: linear-gradient(135deg, #fef7f0 0%, #ffffff 100%); */
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-content {
  width: 70%;
}

.hero-image {
  flex: 1;
  width: 50%;
}

.dashboard-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;

  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Awards-&-security-section */
.awards-section {
  margin-bottom: 70px;
}

.security-section {
  padding-bottom: 70px;
  background-color: white;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 48px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 48px;
}

.awards-title {
  text-align: center;
  margin-bottom: 70px;
  color: #333;
}

.awards-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.awards-icon {
  display: flex;
  font-size: 3rem;
  margin-bottom: 16px;
  align-items: center;
}

.awards-image {
  display: flex;
  justify-content: center;
  height: 180px;
  width: auto;
}

.security-icon {
  display: flex;
  font-size: 3rem;
  margin-bottom: 16px;
  align-items: center;
}

.security-image {
  display: flex;
  justify-content: center;
  width: 100px;
  height: 100px;
}

/* Features Section */
.features-section {
  padding: 20px 0;
  background-color: #ffffff;
  align-items: center;
}

.features-title {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  min-height: 200px;
  cursor: pointer; /* Added cursor pointer to indicate clickable */
}

.feature-item:hover {
  transform: translateY(-2px); /* Added hover effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-text {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}

.feature-icon {
  display: flex;
  font-size: 3rem;
  margin-bottom: 16px;
  align-items: center;
}

.feature-image {
  display: flex;
  justify-content: center;
  width: 180px;
  height: 180px;
}

.feature-paragraph {
  font-size: 16px;
  color: #666;
  margin-top: 8px;
  text-align: center;
  display: none;
  overflow: auto;
  transition: all 0.3s ease; /* Added smooth transition */
}

.feature-item.open .feature-paragraph {
  display: block;
  animation: fadeIn 0.3s ease-in-out; /* Added fade-in animation */
}

/* Added fade-in animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Workflow Section */
.workflow-section {
  padding: 20px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.step-content h3 {
  margin-bottom: 16px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0;
}

.price span {
  font-size: 1.5rem;
  color: #6b7280;
}

.price-subtitle {
  color: #6b7280;
  margin-bottom: 32px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  text-align: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2em;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #f97316;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.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;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 32px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  align-content: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  border-radius: 20px;
}

.final-cta h2 {
  color: black;
  margin-bottom: 32px;
}

/* Review section */
.review-section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.review-Container {
  display: flex;
  width: 700px;
  height: 550px;
  align-items: center;
  justify-content: center;
  background-color: #fff0e6;
  gap: 20px;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 8em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.reviewImages {
  display: flex;
  width: 270px;
  height: auto;
  border-radius: 10px;
}

.reviewTextContainer {
  display: flex;
  flex-direction: column;
  width: 330px;
}

.reviewText {
  font-size: 16px;
  color: #333333;
  overflow-y: auto;
}

footer {
  background-color: #f5f5f5;
  color: black;
  padding: 40px 20px;
  text-align: center;
  font-family: "Futura PT", sans-serif; /* Primary Font */
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* max-width: 1200px; */
  width: 100%;
  /* margin: 0 auto; */
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  margin: 0 20px;
}







.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: black;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  font-size: 21px;
  color: black;
}

.cta p {
  font-size: 1.8em; /* Heading 3 (H3) */
  margin-bottom: 10px;
  font-weight: 700; /* Bold */
}

.cta-button {
  padding: 18px 35px;
  background-color: #f39c12; /* Primary Orange */
  color: #ffffff; /* Button Text Color */
  font-size: 1.3em; /* Button Text */
  font-weight: 700; /* Bold */
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: #e68a00; /* Primary Button Hover Color */
  color: #ffffff;
  transform: scale(1.05); /* Hover Scaling Effect */
  border: 1px solid black;
}

/* Bouncing animation for social icons and CTA */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bouncing {
  animation: bounce 0.6s ease-in-out infinite;
}
/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    /* align-items: center;
    justify-content: center; */
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 80px;
  }

  .workflow-section,
  .features-section,
  .pricing-section,
  .faq-section,
  .final-cta {
    padding: 60px 0;
  }

  .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

/* Resetting default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Futura PT", sans-serif;
  background-color: #fff0e6;
  color: #333333;
}

/* Container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.free-for-life {
  background-color: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
}

.content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.price {
  font-size: 3em;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 10px;
}

.no-credit {
  font-size: 1.2em;
  font-weight: 400;
  color: #666666;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Right Column (Features List) */
.right-column {
  max-width: 45%;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1.2em;
  font-weight: 400;
  color: #333333;
  margin: 15px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Green Bullet with White Checkmark */
/* .check-icon {
    width: 24px;
    height: 24px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
    align-items: center;
    position: relative;
    flex-shrink: 0; 
}*/
/* .check-icon {
    width: 24px;
    height: 24px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-block;
    position: relative;
} */

.free-for-life {
  background-color: #fff0e6;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
}

.content {
  width: 100%;
  display: flex;
  column-gap: 4em;
}

/* Left Column (Price and Buttons) */
.left-column {
  max-width: 45%;
  margin-right: 25px;
  text-align: center;
}

h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.price {
  font-size: 3em;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 10px;
}

.no-credit {
  font-size: 1.2em;
  font-weight: 400;
  color: #666666;
  margin-bottom: 30px;
}

/* Right Column (Features List) */
.right-column {
  max-width: 75%;
  margin-left: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1.2em;
  font-weight: 400;
  color: #333333;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

/* Single CSS rule for all the green checkmark bullets */
.check-icon {
  width: 24px;
  height: 24px;
  background-color: #28a745; /* Green Color */
  border-radius: 50%; /* Make it a perfect circle */
  margin-right: 15px;
  display: inline-block;
  position: relative;
  flex-shrink: 0; /* Prevents squishing */
}

.check-icon::before {
  content: "\2713"; /* Checkmark symbol */
  font-size: 16px;
  color: #ffffff; /* White Checkmark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}

/* Fix the layout for responsiveness */
.features-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Fix the responsiveness of the bullets */
.features-list {
  display: flex;
  flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
  .free-for-life {
    flex-direction: column;
    text-align: center;
  }

  .left-column,
  .right-column {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .left-column {
    margin-right: 0;
  }

  h2 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .features-list li {
    font-size: 1em;
  }
}

.check-icon {
  width: 24px;
  height: 24px;
  background-color: #28a745; /* Green Color */
  border-radius: 50%; /* Make it a perfect circle */
  margin-right: 15px;
  display: inline-block;
  position: relative;
  flex-shrink: 0; /* Prevents squishing */
}

.check-icon::before {
  content: "\2713"; /* Checkmark symbol */
  font-size: 16px;
  color: #ffffff; /* White Checkmark */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}
/* ===== Feature Banner ===== */
.feature-banner a {
  display: inline-block;
  background-color: #f5f5f5; /* Din originalfärg */
  color: #ff6f20;            /* Din originalfärg */
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Orange glow */
}

.feature-banner a:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  background-color: #fff; /* Liten highlight-effekt vid hover */
}

.feature-banner a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 111, 32, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.4s ease;
}

.feature-banner a:hover::after {
  left: 200%;
}


/* ===== RealVoice Section Container ===== */
.realvoice-section {
  position: relative; /* Viktigt för att animationen ska ligga rätt */
  padding: 60px 20px;
  background: #fdfdfd;
  color: #111;
}


/* ===== RealVoice Content Flexbox ===== */
.realvoice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative; /* Se till att innehållet ligger ovanför animationen */
  z-index: 1;
}


/* ===== New Badge ===== */
.new-badge {
  display: inline-block;
  background-color: #f5f5f5; /* original */
  color: #ff6f20;            /* original */
  font-weight: bold;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* subtil glow */
}

.new-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 111, 32, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.4s ease;
}

.new-badge:hover::after {
  left: 200%;
}


/* ===== RealVoice Text Section ===== */
.realvoice-text {
  flex: 1;
  min-width: 280px;
}

.realvoice-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.realvoice-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.realvoice-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.realvoice-text ul li {
  margin-bottom: 12px;
  font-weight: 500;
  position: relative;
  padding-left: 28px;
}

.realvoice-text ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}


/* ===== RealVoice Buttons Container ===== */
.realvoice-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: no-wrap; /* Håll alla knappar på samma rad */
}


/* ===== RealVoice Image Container ===== */
.realvoice-image-container {
  flex: 1;
  min-width: 280px;
  border-radius: 40px;
  text-align: center;
}

.realvoice-image {
  width: 100%;
  height: 100%;
}


/* ===== Responsiv ===== */
@media (max-width: 768px) {
  .realvoice-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .realvoice-buttons {
    justify-content: center;
  }
}

.features-list li i {
  width: 20px;
  height: 20px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #28a745; /* Green Border */
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  color: #28a745;
}

.features-list li i:before {
  content: "\2713"; /* Checkmark */
  font-size: 16px;
  color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .free-for-life {
    flex-direction: column;
    text-align: center;
  }

  .left-column,
  .right-column {
    max-width: 100%;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  .features-list li {
    font-size: 1em;
  }
}

.tools-section {
  padding-bottom: 70px;
}

.tools-title {
  margin-top: 30px;
  margin-bottom: 50px;
}

/* Grid Layout */
.post-production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Individual Card Styles */
.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  text-decoration: none;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background-color: #fdf1d3;
}

.card i {
  font-size: 60px;
  color: #f39c12;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card i:hover {
  color: #e68a00;
}

.card p {
  font-size: 1.2em;
  color: #333;
  margin: 0;
}

.card .completed-icon {
  font-size: 1.5em;
  color: #2ecc71;
  margin-top: 10px;
}

.invisible-card {
  visibility: hidden;
}

/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: #fff0e6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
h1 {
  margin-bottom: 40px;
  line-height: 1.2;
  margin-top: 40px;
}

.main-title-index {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, #ff7f50, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: "Poppins", sans-serif;
    -webkit-text-stroke: 0.3px black;
}

/* Grid Layout */
.post-production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Individual Card Styles */
.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background-color: #fdf1d3;
}

.card i {
  font-size: 60px;
  color: #f39c12;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card i:hover {
  color: #e68a00;
}

.card p {
  font-size: 1.2em;
  color: #333;
  margin: 0;
}

.card .completed-icon {
  font-size: 1.5em;
  color: #2ecc71;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post-production-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .post-production-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .menu-item {
    width: 15%;
    margin: auto;
    font-size: 12px;
  }
}

/* Global Styles */
body {
  font-family: "Futura PT", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff0e6;
  color: #333;
}

h2,
h3,
p {
  margin: 20px 0;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 19px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-section {
  padding: 80px 20px;
}

.benefits-section {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}

.benefits-title {
  display: flex;
  margin-bottom: 70px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.benefit-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.icon {
  display: flex;
  font-size: 60px;
  color: #f39c12;
  margin-bottom: 10px;
}

.benefit-item h2 {
  display: flex;
  text-align: center;
  font-size: 28px;
  color: #333;
  font-weight: 700;
}

.benefit-item p {
  display: flex;
  font-size: 18px;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    justify-content: center;
  }

  .final-cta .container {
    width: 90%;
  }
  .right-column {
    width: 100%;
    margin: 0;
  }

  .features-list li {
    font-size: 16px;
    /* border:#1a1a1a 1px solid; */
    align-items: flex-start;
    text-align: left;
  }
  .feature-icon {
    font-size: 30px;
    margin-right: 10px;
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item {
    width: 100%;
  }
  .security-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .security-image {
    margin: auto;
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .social-icon {
    font-size: 60px; /* or any size you want for mobile */
  }
}

.question-mark img,
.question-mark svg {
  height: 48px;
  width: 48px;
}

/* ===== Flip Cards ===== */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

/* Faces */
.flip-face {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-face.front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.flip-face.back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: #fffaf2;
  border-radius: inherit;
}

/* Minimum height so the flip feels right */
.feature-item.flip-card,
.card.flip-card {
  min-height: 220px;
}

/* Back text */
.flip-text {
  font-size: 1rem;
  color: #333;
}

/* Accessibility focus ring */
.flip-card:focus {
  outline: 3px solid #ff6718;
  outline-offset: 2px;
}

/*  Flip-back */
.flip-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 100%;
  width: 100%;
}

/* cut off text after 10 lines */
.flip-text.clamp {
  display: -webkit-box !important;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: 10;
  line-clamp: 10; /* Standard property for compatibility */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* gradient fade at bottom of clamped text */
.flip-text.clamp::after {
  content: "";
  display: block;
  height: 36px;
  margin-top: -36px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,250,242,0), rgba(255,250,242,1));
}

/* when expanded, show full text */
.flip-card.expanded .flip-text.clamp {
  -webkit-line-clamp: unset;
  line-clamp: unset; /* Standard property for compatibility */
}
.flip-card.expanded .flip-text.clamp::after {
  display: none;
}

/* read-more button */
.flip-readmore {
  align-self: center;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  background: #ff6718;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.flip-readmore:hover { transform: translateY(-1px); }
.flip-readmore:active { transform: translateY(0); }
.flip-readmore:focus {
  outline: 3px solid #1a1a1a;
  outline-offset: 2px;
}

/* * Responsive */
@media (max-width: 480px) {
  .flip-text { font-size: 0.95rem; line-height: 1.45; }
}

/* === Modal overlay === */
.flip-modal {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* When open */
.flip-modal.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.flip-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: slideUp 0.3s ease;
}

.flip-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 30px;
  color: #333;
}

.flip-modal-body p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}


