/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* End normalize.css */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: #000;
    color: white;
    padding: 60px 0 100px 0;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-profile {
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    display: inline-block;
}

.hero-content {
    position: relative;
    width: 100%;
}

.hero-badge {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1;
}

.hero-badge-bottom {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin: 2rem 0;
    line-height: 1;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    color: #fff;
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 2.5rem 0 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
}

.cta-button.large {
    padding: 22px 55px;
    font-size: 1.2rem;
    margin: 3rem 0 2rem;
}

.stats {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-text {
    font-size: 1rem;
    color: #e0e0e0;
}

.stat .material-icons {
    color: #fff;
    font-size: 2rem;
}

/* Features Section */
.features {
    background: #000;
    padding: 80px 0;
    border-top: 1px solid #111;
}

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

.feature-card {
    background: #000;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #fff;
    background: #111;
}

.feature-icon {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

/* Section Titles */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000;
}

/* About Section Images */
.about-image {
    text-align: center;
    margin: 3rem 0;
}

.dashboard-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.dashboard-image:hover {
    border-color: #555;
    transform: translateY(-3px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-text ul {
    list-style: none;
    margin: 2rem 0;
}

.about-text li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
}

.about-text li::before {
    content: '•';
    color: #fff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: #111;
    color: white;
    padding: 3rem;
    border: 1px solid #333;
    border-radius: 10px;
    margin: 4rem 0;
}

.highlight-box h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.highlight-box p {
    color: #e0e0e0;
    line-height: 1.7;
}

.highlight-box ul {
    list-style: none;
    margin: 2rem 0;
}

.highlight-box li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 0;
    color: #e0e0e0;
}

/* Results Section */
.results {
    background: #111;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.results .section-title {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Results Images */
.results-image {
    text-align: center;
    margin: 3rem 0;
}

.success-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.success-image:hover {
    border-color: #555;
    transform: translateY(-3px);
}

/* Strategy Comparison Images */
.strategy-image {
    text-align: center;
    margin: 3rem 0;
}

.strategy-comparison-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.strategy-comparison-image:hover {
    border-color: #555;
    transform: translateY(-3px);
}

/* Course Content Section */
.course-content {
    padding: 100px 0;
    background: #000;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.content-block {
    background: #111;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: #555;
}

.content-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.content-block ul {
    list-style: none;
}

.content-block li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.5;
}

.content-block li::before {
    content: '•';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Why Different Section */
.why-different {
    padding: 100px 0;
    background: #000;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-item {
    padding: 2rem;
    border: 1px solid #333;
    background: #111;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: #555;
}

.comparison-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.5;
}

.comparison-item li::before {
    content: '•';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote {
    background: #111;
    color: #e0e0e0;
    padding: 3rem;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    margin: 3rem 0;
    line-height: 1.6;
}

/* Image Sections */
.about-image,
.results-image,
.strategy-image {
    text-align: center;
    margin: 3rem 0;
}

.course-interface-image,
.success-image,
.strategy-comparison-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.course-interface-image:hover,
.success-image:hover,
.strategy-comparison-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Testimonials Section */
.testimonials {
    background: #000;
    padding: 100px 0;
}

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

.testimonial {
    background: #111;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial:hover {
    border-color: #555;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* WhatsApp Testimonial Screenshots */
.whatsapp-testimonial {
    background: transparent;
    padding: 0;
    border: none;
    text-align: center;
}

.whatsapp-testimonial:hover {
    border: none;
    transform: translateY(-5px);
}

.whatsapp-screenshot {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
}

.testimonial-icon {
    font-size: 1.5rem;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, #1e1e1e, #0d0d0d);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid #fff;
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255,255,255,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 0 30px 80px rgba(255,255,255,0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.limited-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: limitedPulse 3s infinite;
}

@keyframes limitedPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.package-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.package-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.countdown-timer {
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.timer-text {
    color: #ccc;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.countdown-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    align-items: center;
}

.countdown-display span {
    background: rgba(0,0,0,0.4);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    min-width: 30px;
    text-align: center;
    font-size: 1rem;
}

.cta-button.secondary {
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05));
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.price-header {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: white;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.price-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.price-old {
    font-size: 1.4rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    color: #888;
    font-weight: 500;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 1rem;
    opacity: 0.8;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-list {
    padding: 2.5rem 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    color: #e8e8e8;
    line-height: 1.6;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

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

.feature-item:hover {
    color: #fff;
    transform: translateX(5px);
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding-left: 1rem;
}

.feature-item .material-icons {
    color: #fff;
    margin-right: 1.2rem;
    margin-top: 3px;
    font-size: 22px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.pricing-info {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
}

.pricing-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-info h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.pricing-info p {
    color: #e0e0e0;
    line-height: 1.6;
}

.pricing-info ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.pricing-info li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
}

.pricing-info li::before {
    content: '•';
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq {
    background: #000;
    padding: 100px 0;
}

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

.faq-item {
    background: #111;
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
    color: #fff;
}

.faq-question:hover {
    background: #222;
}

.faq-question .material-icons:first-child {
    color: #fff;
    margin-right: 1rem;
    font-size: 20px;
}

.faq-question .expand {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #fff;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    background: #111;
    color: #fff;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #111, #0a0a0a);
    color: #e0e0e0;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-contact h4,
.footer-links h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item .material-icons {
    color: #fff;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    color: #ccc;
    font-weight: 600;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.whatsapp-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Footer & WhatsApp Button */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px 0;
        min-height: auto;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-image,
    .success-image,
    .strategy-comparison-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about,
    .course-content,
    .why-different,
    .testimonials,
    .pricing,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .pricing-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
        border: 2px solid #fff;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-card:hover {
        transform: translateY(-8px);
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }
    
    .limited-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 0.8rem;
    }
    
    .countdown-display {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.2rem;
    }
    
    .countdown-display span {
        min-width: 28px;
        padding: 3px 6px;
        font-size: 0.9rem;
    }
    
    .package-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .price-current {
        font-size: 2.8rem;
    }
    
    .package-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .features-list {
        padding: 2rem 1.5rem;
    }
    
    .countdown-timer {
        padding: 0.6rem 0.8rem;
    }
    
    .timer-text {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-badge,
    .hero-badge-bottom {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-link {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-icon {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .course-interface-image,
    .success-image,
    .strategy-comparison-image {
        max-width: 100%;
        margin: 2rem 0;
    }
    
    .about-image,
    .results-image,
    .strategy-image {
        margin: 2rem 0;
    }

    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial {
        text-align: center;
    }
    
    .whatsapp-screenshot {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-badge,
    .hero-badge-bottom {
        font-size: 1.5rem;
    }
}

/* Performance optimizations */
.feature-card,
.content-block,
.comparison-item,
.testimonial,
.pricing-card,
.faq-item {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

.error-message {
    color: #ff6b6b !important;
    font-size: 0.8rem !important;
    margin-top: 0.5rem !important;
    display: block;
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
textarea:focus,
.cta-button:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
} 

/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.payment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal-content {
    background: linear-gradient(145deg, #1e1e1e, #0d0d0d);
    margin: 2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.3s ease;
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.payment-modal-body {
    padding: 2rem;
}

.package-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

.price-label {
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.payment-method:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.payment-method.selected {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.payment-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.payment-details {
    flex: 1;
}

.payment-details h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-details p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.payment-arrow {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.customer-info {
    margin-bottom: 2rem;
}

.customer-info h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.customer-info .form-group {
    margin-bottom: 1rem;
}

.customer-info input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.customer-info input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.customer-info input::placeholder {
    color: #999;
}

.security-badges {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.8rem;
}

.security-badge .material-icons {
    color: #4CAF50;
    font-size: 16px;
}

/* Stripe Payment Styles */
.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stripe styles removed - PayPal only system */

.payment-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-submit-btn:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transform: translateY(-2px);
}

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

.spinner {
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none !important;
}

/* Success Page Styles */
.success-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.5s ease;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-animation {
    margin-bottom: 3rem;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: bounceIn 0.8s ease;
}

.checkmark {
    width: 60px;
    height: 30px;
    border: 4px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: checkmarkDraw 0.5s ease 0.3s both;
}

.success-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    animation: slideUp 0.6s ease 0.4s both;
}

.success-message {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: slideUp 0.6s ease 0.5s both;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideUp 0.6s ease 0.6s both;
}

.success-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-item .material-icons {
    color: #4CAF50;
    font-size: 2rem;
    margin-top: 0.2rem;
}

.success-item h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideUp 0.6s ease 0.7s both;
}

.success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.success-btn.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
}

.success-btn.primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
}

.success-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.success-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    animation: slideUp 0.6s ease 0.8s both;
}

.next-steps h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1rem 0 1rem 4rem;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.tracking-pixels {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 60px;
        height: 0;
    }
    100% {
        width: 60px;
        height: 30px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Payment Styles */
@media (max-width: 768px) {
    .payment-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .payment-modal-header,
    .payment-modal-body {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .success-content {
        padding: 1rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .success-details {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .next-steps li {
        padding-left: 3.5rem;
        font-size: 1rem;
    }
    
    .next-steps li::before {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .checkmark-circle {
        width: 100px;
        height: 100px;
    }
    
    .checkmark {
        width: 50px;
        height: 25px;
    }
} 