/* =============================================
   eNotas Clone - Complete Stylesheet
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #FF7B5B;
    --coral-hover: #ff6a45;
    --black: #161616;
    --dark-gray: #31363f;
    --medium-gray: #474755;
    --light-gray: #9ba3b7;
    --lighter-gray: #c9d0de;
    --bg-main: #f0f4f8;
    --bg-light: #FBFCFE;
    --bg-white: #FFFFFF;
    --bg-card: #e8f0f2;
    --green: #2DD4A8;
    --font-body: 'Nunito Sans', sans-serif;
    --font-heading: 'Red Hat Display', sans-serif;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Top Banner
   ============================================= */
.top-banner {
    background: linear-gradient(135deg, #FF9A7B 0%, #FF7B5B 50%, #E85D3A 100%);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
    font-size: 14px;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-banner-content p {
    margin: 0;
    font-size: 14px;
}

.top-banner-btn {
    display: inline-block;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-banner-btn:hover {
    background: #fff;
    color: var(--coral);
}

.top-banner-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    display: none;
}

/* =============================================
   Header
   ============================================= */
.header {
    background: var(--bg-main);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(240, 244, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
}

.nav-desktop {
    flex: 1;
    margin-left: 40px;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    padding: 8px 0;
    position: relative;
}

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

.nav-item {
    position: relative;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-gray);
    display: block;
    margin-bottom: 12px;
}

.dropdown-link {
    font-size: 14px;
    color: var(--black);
    display: block;
    padding: 6px 0;
}

.dropdown-link:hover {
    color: var(--coral);
}

.nav-right {
    display: flex;
    align-items: center;
}

.login-dropdown {
    position: relative;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.login-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.login-dropdown:hover .login-link i {
    transform: rotate(180deg);
}

.login-dropdown:hover .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding: 60px 0 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 520px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: #f9f9f9;
    background: var(--black);
    border: 2px solid var(--black);
    padding: 17px 60px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 22, 22, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-gradient-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--coral) 0%, rgba(255, 123, 91, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.8;
}

.hero-image-wrapper img {
    border-radius: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* =============================================
   Social Proof (Client Logos)
   ============================================= */
.social-proof {
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logos-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    flex: 0 0 auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* =============================================
   Benefits Section
   ============================================= */
.benefits {
    padding: 80px 0 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--black);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.benefits-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    flex: 0 0 150px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.4;
}

.benefit-item strong {
    display: block;
}

/* =============================================
   Testimonial Feature Card
   ============================================= */
.testimonial-feature {
    padding: 40px 0 80px;
}

.testimonial-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-image {
    flex: 0 0 45%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
}

.testimonial-author {
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--light-gray);
}

.testimonial-content blockquote {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0;
}

/* =============================================
   How It Works
   ============================================= */
.how-it-works {
    padding: 80px 0;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.cs-orange {
    color: var(--coral);
}

.step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-reverse {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
}

.step-img-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.step-img-wrapper img {
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Step 2 - Radio Card */
.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 300px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: var(--light-gray);
}

.radio-option:last-child {
    border-bottom: none;
}

.radio-option.active {
    color: var(--black);
    font-weight: 600;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    flex-shrink: 0;
}

.radio-check {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Step 3 - Mail Cards */
.step-cards-mail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

.mail-card {
    background: #fff;
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mail-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--light-gray);
    margin-bottom: 6px;
}

.mail-icon span {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.mail-card p {
    font-size: 13px;
    color: var(--black);
    line-height: 1.4;
}

/* Step 4 - Chart */
.chart-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 350px;
}

.chart-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.chart-value span {
    color: var(--green);
}

.chart-line {
    width: 100%;
    height: auto;
}

.center-cta {
    text-align: center;
    margin-top: 40px;
}

/* =============================================
   Platform Preview
   ============================================= */
.platform-preview {
    padding: 80px 0;
}

.laptop-mockup {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.laptop-screen {
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0;
    overflow: hidden;
    position: relative;
}

.laptop-screen::before {
    content: '';
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
}

.laptop-screen img {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.laptop-base {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    height: 20px;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    height: 8px;
    background: #333;
    border-radius: 0 0 6px 6px;
}

/* =============================================
   Hotmart Section
   ============================================= */
.hotmart-section {
    padding: 80px 0;
}

.hotmart-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 800px;
    margin: 40px auto;
}

.hotmart-image {
    flex: 0 0 280px;
}

.hotmart-logo-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
}

.gear-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 40px;
    opacity: 0.8;
}

.hotmart-logo-text img {
    height: 40px;
    margin: 20px auto;
}

.cursor-icon {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 30px;
}

.hotmart-text {
    flex: 1;
}

.hotmart-text p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hotmart-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 14px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hotmart-fire {
    font-size: 24px;
}

.cs-orange-text {
    color: var(--coral);
}

/* =============================================
   Features Section
   ============================================= */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-visual {
    flex: 0 0 280px;
    position: sticky;
    top: 120px;
}

.checkout-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.checkout-header {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.checkout-field {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--light-gray);
    margin-bottom: 10px;
    position: relative;
}

.checkout-field.removable {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remove-btn {
    width: 22px;
    height: 22px;
    background: var(--coral);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.checkout-payment {
    margin-top: 16px;
}

.checkout-payment > span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.payment-methods span {
    padding: 6px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 12px;
    color: var(--light-gray);
}

.payment-active {
    border-color: var(--black) !important;
    color: var(--black) !important;
    font-weight: 600;
}

.card-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
}

.card-chip {
    width: 30px;
    height: 22px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 16px;
}

.card-number {
    font-size: 14px;
    letter-spacing: 2px;
}

.features-list {
    flex: 1;
}

.feature-item {
    border-left: 3px solid var(--black);
    padding-left: 24px;
    margin-bottom: 36px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing {
    padding: 80px 0;
}

.pricing-intro {
    text-align: center;
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-feature {
    font-size: 15px;
    color: var(--black);
}

.pricing-feature .check {
    color: var(--green);
    font-weight: 700;
    margin-right: 6px;
}

.pricing-cards {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.pricing-card:first-child {
    border-radius: 12px 12px 0 0;
}

.pricing-card:last-child {
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.pricing-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.plan-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-header h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    flex: 1;
}

.plan-limit {
    font-size: 14px;
    font-weight: 700;
    color: var(--coral);
}

.plan-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.plan-price {
    text-align: right;
}

.plan-price .currency {
    font-size: 14px;
    color: var(--light-gray);
    vertical-align: super;
}

.plan-price .amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
}

.plan-price .period {
    font-size: 14px;
    color: var(--light-gray);
}

.plan-extra {
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: var(--light-gray);
    margin-top: -6px;
}

/* =============================================
   Testimonials Carousel
   ============================================= */
.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    display: flex;
    align-items: stretch;
    gap: 24px;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-card);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.95);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    background: #dfe8ec;
}

.quote-open,
.quote-close {
    font-family: Georgia, serif;
    font-size: 48px;
    color: var(--coral);
    line-height: 1;
    display: block;
}

.quote-open {
    text-align: left;
}

.quote-close {
    text-align: right;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px auto;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 16px 0;
}

.testimonial-name {
    font-size: 13px;
    color: var(--black);
    display: block;
    margin-bottom: 10px;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--coral);
    opacity: 1;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.faq-intro a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: underline;
}

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

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--coral);
}

