/* ═══════════════════════════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7e57c2;
    --primary-pink: #e91e63;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --success-green: #48bb78;
    --warning-orange: #ed8936;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
}

/* ═══════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════ */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAV
═══════════════════════════════════════════════════════════════ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 0 0 0 100px;
}

.hero .container {
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: var(--primary-pink);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Animated underline */

.fluent-highlight {
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

.underline {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 12px;
    overflow: visible;
}

.underline-path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawUnderline 1.7s ease-out forwards;
    opacity: 1 !important;
    stroke-linejoin: round;
}

@keyframes drawUnderline {
    0%   { stroke-dashoffset: 250; opacity: 0; }
    100% { stroke-dashoffset: 0;   opacity: 1; }
}

/* Hero bullets */

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.hero-bullets li::before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Download buttons (hero) */

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

.app-store-button {
    display: inline-block;
    height: 64px;
    width: auto;
}

.app-store-button img {
    height: 100%;
    width: auto;
    vertical-align: middle;
}

/* App showcase */

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

.app-showcase {
    position: relative;
}

.app-image {
    max-width: 320px;
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.showcase-features {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-highlight {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.feature-highlight:nth-child(2) { animation-delay: 1s; }
.feature-highlight:nth-child(3) { animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.highlight-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.highlight-text strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.highlight-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER (shared)
═══════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════ */

.features {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.features .container {
    width: 100%;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon {
    margin-bottom: 25px;
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.feature-benefits li {
    padding: 5px 0 5px 20px;
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
}

.feature-metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-purple);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */

.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.testimonials .container {
    width: 100%;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.carousel {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    background: #fafbfe;
    border-radius: 20px;
    border: 1px solid rgba(126, 87, 194, 0.16);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 28px 24px 24px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-right: 10px;
}

.rating-text {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    font-size: 2.5rem;
    margin-right: 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Carousel controls */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
 /* Force only your SVG to show, no extra icon */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

.carousel-btn::before,
.carousel-btn::after,
.carousel-btn * {
    background: none !important;
    background-image: none !important;
}

/* Make sure the SVG is the only visible content */
.carousel-btn svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* for good measure: reset inherited extra icons */
.carousel-btn path,
.carousel-btn g {
    fill: currentColor;
}

.carousel-btn:focus {
    outline: none;
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: var(--shadow-xl);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn--prev { left: 10px; }
.carousel-btn--next { right: 10px; }

/* Carousel indicators */

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.indicator.active {
    background: var(--primary-purple);
}

/* ═══════════════════════════════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════════════════════════════ */

.download {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.download .container {
    width: 100%;
}

.section-header-download {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-download h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header-download p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.download .download-buttons {
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: left;
    gap: 20px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 10px;
}

.brand-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.brand-info p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-pink);
}

.social-media-icon {
    width: 36px;
    height: 36px;
    border: 1px solid grey;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover .social-media-icon {
    transform: scale(1.15);
    background-color: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

.contact-us-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #f8f9fa;
}

.contact-us-hero-text h1,
.request-features-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}

.contact-us-hero-text p,
.request-features-hero-text p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin: 40px 10px 60px;
    line-height: 1.7;
    text-align: center;
}

.send-request-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 2.5rem;
    margin-top: 2rem;
}

.contact-form {
    margin-bottom: 1.5rem !important;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(126, 87, 194, 0.25);
    outline: none;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.form-check-input {
    width: 1em;
    height: 1em;
    vertical-align: baseline;
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0.25em;
    margin-left: -1.5em;
}

.form-check-input:checked {
    accent-color: var(--primary-purple);
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

.form-check-label {
    color: var(--text-medium);
    margin-left: 0.5em;
}

.d-grid {
    display: grid;
}

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.15rem;
    border-radius: 0.6rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 30px;
    font-size: 1.5rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ═══════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
═══════════════════════════════════════════════════════════════ */

.policy-container {
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.policy-container .last-updated {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.policy-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
}

.policy-container h3:first-of-type {
    margin-top: 20px;
}

.policy-container p,
.policy-container li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-container ul {
    list-style-position: outside;
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.policy-container ul li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.policy-container a {
    color: var(--primary-purple);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

.bulleted-list li a {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE REQUEST PAGE
═══════════════════════════════════════════════════════════════ */

.feature-request-main {
    padding: 60px 0;
    background-color: var(--bg-light);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.feature-request-main .container {
    width: 100%;
}

.request-features-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
}

.new-request-section,
.existing-requests-section {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.new-request-section h2,
.existing-requests-section h2 {
    color: var(--primary-purple);
    margin-bottom: 25px;
    text-align: center;
    font-size: 2em;
}

.submit-features-container {
    background: #f8fafc;
    padding: 80px 20px;
}

.submit-features-container h2,
.current-request-container h2 {
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 10px;
}

.submit-features-container p,
.current-request-text {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
}

.current-request-container {
    padding: 80px 20px;
    margin-top: 2rem;
}

.current-request-cards-container {
    padding-top: 30px;
}

/* Request form */

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

.request-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.request-form input[type="text"],
.request-form input[type="email"],
.request-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-dark);
    box-sizing: border-box;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
    color: var(--text-light);
}

.request-form textarea {
    resize: vertical;
    min-height: 100px;
}

.request-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.request-form .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    min-width: 18px;
    min-height: 18px;
}

.request-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: var(--text-medium);
}

.request-form .checkbox-group a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: bold;
}

.request-form .checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.thank-you-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
    color: var(--success-green);
    font-weight: bold;
}

/* Feature items (request list) */

.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.feature-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-group a {
    color: var(--primary-purple);
    text-decoration: none;
}

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

.feature-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.upvote-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.upvote-btn:hover,
.upvote-btn.voted {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.vote-count {
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.subtitle {
    text-align: center;
    margin: 2rem 0;
}

/* Design option selector */

.design-selector {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.design-selector h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.design-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.design-option-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.design-option-btn:hover,
.design-option-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.design-layout {
    display: none;
}

.design-layout.active {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════ */

.faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq .faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237e57c2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
}

.faq-item[open] > summary {
    color: var(--primary-purple);
}

.faq-item[open] > summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid var(--border-light);
}

.faq-answer p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin: 16px 0 0;
}

.faq-answer a {
    color: var(--primary-purple);
    font-weight: 500;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-pink);
}

/* ═══════════════════════════════════════════════════════════════
   ARTICLE PAGE
═══════════════════════════════════════════════════════════════ */

.article-page {
    padding: 120px 0 80px;
}

.article-page .article-header {
    max-width: 720px;
    margin: 0 auto 48px;
}

.article-page h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-page .article-body {
    max-width: 720px;
    margin: 0 auto;
}

.article-page .article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 48px 0 16px;
}

.article-page .article-body p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-page .article-body blockquote {
    border-left: 4px solid var(--primary-purple);
    padding: 12px 20px;
    margin: 24px 0;
    color: var(--text-medium);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-cta {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: center;
}

.article-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 60px;
    }

    .showcase-features {
        right: -10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    .container { padding: 0 20px; }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        background: #f8fafc;
        padding: 80px 0 80px;
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero::before {
        display: none;
    }

    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 40px;
    }

    .section-header h2,
    .section-header-download h2 {
        font-size: 2.4rem;
    }

    .section-header p,
    .section-header-download p,
    .pain-points-header p {
        font-size: 1.15rem;
        padding-bottom: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        width: 100%;
    }

  .hero-bullets {
        align-items: flex-start;
        width: 100%;
        padding-left: 20px;
    }

    .hero-bullets li {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 1.4;
    }

    .hero-bullets li::before {
        content: "✓";
        position: static;
        display: inline-block;
        margin-right: 12px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hero-bullets li {
        word-break: break-word;
    }

    .hero-badge {
        margin-top: 0;
    }

    .hero-visual {
        display: none !important;
    }

    .section-header-download h2 {
        font-size: 1.9rem;
    }

    .download-buttons {
        margin-top: 50px;
        justify-content: center;
        gap: 16px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none !important;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand-info {
        align-items: center;
    }

    .brand-info p {
        text-align: center;
    }

    .send-request-container {
        padding: 1.5rem;
    }

    .policy-container {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .policy-container h3 {
        font-size: 1.6rem;
    }

    .policy-container p,
    .policy-container li {
        font-size: 0.95rem;
    }

    .feature-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-actions {
        flex-wrap: wrap;
    }

    .page-title {
        font-size: 2rem;
    }

    p {
        margin-bottom: 10px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE - SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.4rem;
        margin-top: 30px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        color: var(--text-medium);
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .download-buttons {
        flex-direction: column;
    }

    .carousel-container {
        padding: 0 10px;
    }
}
