/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
    /* Colors */
    --primary-blue: #2196F3;
    --primary-orange: #FF6B35;
    --dark-blue: #0D47A1;
    --light-blue: #64B5F6;
    
    /* Light Theme */
    --bg-light: #F8FAFC;
    --text-light: #1E293B;
    --card-light: #FFFFFF;
    --border-light: #E2E8F0;
    
    /* Dark Theme */
    --bg-dark: #0A0E27;
    --text-dark: #E2E8F0;
    --card-dark: #1A1F3A;
    --border-dark: #2D3454;
}

[data-theme="light"] {
    --bg: var(--bg-light);
    --text: var(--text-light);
    --card: var(--card-light);
    --border: var(--border-light);
}

[data-theme="dark"] {
    --bg: var(--bg-dark);
    --text: var(--text-dark);
    --card: var(--card-dark);
    --border: var(--border-dark);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--card);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-toggle:hover {
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.sun-icon { display: none; }
.moon-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }
[data-theme="light"] .sun-icon { display: block; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4);
}

.btn-secondary {
    background: var(--card);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 107, 53, 0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.2), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.badge-speed {
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
}

.badge-users {
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--card);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item span {
    color: var(--text);
    opacity: 0.7;
    font-size: 14px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    opacity: 0.7;
}

/* ============================================
   CARDS
   ============================================ */
.feature-card,
.info-card,
.alt-card,
.step-card,
.review-card {
    background: var(--card);
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.feature-card {
    padding: 40px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.8;
}

/* ============================================
   GRIDS
   ============================================ */
.features-grid,
.alt-grid,
.reviews-grid,
.screenshots-grid,
.steps-grid {
    display: grid;
    gap: 30px;
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.alt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-box {
    background: var(--card);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    line-height: 2;
}

.about-box p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-box strong {
    color: var(--primary-blue);
}

/* ============================================
   INFO CARDS (Requirements & Changelog)
   ============================================ */
.info-card {
    padding: 40px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 36px;
}

.info-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.req-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.req-col ul {
    list-style: none;
}

.req-col li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-new, .badge-fix, .badge-update {
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new { background: #4CAF50; color: white; }
.badge-fix { background: #FF6B35; color: white; }
.badge-update { background: #2196F3; color: white; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    background: var(--card);
    border-radius: 20px;
    border: 2px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

th {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 107, 53, 0.1));
    font-weight: 700;
    font-size: 16px;
}

.highlight-col {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(255, 107, 53, 0.05));
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-winner {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.rating-row {
    font-weight: 700;
}

.stars {
    color: #FFD700;
    font-size: 20px;
}

.rating-num {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.7;
}

/* ============================================
   ALTERNATIVES
   ============================================ */
.alt-card {
    padding: 30px;
    border-radius: 15px;
}

.alt-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.alt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.alt-header h4 {
    font-size: 18px;
    font-weight: 700;
}

.alt-rating {
    color: #FFD700;
    font-weight: 700;
    font-size: 14px;
}

.alt-card p {
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.alt-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-card, .cons-card {
    padding: 40px;
    border-radius: 20px;
}

.pros-card {
    border-left: 5px solid #4CAF50;
}

.cons-card {
    border-left: 5px solid #FF6B35;
}

.pros-card h3, .cons-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.pros-card ul, .cons-card ul {
    list-style: none;
}

.pros-card li, .cons-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.pros-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

.cons-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
    font-size: 24px;
}

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshot-card {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 3px solid var(--border);
}

.screenshot-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

.screenshot-card img {
    width: 100%;
    display: block;
}

/* ============================================
   TABS
   ============================================ */
.tabs-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.tab-btn:hover {
    border-color: var(--primary-blue);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================
   STEPS
   ============================================ */
.step-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
    padding: 30px;
    border-radius: 15px;
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 700;
}

.reviewer-info span {
    font-size: 13px;
    opacity: 0.6;
}

.rating {
    margin-bottom: 15px;
}

.rating .star {
    color: #FFD700;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--card);
    border-radius: 15px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding-right: 50px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 25px;
    opacity: 0.8;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

/* ============================================
   FEEDBACK FORM
   ============================================ */
.feedback-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    padding: 80px 0;
}

.download-box {
    text-align: center;
    color: white;
}

.download-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.download-box > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 18px;
}

.download-counter svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.download-btn.primary {
    background: white;
    color: var(--primary-blue);
}

.download-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.file-specs {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.file-specs div {
    text-align: center;
}

.file-specs strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.file-specs span {
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--card);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-text {
    opacity: 0.6;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    transform: scale(1.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border: none;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Layout */
    .hero-grid,
    .two-col-grid,
    .pros-cons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .alt-grid,
    .reviews-grid,
    .screenshots-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Navigation */
    .nav-menu {
        display: none;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        gap: 30px;
    }

    /* Download buttons */
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Badges */
    .floating-badge {
        padding: 10px 15px;
        font-size: 12px;
    }

    /* Spacing */
    section {
        padding: 50px 0;
    }

    .hero {
        padding: 50px 0;
    }
}