.faq-question i {
    font-size: 12px;
    color: var(--light-gray);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--coral);
    text-decoration: underline;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--bg-main);
    padding: 60px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 500px;
}

.footer-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    font-size: 13px;
    color: var(--light-gray);
}

.footer-links-col a:hover {
    color: var(--coral);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--coral);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--light-gray);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--light-gray);
}

.footer-legal a:hover {
    color: var(--coral);
}

/* =============================================
   Bottom Banner
   ============================================= */
.bottom-banner {
    background: var(--bg-white);
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.bottom-banner.visible {
    transform: translateY(0);
}

.bottom-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-banner-content p {
    font-size: 13px;
    color: var(--medium-gray);
    text-align: center;
}

.btn-outline-small {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline-small:hover {
    background: var(--black);
    color: #fff;
}

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .step {
        gap: 40px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-visual {
        position: static;
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .hotmart-content {
        flex-direction: column;
        text-align: center;
    }

    .hotmart-image {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 350px;
    }

    .logos-slider {
        justify-content: center;
    }

    .logo-item img {
        height: 24px;
    }

    .benefits-grid {
        gap: 24px;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 12px);
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-image {
        flex: none;
        height: 250px;
    }

    .step,
    .step-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .testimonial-slide {
        flex: 0 0 85%;
    }

    .pricing-features {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-card {
        flex-direction: column;
    }

    .plan-price {
        text-align: left;
    }

    .plan-extra {
        text-align: left;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .bottom-banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .benefit-item {
        flex: 0 0 100%;
    }
}
