:root {
    --bg-color: #111111;
    --primary-color: #FF7A00;
    --secondary-color: #cc6200;
    --accent-color: #ff9d40;
    --text-color: #f0f0f0;
    --text-muted-color: #a0a0b0;
    --card-bg-color: #1a1a1a;
    --border-color: #2c2c2c;
    --font-family: 'Poppins', sans-serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 122, 0, 0.05), transparent 30%),
                      radial-gradient(circle at 80% 90%, rgba(255, 157, 64, 0.05), transparent 30%);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    filter: brightness(1.1);
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 122, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #111111;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
    color: #111111;
}

.btn-whatsapp {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    border: none;
}

.btn-whatsapp:hover {
    filter: brightness(1.15);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin-top: 1rem;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn i {
    font-size: 1.2em;
}

.cta-pulse {
    animation: cta-pulse 2s infinite;
}

/* --- HEADER --- */
.header {
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.nav-logo .logo-img {
    height: 40px;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo-text-orange {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
     /* for mobile layout */
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* --- HERO SECTION --- */
.hero-section {
    background-image: linear-gradient(rgba(17, 17, 17, 0.9), var(--bg-color)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-spider {
    display: none; /* Removed */
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-pre-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-price-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    display: inline-block;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.1);
}

.hero-price-highlight p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hero-price-highlight strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.hero-price-highlight span {
    color: var(--text-muted-color);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted-color);
    margin-bottom: 2.5rem;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 500;
}

.hero-trial-link {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-trial-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* --- ADVANTAGES SECTION --- */
.advantages-section {
    padding: 100px 0;
    background-color: var(--card-bg-color);
}

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

.advantage-card {
    background-color: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.1);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.advantage-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.advantage-description {
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

.advantage-icon-img {
    height: 60px;
    margin-bottom: 1.5rem;
}

/* --- PLANS SECTION --- */
.plans-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 122, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: -45px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.plan-description {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 2.7rem;
}

.plan-price {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 300;
}

.plan-price span {
    font-size: 3.5rem;
    font-weight: 700;
}

.plan-price .plan-period {
    font-size: 1rem;
    color: var(--text-color);
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: center;
    padding-left: 0;
    flex-direction: column;
}

.plan-features li {
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: left;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.plan-features li:first-child {
    font-weight: 500;
    font-size: 1.1rem;
}

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

.feature-text span {
    color: var(--text-color);
    padding-left: 0.2rem;
}

.plan-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.plan-features strong {
    color: var(--text-color);
    font-weight: 600;
}

.common-features {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--card-bg-color);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.common-features-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.common-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.common-features-list li {
    color: var(--text-muted-color);
}

.common-features-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- FREE TRIAL SECTION --- */
.free-trial-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--card-bg-color) 100%);
}

.trial-action {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.trial-action p {
    color: var(--text-muted-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--card-bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-link {
    display: block;
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-muted-color);
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-link i {
    margin-right: 1rem;
    font-size: 1.5rem;
    vertical-align: middle;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-muted-color);
    font-size: 1.8rem;
    margin-right: 1.5rem;
}

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

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
}

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

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--card-bg-color);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-header-icon {
    height: 50px;
}

.faq-header .section-title {
    margin-bottom: 0;
}

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

.faq-item {
    background-color: var(--bg-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    font-family: var(--font-family);
    transition: color 0.3s ease;
}

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

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    background: var(--card-bg-color);
    padding: 8px;
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg);
    background: var(--primary-color);
    color: var(--bg-color);
}

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

.faq-answer p {
    padding: 0 1.5rem 0 1.5rem;
    color: var(--text-muted-color);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0;
}

/* --- STEPS SECTION --- */
.steps-section {
    background-color: var(--card-bg-color);
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid transparent;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.step-description {
    color: var(--text-muted-color);
    margin-bottom: 2rem;
    flex-grow: 1;
    padding-top: 1rem;
    min-height: 4.8rem;
}

.step-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: auto;
}

.step-download-group, .step-contact-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.step-qr-code {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    border: 4px solid var(--card-bg-color);
    transition: transform 0.3s ease;
}

.step-qr-code:hover {
    transform: scale(1.05);
}

.step-icon-img {
    height: 140px;
    object-fit: contain;
}

.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #0c0a13;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: background-color 0.3s ease;
}

.btn-app-store:hover {
    background-color: #2a2a4a;
    color: var(--text-color);
}

.btn-app-store .google-play-logo {
    height: 40px;
    width: auto;
}

.btn-app-store div {
    display: flex;
    flex-direction: column;
}

.btn-app-store span {
    font-size: 0.8rem;
    line-height: 1;
}

.btn-app-store strong {
    font-size: 1.2rem;
    line-height: 1.2;
}

/* --- DOWNLOAD PROMO SECTION --- */
.download-promo-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.download-promo-maintext {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: -1rem auto 1rem auto;
}

.download-promo-section .section-subtitle {
    margin-bottom: 3rem;
}

.download-promo-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-promo-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.2);
}

.download-promo-image {
    display: block;
    width: 100%;
    height: auto;
}

.download-badge-wrapper {
    text-align: center;
    margin-top: 2.5rem;
}

.google-play-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--card-bg-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid transparent;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-text {
    color: var(--text-muted-color);
    font-style: italic;
    flex-grow: 1;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-author {
    color: var(--text-color);
    font-weight: 600;
}

/* --- FOOTER --- */
.footer {
    padding: 4rem 0 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    background: var(--card-bg-color);
}

.footer p {
    transition: color 0.3s ease;
}

.footer p:hover {
    color: var(--text-muted-color);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--text-muted-color);
}

.footer-link i {
    font-size: 1.2rem;
}

/* --- WHATSAPP FLOAT BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E; /* Darker WhatsApp Green */
    color: #FFF;
}

/* --- ANIMATIONS --- */
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media(max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-bg-spider { display: none; }
    .step-description { min-height: unset; }
    
    .header .btn-primary { display: none; }
    .header .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #151515;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease-in-out;
        gap: 0;
        padding-top: 100px;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
     .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header .btn-primary { display: none; }
    .nav-logo .logo-text { display: block; }
}

@media(max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media(max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}