/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f3f4f6;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 2.5rem;
    width: 10rem;
}

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

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ea580c;
}

.header-cta {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef3e2 0%, #dbeafe 50%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: #fed7aa;
    animation: bounce 3s infinite;
}

.element-2 {
    top: 10rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: #bfdbfe;
    animation: bounce 4s infinite 1s;
}

.element-3 {
    bottom: 10rem;
    left: 5rem;
    width: 3rem;
    height: 3rem;
    background: #fdba74;
    animation: bounce 5s infinite 2s;
}

.element-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: #93c5fd;
    animation: bounce 3.5s infinite 0.5s;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fed7aa, #bfdbfe);
    color: #9a3412;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.timer-display {
    display: flex;
    gap: 0.5rem;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Success Banner */
.success-banner {
    background: linear-gradient(135deg, #2563eb, #ea580c);
    padding: 1rem 0;
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: 500;
    gap: 0.5rem;
}

.success-content i {
    animation: pulse 2s infinite;
}

/* Value Section */
.value-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.value-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.value-icon:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    color: #ea580c;
}

.value-icon.blue {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
    color: #2563eb;
}

.value-icon.gradient {
    background: linear-gradient(135deg, #fed7aa, #bfdbfe);
    color: #ea580c;
}

.value-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #6b7280;
}

/* Why Section */
.why-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9fafb, #fef3e2);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(0.5rem);
}

.check-icon {
    padding: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.check-icon:hover {
    transform: scale(1.1);
}

.check-icon.orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
}

.check-icon.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.check-icon.gradient {
    background: linear-gradient(135deg, #ea580c, #2563eb);
    color: white;
}

.check-icon.gradient-reverse {
    background: linear-gradient(135deg, #2563eb, #ea580c);
    color: white;
}

.why-item p {
    color: #374151;
    transition: color 0.3s ease;
}

.why-item:hover p {
    color: #1f2937;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-top: 1rem;
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-0.25rem);
}

.feature-border {
    border-left: 4px solid;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-border:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-border.orange {
    border-color: #ea580c;
}

.feature-border.orange:hover {
    background: #fef3e2;
}

.feature-border.blue {
    border-color: #2563eb;
}

.feature-border.blue:hover {
    background: #eff6ff;
}

.feature-border h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-border p {
    color: #6b7280;
}

.process-card {
    background: linear-gradient(135deg, #fef3e2, #eff6ff);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #fed7aa, #bfdbfe);
    border-radius: 50%;
    opacity: 0.2;
    transform: translate(4rem, -4rem);
}

.process-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.process-icon {
    background: linear-gradient(135deg, #fed7aa, #bfdbfe);
    padding: 0.75rem;
    border-radius: 50%;
    color: #ea580c;
}

.process-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.process-header p {
    color: #6b7280;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.02);
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
}

.step-number.orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.step-number.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.step-number.gradient {
    background: linear-gradient(135deg, #ea580c, #2563eb);
}

/* Transformation Section */
.transformation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ea580c, #2563eb, #ea580c);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.transformation-section .container {
    position: relative;
    z-index: 10;
}

.transformation-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: pulse 3s infinite;
}

.transformation-text {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 64rem;
    margin: 0 auto 2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #fef3e2);
}

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

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

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

.testimonial-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.testimonial-text {
    color: #6b7280;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.pricing-card {
    background: linear-gradient(135deg, #fef3e2, #eff6ff);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #fed7aa, #bfdbfe);
    border-radius: 50%;
    opacity: 0.2;
    transform: translate(5rem, -5rem);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.pricing-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.features-list-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.feature-check:hover {
    transform: scale(1.02);
}

.feature-check i {
    color: #ea580c;
    transition: transform 0.3s ease;
}

.feature-check:hover i {
    transform: scale(1.1);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-details {
    color: #6b7280;
    font-size: 0.875rem;
}

.guarantees {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.guarantee-item i {
    color: #ea580c;
}

.signup-form-container {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-form-container h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.signup-form input:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.signup-form input:hover {
    border-color: #fdba74;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.submit-button:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: none;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f9fafb;
    transform: translateY(-0.125rem);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    padding: 0;
}

.faq-question i {
    color: #ea580c;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid #f3f4f6;
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.trust-icon {
    padding: 0.75rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.trust-icon:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-badge p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ea580c, #2563eb);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-disclaimer {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .logo-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-logo .logo-subtitle {
    color: #fdba74;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-content {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    max-width: 64rem;
    width: 90%;
    margin: 1rem;
}

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

.video-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-button:hover {
    color: #374151;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-placeholder i {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #6b7280;
}

.video-description {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ea580c;
    border: 2px solid transparent;
}

.cta-button.secondary:hover {
    color: #dc2626;
    transform: scale(1.05);
}

.cta-button.white {
    background: white;
    color: #ea580c;
}

.cta-button.white:hover {
    background: #f9fafb;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .timer-display {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .logo-title {
        display: none;
    }

    .pricing-section {
    padding: 2rem 0;
}

    
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .transformation-title {
        font-size: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    .value-grid,
    .why-grid,
    .testimonials-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-content {
        flex-direction: row;
        gap: 0.25rem;
        padding: 0 10px;
    }
}

:root {
    --stp-size: 64px;
    --stp-bg: #fff;
    --stp-shadow: 0 8px 28px rgba(15,23,42,0.12);
    --stp-hover-shadow: 0 10px 30px rgba(234,88,12,0.18);
    --stp-bottom: 26px;
    --stp-right: 26px;
  }

  #scrollTopBtn {
    position: fixed;
    right: var(--stp-right);
    bottom: var(--stp-bottom);
    width: var(--stp-size);
    height: var(--stp-size);
    border-radius: 50%;
    border: none;
    background: var(--stp-bg);
    box-shadow: var(--stp-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  #scrollTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
  }
  #scrollTopBtn:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--stp-hover-shadow); }

  .stp-ring {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .stp-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff;
  }

  .stp-ring-bg { stroke: #eee; fill: none; stroke-width:6; }
  .stp-ring-progress { fill:none; stroke-width:6; stroke-linecap: round; transition: stroke-dashoffset 0.2s linear; }
