
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


:root {
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.25s ease-out;
    --transition-slow: 0.4s ease-out;
    --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    animation: fadeIn 0.5s ease-out;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.feature-card, .pricing-card, .review-card, .step-card {
    transition: var(--transition-smooth);
    will-change: transform;
}

.feature-card:hover, .pricing-card:hover, .review-card:hover, .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


input, textarea, select {
    transition: var(--transition-normal);
}

input:focus, textarea:focus, select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 168, 161, 0.15);
}


.nav-link {
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #13a8a1;
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}


@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-stagger > * {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(19, 168, 161, 0.1);
    transition: all 0.3s ease;
    margin: 0;
}

.nav-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 20px 0 20px;
    display: flex;
    align-items: center;
    height: 70px;
    gap: 2rem;
}

.nav-logo h2 {
    color: #13a8a1;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 0;
}

.nav-actions {
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #13a8a1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #13a8a1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 1px solid #13a8a1;
    color: #13a8a1;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #13a8a1;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-login:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(19, 168, 161, 0.2);
}

.btn-login:hover::before {
    left: 0;
}

.btn-login:active {
    transform: translateY(0);
}

.btn-signup {
    background: #13a8a1;
    border: 1px solid #13a8a1;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition-normal);
}

.btn-signup:hover {
    background: #0f9087;
    border-color: #0f9087;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 168, 161, 0.3);
}

.btn-signup:hover::before {
    transform: translateX(100%);
}

.btn-signup:active {
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}


.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #13a8a1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #13a8a1;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    background: #0f9087;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(19, 168, 161, 0.4);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #13a8a1;
    border: 2px solid #13a8a1;
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #13a8a1;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(19, 168, 161, 0.3);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:active {
    transform: translateY(-1px);
}


