* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    line-height: 1.6;
    color: #000000;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Header */
header {
    background: #ffffff;
    color: #000000;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img {
    max-height: 50px;
    width: auto;
}
header nav {
    display: flex;
    align-items: center;
}
header nav a {
    color: #333;
    text-decoration: none;
    margin-left: 15px;
    font-size: 0.9em;
}
header nav a:hover {
    color: #e74c3c;
}
/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #ffffff;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.1em;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
}
.btn-primary {
    background: #e74c3c;
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-primary:hover {
    background: #c0392b;
}
.btn-secondary {
    background: #000000;
    color: #ffffff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.btn-secondary:hover {
    background: #333333;
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}
/* Key Features Section */
.key-features {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}
.key-features h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000000;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: left;
}
.feature-card h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #e74c3c;
}
.feature-card p {
    font-size: 0.85em;
    color: #333;
}
/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}
.how-it-works h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000000;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.step {
    width: 180px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.step h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #e74c3c;
}
/* What's Included Section */
.whats-included {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}
.whats-included h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000000;
}
.whats-included ul {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.whats-included ul li {
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #333;
}
/* Use Cases Section */
.use-cases {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}
.use-cases h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000000;
}
.use-cases ul {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.use-cases ul li {
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #333;
}
/* Why Quick Start Commerce Section */
.why-qsc {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}
.why-qsc h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000000;
}
.why-qsc ul {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.why-qsc ul li {
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #333;
}
/* Purchase Options Section */
.purchase-options {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}
.purchase-options h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000;
}
.purchase-options p {
    font-size: 1em;
    margin-bottom: 30px;
    color: #333;
}
.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.purchase-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.purchase-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #e74c3c;
}
.purchase-card p {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #333;
}
.btn-secondary.disabled {
    background: #cccccc;
    color: #666;
    cursor: not-allowed;
}
.btn-secondary.disabled:hover {
    background: #cccccc;
}

/* Test It Out Section */
.test-it-out {
    padding: 60px 0;
    background: #e74c3c;
    color: #ffffff;
    text-align: center;
}
.test-it-out h2 {
    font-size: 2em;
    margin-bottom: 30px;
}
.test-it-out .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}
/* Footer */
footer {
    background: #000000;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
}
footer a {
    color: #e74c3c;
    text-decoration: none;
    margin: 0 10px;
}
.demo-video {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.video-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 40%; /* Less height than 56.25% */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.single-badge-container {
  display: flex;
  justify-content: center;      /* center horizontally */
  margin: 30px 0;               /* vertical spacing */
}

.single-badge-image {
  max-width: 180px;             /* limit badge width */
  height: auto;
  border-radius: 10px;          /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
  transition: transform 0.3s ease;
}

.single-badge-image:hover {
  transform: scale(1.05);       /* subtle zoom on hover */
  cursor: pointer;
}


/* Responsive */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .step {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    header .logo {
        margin-bottom: 10px;
    }
    header nav {
        text-align: center;
    }
    header nav a {
        margin: 8px;
        display: inline-block;
        font-size: 0.85em;
    }
    .hero {
        height: 60vh;
        padding-top: 120px;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 0.9em;
    }
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
    .key-features h2, .how-it-works h2, .whats-included h2, .use-cases h2, .why-qsc h2, .test-it-out h2 {
        font-size: 1.6em;
    }
    .feature-card, .step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .feature-card h3, .step h3 {
        font-size: 1em;
    }
    .feature-card p {
        font-size: 0.8em;
    }
    .purchase-options h2 {
        font-size: 1.6em;
    }
    .purchase-grid {
        grid-template-columns: 1fr;
    }
    .purchase-card {
        max-width: 300px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .hero h1 {
        font-size: 1.5em;
    }
    .hero p {
        font-size: 0.8em;
    }
    .btn-primary, .btn-secondary {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

.video-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

@media (max-width: 768px) {
    .video-title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .video-title {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
  .video-wrapper {
    padding-bottom: 70%; /* Makes the video taller */
  }
}