/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */



/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

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

/* Typography */
h1, h2, h3, h4 {
  margin: 0 0 20px;
  line-height: 1.2;
  /* font-family: "Bebas Neue", sans-serif; */
}

h1 {
  font-size: 60px;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

.subhead {
  font-size: 23px;
  line-height: 30px;
  font-weight: 300;
}

p {
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  line-height: 1.5;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  width: 280px;
  height: 60px;
  padding: 13px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 10px 0 rgba(255,255,255,.25);
  background-image: linear-gradient(180deg,#dd4f1d,#dd4f1d);
  text-decoration: none;  
  max-width: 100%;
  /* font-family: "Bebas Neue", sans-serif; */
}

.btn:hover {
  text-decoration: none;
  background-image: linear-gradient(180deg,#ff7821,#ff7821);
  color: #fff;
}

.btn.primary {
  background-color: #dd4f1d;
  color: #fff;
  border: 1px solid black;
}

.btn.primary:hover {
  background-color: #ff7821;
}

.btn.secondary {
  background-color: transparent;
  color: #279f7b;
  border: 2px solid #279f7b;
}

.btn.secondary:hover {
  background-color: #279f7b;
  color: #fff;
}

/* Navigation */
.navbar {
  padding: 15px 0;
  background: #f8f6f0;
  position: static;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-main {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #333;
}

.navbar-logo img {
  width: 50px;
  height: auto;
  border: 1px solid #b8c3ce;
}

.navbar-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-item {
  color: #333;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  white-space: nowrap;
}

.menu-btn {
  border: 1px solid #333;
  border-radius: 30px;
  padding: 4px 14px;
  margin-top: 0;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}

.menu-btn:hover {
  background: #333;
  color: #fff;
  transition: ease-in-out 0.1s;
}

.menu-btn.try-free {
  background: #279f7b;
  color: #fff;
  border: 1px solid #279f7b;
  margin-right: 10px;
}

.menu-btn.try-free:hover {
  background: #2aa086;
  border-color: #2aa086;
  color: #fff;
}

/* Header */
header {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 100px;
  background: #f8f6f0;
}

header h1 {
  margin: 0 auto 20px;
  line-height: 1;
}

.header-content {
  max-width:800px;
  margin: 0 auto;
}

header h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
}

.video-wrapper {
  margin-top: 60px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-wrapper {
  border-radius: 4px;
  text-align: center;
  width:100%;
}

/* Feature Box */
.feature-box {
  padding: 100px 0;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
}

.feature-box h2 {
  max-width: 890px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #279f7b;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-item p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.feature-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #ccc;
}

/* Content Sections */
.content-section {
  padding: 100px 0;
  overflow: hidden;
}

.content-section.dark {
  background-color: #1b1e29;
  color: #fff;
}

.content-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-text, .content-video {
  flex: 1;
}

.section-title {
  font-size: 60px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 1rem;
  margin: 1rem 0;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
}

.feature-list li {
  margin-bottom: 0;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
}

/* Add dividers between list items */
.feature-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #dd4f1d;
}

.content-video img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
  padding: 200px 0;
  text-align: center;
}

.price {
  font-weight: 900;
  font-size: 80px;
  line-height: 80px;
  color: #279f7b;
  position: relative;
  display: inline-block;
}

.strike-price {
  font-size: 22px;
  position: absolute;
  top: 0;
  right: -80px;
  text-decoration: line-through;
  color: #ea7244;
  font-weight: 700;
  transform: rotate(12deg);
}

.ribbon {
  font-size: 16px;
  width: 300px;
  position: relative;
  background: #279f7b;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  margin: 20px auto;
}

.ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1em;
  border: 1.5em solid #279f7b;
  z-index: -1;
}

.ribbon:before {
  left: -2em;
  border-right-width: 1.5em;
  border-left-color: transparent;
}

.ribbon:after {
  right: -2em;
  border-left-width: 1.5em;
  border-right-color: transparent;
}

/* Guarantee Section */
.guarantee {
  padding: 200px 0;
  text-align: center;
  background: #f8f6f0;
  color: #333;
}

.guarantee a {
  color: #333 !important;
  /* text-decoration: none; */
}

.guarantee h2 {
  max-width: 890px;
  margin: 0 auto 20px;
}

.guarantee p {
  max-width: 550px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    flex-direction: column;
  }

  .content-text, .content-video {
    max-width: 100%;
  }

  .section-title {
    /* font-size: 2.5rem; */
  }

  .content-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .navbar-container {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  /* Fix dropdown on mobile */
  .use-cases-dropdown .dropdown-content {
    position: static;
    box-shadow: none;
    padding: 0;
    margin: 10px 0;
    transform: none;
    min-width: 100%;
  }

  .dropdown-section {
    padding: 10px 0;
  }

  header {
    padding-top: 150px;
  }

  header h1 {
    font-size: 60px;
  }

  .feature-box, .content-section {
    padding: 60px 0;
  }

  .section-title {
    /* font-size: 2rem; */
  }

  .section-description {
    font-size: 1.1rem;
  }

  .price {
    font-size: 60px;
  }

  .strike-price {
    font-size: 18px;
    right: -60px;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Desktop-specific dropdown styles */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .navbar-menu {
    display: flex !important;
  }

  .use-cases-dropdown {
    position: relative;
  }

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Specific class styles */
.fbgrhddbpc {
  color: #fff;
}

.wmtymavuuh {
  padding-bottom: 0 !important;
}

.compression {
  color: white;
}

.compression h2,
.compression p,
.compression ul,
.compression li {
  color: white;
}

@media (min-width: 900px) {
  .taouiqxman {
    height: 100vh;
  }

  .main-img {
    width: 600px !important;
  }
}

@media (max-width: 768px) {
  .main-img {
    width: 320px !important;
    text-align: center;
    margin-bottom: 30px;
  }

  .lnkkncxxxq {
    text-align: center;
    margin-bottom: 40px;
  }

  .ruby-button {
    line-height: 30px !important;
  }
}

.taouiqxman {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
  margin: 0;
  padding: 4em 0;
}

.roedgobyjr {
  background: #279f7b;
  padding-bottom: 60px !important;
  margin-bottom: 40px;
}

.efuhwndnpm {
  margin: 2em 0;
}

@media (min-width: 57.5em) {
  .efuhwndnpm {
    margin: 3em 0;
    background-position: center center;
  }
}

.format {
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .format {
    display: grid;
    grid-template-columns: 3fr 2fr;
  }
}

.format-child {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.vvruwnhwwc {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 57.5em) {
  .vvruwnhwwc {
    margin: 0;
    width: 50%;
  }

  .efuhwndnpm .vvruwnhwwc {
    text-align: left;
    width: 60%;
    max-width: 60%;
  }
}

.qygkhnnxts {
  font-size: 22px;
  padding-bottom: 20px;
  color: #fff;
}

.ruby-button {
  display: inline-block;
  background: #d65029;
  color: white;
  padding: 12px 20px;
  font-size: 26px;
  line-height: 20px;
  text-decoration: none;
  margin: 0 3px 0 0;
  text-shadow: none;
  border: 2px solid #9b1c16;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 2px 0 #9b1c16;
}

.ruby-button:hover {
  background: #9b1c16;
}

.nnbdglryjh {
  width: 300px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  content: "";
  position: relative;
}

.nnbdglryjh:before {
  content: '';
  width: 100%;
  height: 100%;    
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent 15px, white);
}

.pullquote {  
  font-family: 'Leckerli One', cursive;
  font-size: 24px;
  line-height: 44px;
}

.deal {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 768px) {
  .home-video {
    height: 600px !important;
  }
}


.whatIsConductor {
  background-color: #fff;
  padding: 80px 0;
}

.whatIsConductor .section-title {
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.whatIsConductor .content-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.whatIsConductor .content-text {
  flex: 1;
  max-width: 800px;
}

.whatIsConductor .content-image {
  flex: 1;
}

.whatIsConductor .section-description {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.whatIsConductor .cta-group {
  margin-top: 40px;
}



.whatIsConductor .btn.primary:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .whatIsConductor .content-grid {
      flex-direction: column;
  }

  .whatIsConductor .content-image {
      order: -1;
  }
}





/* Features Section */
.feature-box {
  
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #dd4f1d;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-item p {
  font-size: 1rem;
  color: #666;
}

/* Batch Processing Section */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-text, .content-image {
  flex: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #dd4f1d;
  font-weight: bold;
}

/* Pricing Section */
.pricing {
  background-color: #f8f6f0;
  padding: 80px 0;
  text-align: center;
}

.price-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: #dd4f1d;
  margin-bottom: 20px;
}

.strike-price {
  font-size: 24px;
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.ribbon {
  background-color: #dd4f1d;
  color: #ffffff;
  padding: 8px 0;
  margin: 20px -40px;
  position: relative;
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  border: 20px solid transparent;
}

.ribbon::before {
  left: 0;
  border-left-color: #d65700;
}

.ribbon::after {
  right: 0;
  border-right-color: #d65700;
}

/* General Styles */
.section-title {
  /* font-size: 36px; */
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-grid {
      flex-direction: column;
  }

  .content-image {
      order: -1;
  }

  .price-card {
      padding: 30px 20px;
  }

  .ribbon {
      margin: 20px -20px;
  }
}






.pricing {
  background-color: #f8f6f0;
  color: #333333;
  padding: 80px 0;
}

.pricing .section-title {
  color: #333333;
  margin-bottom: 40px;
  /* font-size: 54px; */
}

.pricing-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.price-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  flex: 1;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: #dd4f1d;
  margin-bottom: 20px;
}

.strike-price {
  font-size: 24px;
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.ribbon {
  background-color: #dd4f1d;
  color: #ffffff;
  padding: 8px 0;
  margin: 20px -40px;
  position: relative;
  text-align: center;
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  border: 20px solid transparent;
}

.ribbon::before {
  left: 0;
  border-left-color: #d65700;
}

.ribbon::after {
  right: 0;
  border-right-color: #d65700;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-card p {
  margin-bottom: 30px;
}

.feature-list {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}

.feature-list h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #dd4f1d;
}

.feature-list ul {
  list-style-type: none;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #dd4f1d;
}

.btn.primary {
  background-color: #dd4f1d;
  color: #ffffff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn.primary:hover {
  background-color: #d65700;
}

@media (max-width: 768px) {
  .pricing-grid {
      flex-direction: column;
  }

  .price-card, .feature-list {
      width: 100%;
  }
}


/* Videos To Gif Page Styles */
.use-case {
  background-color: #81e9ff;
  padding: 100px 0;
  text-align: center;
}

.use-case h1 {
  margin-bottom: 20px;
}

.use-case h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.content-text, .content-image {
  flex: 1;
}

.content-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  max-width: 800px; 
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  
  .content-image {
    order: -1;
  }

  .video-container {
    max-width: 100%;
  }
}

.content-text, .content-image {
  flex: 1;
}

.content-text h2 {
  margin-bottom: 30px;
  font-size: 56px;
}

.content-text ol, .content-text ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.content-text li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 300;
}

.content-image img {
  max-width: 100%;
  border-radius: 8px;
}

.cta-section {
  background-color: #1d8031;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  
  .content-image {
    order: -1;
  }
}
/* Videos To Gif Page Styles */

.purchase-instructions {
  font-weight: 300;
  font-size: 22px;
}



/* Existing styles remain the same */

/* Updated and refined dropdown styles */
.use-cases-dropdown {
  position: relative;
}

.use-cases-dropdown > a {
  position: relative;
  z-index: 2;
}

.use-cases-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown-arrow {
  font-size: 0.8em;
  margin-left: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 480px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 8px;
  padding: 24px;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.use-cases-dropdown:hover .dropdown-content,
.use-cases-dropdown:focus-within .dropdown-content {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-section {
  flex: 1;
  padding: 0 20px;
}

.dropdown-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
  text-transform: uppercase;
}

.dropdown-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.dropdown-section ul li {
  margin-bottom: 12px;
}

.dropdown-section ul li a {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.dropdown-section ul li a:hover {
  color: #dd4f1d;
}

.dropdown-section ul li a i {
  margin-right: 8px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* Icon placeholders (replace with actual icons) */
.icon-video-gif::before { content: '🎥'; }
.icon-image-gif::before { content: '🖼️'; }
.icon-mov-mp4::before { content: '📽️'; }
.icon-gif-images::before { content: '🌄'; }
.icon-gif-video::before { content: '🎞️'; }
.icon-image-webp::before { content: '🏞️'; }
.icon-heic-image::before { content: '📸'; }
.icon-compress-video::before { content: '🗜️'; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .use-cases-dropdown {
    position: static;
  }

  .use-cases-dropdown::after {
    display: none;
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    transform: none;
    box-shadow: none;
    padding: 16px 0;
    min-width: auto;
    top: auto;
  }

  .use-cases-dropdown:hover .dropdown-content,
  .use-cases-dropdown:focus-within .dropdown-content {
    display: block;
    transform: none;
  }

  .dropdown-section {
    padding: 16px 0;
  }
}

/* Rest of the existing styles remain the same */
.footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px 0;
  font-size: 14px;
  color: #6c757d;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-nav {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #343a40;
}

.footer-separator {
  margin: 0 10px;
  color: #ced4da;
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-nav {
    margin-bottom: 0;
  }
}

/* Add to your existing CSS */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 15% auto;
  padding: 40px;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  text-align: center;
}

/* Add to your existing modal styles */
.email-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.email-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.button-group .btn {
  margin: 0;
}

.btn.secondary {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.btn.secondary:hover {
  background: #f5f5f5;
}

/* Mega Menu Styling */
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 1rem;
  z-index: 1000;
  margin-top: 0.5rem;
}

.use-cases-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-section {
  padding: 1rem;
}

.dropdown-section h3 {
  color: #666;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-section li a {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.dropdown-section li a:hover {
  background-color: #f5f5f5;
}

.menu-icon {
  margin-right: 1rem;
  color: #666;
}

.menu-text {
  display: flex;
  flex-direction: column;
}

.menu-text span {
  font-weight: 500;
}

.menu-text small {
  color: #666;
  font-size: 0.75rem;
}

.dropdown-arrow {
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.use-cases-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Security Page Styling */
.security-page {
  padding-top: 0rem;
}

.security-header {
  background: linear-gradient(to bottom, #f8f6f0, #fff);
  padding: 4rem 0;
  text-align: center;
}

.security-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-header .lead {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.1);
}

.feature-icon {
  color: #007bff;
  margin-bottom: 1rem;
}

.security-details {
  background: #f8f9fa;
  padding: 4rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Features Page Styles */
.features-page {
  padding-top: 0rem;
}

.features-header {
  background: linear-gradient(to bottom, #f8f6f0, #fff);
  padding: 4rem 0;
  text-align: center;
}

.features-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-header .lead {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.1);
}

.category-icon {
  color: #dd4f1d;
  margin-bottom: 1rem;
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 0;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse .showcase-content {
  direction: ltr;
}

.showcase-image video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-cta {
  background: #81e9ff;
  padding: 4rem 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Getting Started Page Styles */
.getting-started-page {
  padding-top: 0;
}

.getting-started-header {
  background: linear-gradient(to bottom, #f8f6f0, #fff);
  padding: 4rem 0;
  text-align: center;
}

.getting-started-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.getting-started-header .lead {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.timeline {
  padding: 4rem 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2rem;
  top: 4rem;
  bottom: -4rem;
  width: 2px;
  background: #eee;
}

.timeline-number {
  width: 4rem;
  height: 4rem;
  background: #dd4f1d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.step-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #dd4f1d;
}

.installation-steps, .connection-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.install-step, .connection-step {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.install-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.security-note svg {
  color: #dd4f1d;
  flex-shrink: 0;
}

.getting-started-help {
  background: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.help-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.help-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
  
  .installation-steps, .connection-steps {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-item:not(:last-child)::after {
    left: 2rem;
    top: 4rem;
    height: calc(100% - 2rem);
  }
}

/* Add consistent image styling */
.step-image img, .detail-image img, .showcase-image img {
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  width: 100%;
}

.detail-image video, .showcase-image video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

/* Legal Pages Styling */
.legal-page {
  padding: 4rem 0;
}

.legal-header {
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-intro {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
}

.legal-notice {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border: 1px solid rgba(0,0,0,0.1);
}

.legal-section {
  margin: 3rem 0;
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.75rem;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }

  .mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .navbar-container {
    position: relative;
  }

  .navbar-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0 0 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    z-index: 1000;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  .navbar-menu.is-active {
    display: flex !important;
  }

  .navbar-item {
    display: block;
    padding: 16px 20px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .navbar-item:last-child {
    border-bottom: none;
  }

  .navbar-item:hover {
    background-color: #f8f9fa;
    color: #dd4f1d;
  }

  /* Style the dropdown trigger differently */
  .use-cases-dropdown > .navbar-item {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #666;
    cursor: pointer;
  }

  .use-cases-dropdown > .navbar-item:hover {
    background-color: #e9ecef;
    color: #333;
  }

  /* Collapse the dropdown by default on mobile */
  .use-cases-dropdown .dropdown-content {
    display: none;
    position: static;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transform: none;
    min-width: 100%;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
  }

  .use-cases-dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-section {
    padding: 8px 0;
  }

  .dropdown-section h3 {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    padding: 0 20px;
    font-weight: 600;
  }

  .dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-section li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: none;
  }

  .dropdown-section li a:hover {
    background-color: #e9ecef;
    color: #dd4f1d;
  }

  .menu-icon {
    margin-right: 12px;
    color: #999;
    flex-shrink: 0;
  }

  .menu-text {
    display: flex;
    flex-direction: column;
  }

  .menu-text span {
    font-weight: 500;
    line-height: 1.2;
  }

  .menu-text small {
    color: #999;
    font-size: 0.75rem;
    margin-top: 2px;
    line-height: 1.2;
  }

  .menu-btn {
    width: auto;
    margin: 16px 20px;
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    border: 1px solid #333 !important;
    border-bottom: 1px solid #333 !important;
  }

  .menu-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Adjust header spacing for fixed navbar */
  header {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  /* Adjust header text sizes */
  header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .subhead {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* Terms checkbox styling */
.terms-checkbox {
  text-align: left;
  margin: 20px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.terms-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.terms-checkbox a {
  color: #dd4f1d;
  text-decoration: none;
  font-weight: 500;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Articles Section Styles */
.articles-section {
  background: white;
  padding: 4rem 0;
  margin-top: 0;
}

.articles-header {
  margin-bottom: 3rem;
  text-align: center;
}

.articles-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
  /* font-family: "Bebas Neue", sans-serif; */
}

.articles-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.article-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.article-card:hover {
  border-color: #dd4f1d;
  box-shadow: 0 10px 30px rgba(221, 79, 29, 0.1);
  transform: translateY(-2px);
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dd4f1d, #ff7821);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.article-card:hover::before {
  transform: scaleX(1);
}

.article-content {
  position: relative;
  z-index: 2;
}

.article-meta {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  /* font-family: "Bebas Neue", sans-serif; */
}

.article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #dd4f1d;
  text-decoration: none;
}

.article-preview {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.article-cta {
  margin-top: auto;
}

.read-more-btn {
  color: #dd4f1d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more-btn:hover {
  color: #A52A24;
  text-decoration: none;
  transform: translateX(3px);
}

/* Article Show Page Styles */
.article-show {
  background: white;
  margin-top: 0;
}

.article-show .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.article-show-header {
  background: #f8f6f0;
  width: 100%;
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 0;
  border-bottom: 2px solid #e8e8e8;
}

.article-show-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
  /* font-family: "Bebas Neue", sans-serif; */
  line-height: 1.2;
  letter-spacing: 0.02em;
  /* text-transform: uppercase; */
}

.article-show-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  font-weight: 500;
}

.article-show-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.6;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.article-show-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  padding: 4rem 0 2rem 0;
}

.article-show-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 3rem 0 1.5rem 0;
  /* font-family: "Bebas Neue", sans-serif; */
}

.article-show-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 2rem 0 1rem 0;
  /* font-family: "Bebas Neue", sans-serif; */
}

.article-show-content p {
  margin-bottom: 1.5rem;
}

.article-show-content ul, .article-show-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-show-content li {
  margin-bottom: 0.5rem;
}

.article-show-content pre {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.article-show-content code {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #e83e8c;
}

.article-show-content pre code {
  background: none;
  padding: 0;
  color: #333;
}

.article-show-content blockquote {
  border-left: 4px solid #dd4f1d;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.article-navigation {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  border-top: 1px solid #e9ecef;
}

.back-to-articles {
  display: inline-block;
  padding: 12px 24px;
  background: #dd4f1d;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-articles:hover {
  background: #A52A24;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
  .articles-title {
    font-size: 2rem;
  }
  
  .article-card {
    padding: 1.5rem;
  }
  
  .article-title {
    font-size: 1.25rem;
  }
  
  .article-show-title {
    font-size: 2rem;
  }
  
  .article-show-content h2 {
    font-size: 1.5rem;
  }
  
  .article-show-content h3 {
    font-size: 1.25rem;
  }
}

/* Basic Bootstrap Grid Support */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.offset-lg-2 {
  margin-left: 16.666667%;
}

.offset-md-1 {
  margin-left: 8.333333%;
}

.text-center {
  text-align: center;
}

@media (max-width: 991px) {
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .offset-lg-2 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .offset-md-1 {
    margin-left: 0;
  }
}

/* Fix for cancel page layout */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

  .footer {
    margin-top: auto;
  }
  
  /* Trial Modal Styles */
  .trial-download-options {
    margin: 2rem 0;
  }
  
  .download-option h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
  }
  
  .download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    min-width: 140px;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    color: #333;
    border: 2px solid #ddd;
    background-image: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .download-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #e0e0e0;
  }
  
  .download-btn:not(:disabled):hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .download-text {
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin: 0;
  }
  
  .download-size {
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
    line-height: 1.2;
    margin: 0;
  }
  
  /* Side-by-side buttons for Try Free and Buy Now */
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .cta-buttons .btn {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
  }
  
  .btn.try-free {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    background-image: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    gap: 0;
  }
  
  .btn.try-free::after {
    content: '⬇';
    margin-left: 8px;
    font-size: 0.9em;
    display: inline-block;
  }
  
  .btn.try-free:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .btn.team-license {
    background: white;
    color: #333;
    border: 2px solid #ddd;
    background-image: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    gap: 0;
  }
  
  .btn.team-license:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
    .download-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .download-btn {
      min-width: 100%;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .cta-buttons .btn {
      width: 100%;
      max-width: none;
    }
  }

  .stripe-security-notice {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
  }

/* Advanced Search Section */
.advanced-search-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  overflow: hidden;
}

.search-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.search-text {
  flex: 1;
  max-width: 50%;
}

.search-visuals {
  flex: 1;
  max-width: 50%;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.search-features {
  margin: 40px 0;
}

.search-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.search-feature-icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.search-feature-content h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.search-feature-content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.search-feature-content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  font-size: 0.9em;
  color: #dd4f1d;
}

.search-cta {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.search-highlight {
  /* font-style: italic; */
  /* color: #279f7b; */
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.search-demo-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-demo-item h5 {
  margin: 0 0 15px 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.demo-placeholder {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.demo-caption {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-align: center;
  font-style: italic;
}

.search-stats {
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.search-stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #dd4f1d;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive Design for Advanced Search */
@media (max-width: 1024px) {
  .search-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .search-text,
  .search-visuals {
    max-width: 100%;
  }
  
  .search-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .search-stat-item {
    flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .advanced-search-section {
    padding: 80px 0;
  }
  
  .search-feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .search-feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .search-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-stat-item {
    flex-basis: auto;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.search-video-demos {
  margin: 80px 0 60px 0;
  text-align: center;
}

.video-demos-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}

.video-demos-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-demos-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.video-demo-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-demo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-demo-item h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.video-demo-container {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-demo-caption {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Video Demos */
@media (max-width: 1024px) {
  .video-demos-grid {
    max-width: 100%;
    gap: 40px;
  }
  
  .video-demo-item {
    padding: 25px;
  }
  
  .video-demos-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .search-video-demos {
    margin: 60px 0 40px 0;
  }
  
  .video-demo-item {
    padding: 20px;
  }
  
  .video-demos-title {
    font-size: 1.8rem;
  }
  
  .video-demos-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .video-demos-grid {
    gap: 30px;
  }
}

/* Share Links Section */
.share-links-section {
  padding: 100px 0;
  background: #1b1e29;
  color: #fff;
  overflow: hidden;
}

.share-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.share-text-content {
  flex: 1;
  max-width: 55%;
}

.share-visual-content {
  flex: 1;
  max-width: 45%;
}

.share-links-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.share-links-section .section-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.share-benefits {
  margin: 40px 0;
}

.share-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.share-benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  font-size: 28px;
  margin-right: 20px;
  flex-shrink: 0;
  width: 45px;
  text-align: center;
}

.renaming-benefits .benefit-icon {
  margin-left: auto;
  margin-right: auto;
}

.benefit-content h4 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.benefit-content p {
  margin: 0;
  color: #ccc;
  line-height: 1.5;
}

.share-workflow {
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-workflow h3 {
  margin: 0 0 30px 0;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dd4f1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.step-content h5 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

.workflow-arrow {
  color: #dd4f1d;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.share-demo-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.demo-image-container {
  position: relative;
}

.demo-label {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
}

.share-cta-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-cta-content h3 {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.share-cta-content p {
  margin: 0 0 30px 0;
  color: #ccc;
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Design for Share Links */
@media (max-width: 1024px) {
  .share-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .share-text-content,
  .share-visual-content {
    max-width: 100%;
  }
  
  .workflow-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .workflow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .share-links-section {
    padding: 80px 0;
  }
  
  .share-benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .share-workflow {
    padding: 25px;
  }
  
  .share-cta-section {
    padding: 40px 20px;
  }
  
  .share-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .workflow-arrow {
    display: none;
  }
}

/* Renaming Section */
.renaming-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.renaming-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.renaming-header .section-title {
  color: #333;
  margin-bottom: 20px;
}

.renaming-header .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
}

.renaming-content {
  margin-bottom: 80px;
}

.renaming-demo {
  margin-bottom: 60px;
}

.demo-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.comparison-item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.comparison-item.problem {
  border-color: #ff6b6b;
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.comparison-item.solution {
  border-color: #51cf66;
  background: linear-gradient(135deg, #f0fff4 0%, #f0fdf4 100%);
}

.comparison-header h4 {
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.comparison-item.problem h4 {
  color: #dc2626;
}

.comparison-item.solution h4 {
  color: #16a34a;
}

.comparison-content p {
  margin: 0 0 15px 0;
  color: #555;
  font-weight: 500;
}

.comparison-content ul {
  margin: 0;
  padding-left: 20px;
  color: #666;
}

.comparison-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.renaming-visual {
  text-align: center;
}

.visual-container {
  max-width: 600px;
  margin: 0 auto;
}

.visual-caption {
  margin-top: 20px;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.renaming-benefits {
  margin-top: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.renaming-cta {
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  border: 1px solid #f0f0f0;
}

.cta-container h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}

.cta-container p {
  margin: 0 0 30px 0;
  color: #666;
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Design for Renaming */
@media (max-width: 1024px) {
  .demo-comparison {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .renaming-section {
    padding: 80px 0;
  }
  
  .renaming-header {
    margin-bottom: 60px;
  }
  
  .comparison-item {
    padding: 25px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .renaming-cta {
    padding: 40px 20px;
  }
  
  .cta-container h3 {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}