.btc-chart {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.chart-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.chart-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.price {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.change {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.change.profit {
    color: #059669;
    background: #ecfdf5;
}

.change.loss {
    color: #dc2626;
    background: #fef2f2;
}

.kline-chart {
    display: flex;
    height: 200px;
    margin-bottom: 1rem;
    position: relative;
}

.price-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70px;
    padding-right: 10px;
}

.price-label {
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: right;
}

.chart-area {
    flex: 1;
    position: relative;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line.horizontal {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.grid-line.horizontal:nth-child(1) { top: 20%; }
.grid-line.horizontal:nth-child(2) { top: 40%; }
.grid-line.horizontal:nth-child(3) { top: 60%; }
.grid-line.horizontal:nth-child(4) { top: 80%; }

.kline-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 10px;
}

.kline {
    width: 10px;
    position: relative;
    border-radius: 1px;
    transition: opacity 0.3s ease;
}

.kline:hover {
    opacity: 0.8;
}

.kline.green {
    background: #10b981;
    border: 1px solid #059669;
}

.kline.red {
    background: #ef4444;
    border: 1px solid #dc2626;
}

.chart-footer {
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #9ca3af;
    padding: 0 70px 0 10px;
}

.data-point.profit {
    color: #4ade80;
    font-size: 1.2rem;
}




section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


.features {
    background: #f8fdfd;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 168, 161, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 168, 161, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}


.security-features {
    padding: 80px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.security-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 168, 161, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(19, 168, 161, 0.15);
    border-color: rgba(19, 168, 161, 0.2);
}

.security-icon {
    width: 48px;
    height: 48px;
    background: rgba(19, 168, 161, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.security-feature:hover .security-icon {
    background: rgba(19, 168, 161, 0.15);
    transform: scale(1.05);
}

.security-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(89%) saturate(347%) hue-rotate(129deg) brightness(93%) contrast(89%);
}

.security-feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.security-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}


.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #13a8a1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}


.pricing {
    background: #f8fdfd;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 80px 0;
}

.pricing .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: none;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(19, 168, 161, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(19, 168, 161, 0.15);
}

.pricing-card.popular {
    border: 2px solid #13a8a1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #13a8a1;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #13a8a1;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: #13a8a1;
    font-weight: 700;
}

.period {
    color: #666;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    width: 100%;
    background: #13a8a1;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-plan:hover {
    background: #0f9087;
    transform: translateY(-2px);
}


.reviews {
    padding: 80px 0;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-weight: 600;
}

.rating-text {
    color: #00B67A;
    font-weight: 700;
}

.rating-stars svg {
    height: 16px;
    width: auto;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
}

.trustpilot-logo svg {
    height: 20px;
    width: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #f8fdfd;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(19, 168, 161, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(19, 168, 161, 0.15);
    background: rgba(19, 168, 161, 0.02);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #e5f5f4;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    background: #13a8a1;
    color: white;
}

.review-header h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.trustpilot-badge {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.trustpilot-badge svg {
    height: 18px;
    width: auto;
    opacity: 0.8;
}


.influencers {
    background: #f8fdfd;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.influencer-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 350px;
    cursor: pointer;
}

.influencer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 168, 161, 0.2);
}

.influencer-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.influencer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.influencer-card:hover .influencer-image img {
    transform: scale(1.05);
}

.influencer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.influencer-card:hover .influencer-overlay {
    opacity: 1;
    transform: translateY(0);
}

.influencer-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.influencer-overlay svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.influencer-card:hover .influencer-overlay svg {
    transform: translateX(5px);
}

.influencers-cta {
    text-align: center;
    max-width: 664px;
    margin: 0 auto;
}

.influencers-cta p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-affiliate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #13a8a1;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 260px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-affiliate:hover {
    background: #0f9087;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 168, 161, 0.3);
}


.about {
    background: #f8fdfd;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
}

.about-stat h3 {
    font-size: 2rem;
    color: #13a8a1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: #666;
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(19, 168, 161, 0.1);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: #13a8a1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-role {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #13a8a1;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-member p {
    color: #666;
    font-weight: 500;
}


.cta-section {
    padding: 80px 0;
}

.cta-container {
    position: relative;
    background: linear-gradient(135deg, #13a8a1 0%, #0f9087 100%);
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    text-align: center;
}

.cta-background-pattern {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-circles {
    max-width: 50%;
    height: auto;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-benefits {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.cta-benefits svg {
    color: #A0E9D5;
    flex-shrink: 0;
}

.cta-benefits span {
    opacity: 0.9;
}


.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(19, 168, 161, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(19, 168, 161, 0.1);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
}




.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.footer-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-simple p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-simple p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}




@media (max-width: 1024px) {
    .contact-info {
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
    }
}


@media (min-width: 1200px) {
    .pricing .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .pricing-grid {
        gap: 2.5rem;
    }
    
    .pricing-card {
        padding: 3rem 2.5rem;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .pricing .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}


@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero {
        width: 100%;
        margin-left: 0;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        width: 100%;
        margin-left: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-feature {
        padding: 1.5rem;
    }
    
    .security-feature h3 {
        font-size: 1.2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        width: 100%;
        margin-left: 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .trustpilot-rating {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .trustpilot-rating > span {
        font-size: 0.9rem;
    }
    
    .influencers {
        width: 100%;
        margin-left: 0;
    }
    
    .influencers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .influencer-card {
        height: 280px;
    }
    
    .influencer-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 1.5rem;
    }
    
    .btn-affiliate {
        width: 100%;
        min-width: auto;
    }
    
    .cta-container {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-cta {
        width: 100%;
        min-width: auto;
        margin-bottom: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-circles {
        max-width: 80%;
    }
    
    .about {
        width: 100%;
        margin-left: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
        max-width: 500px;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex: none;
    }
    
    .footer {
        width: 100%;
        margin-left: 0;
        padding: 2rem 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        width: 100%;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    
}


.hero-image,
.feature-card,
.testimonial-card,
.pricing-card,
.team-member {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

