body {
    background: #000 !important;
}
.tool-content {
    padding: 40px 0;
    width: 100%;
}
#content {
    background: linear-gradient(180deg, #040023, black);
    color: #fff;
}
.custom-template-container > div {
    width: 100%;
    padding: 0 20px;
}
:root {
    --primary-purple: #6366f1;
    --primary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(17, 17, 40, 0.6);
    --bg-card-hover: rgba(25, 25, 60, 0.8);
    --border-subtle: rgba(99, 102, 241, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --glow-purple: rgba(99, 102, 241, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.3);
}

* {
    box-sizing: border-box;
}

.tools-page-wrapper {
    background: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.tools-page-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 80%, rgba(236, 72, 153, 0.06), transparent 50%);
    pointer-events: none;
}

.hero-section {
    position: relative;
    height: min(calc(100vh - 80px), 580px);
    display: flex;
    align-items: flex-start;
    padding: 80px 20px 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0.8) 15%, rgba(10,10,26,0.6) 40%, transparent 100%);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center 70%, black 20%, transparent 60%);
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-orb.purple {
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-glow-orb.cyan {
    width: 250px;
    height: 250px;
    background: var(--accent-cyan);
    top: 40%;
    right: 5%;
    animation-delay: -3s;
}

.hero-glow-orb.pink {
    width: 200px;
    height: 200px;
    background: var(--accent-pink);
    bottom: 10%;
    left: 30%;
    animation-delay: -5s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -15px) scale(1.03); }
    66% { transform: translate(-8px, 10px) scale(0.97); }
}

.hero-container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 11px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan), var(--accent-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--border-subtle);
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--accent-cyan);
    font-size: 14px;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-purple);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.5;
}

.hero-image {
    position: relative;
    width: 340px;
    max-width: 100%;
    filter: drop-shadow(0 15px 40px rgba(99, 102, 241, 0.35));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.carousel-section {
    position: relative;
    padding: 50px 20px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.tool-selector {
    max-width: 700px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tool-selector-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.tool-selector-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.tool-selector-btn.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.15));
    border-color: var(--primary-purple);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.tool-selector-btn .tool-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-selector-btn .tool-icon i {
    color: white;
    font-size: 16px;
}

.tool-selector-btn .tool-info {
    text-align: left;
}

.tool-selector-btn .tool-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.tool-selector-btn .tool-tag {
    font-size: 11px;
    color: var(--text-muted);
}

.tool-selector-btn.active .tool-tag {
    color: var(--accent-cyan);
}

.tool-selector-btn.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.tool-selector-btn.coming-soon:hover {
    background: var(--bg-card);
    border-color: var(--border-subtle);
    transform: none;
}

.tool-selector-btn.coming-soon .tool-icon {
    background: linear-gradient(135deg, #4b5563, #6b7280);
}

.tool-selector-btn .coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tool-carousel-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.tool-carousel {
    position: relative;
}

.tool-slide {
    display: none;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 35px 40px;
    min-height: 320px;
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.tool-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--accent-cyan), transparent);
}

.tool-slide.active {
    display: flex;
    align-items: center;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 35px;
}

.slide-info {
    flex: 1;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.15));
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 420px;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--primary-purple);
    font-size: 12px;
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--border-subtle);
    transform: translateY(-2px);
}

.slide-visual {
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-wrapper {
    position: relative;
}

.slide-image-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    filter: blur(25px);
    opacity: 0.4;
}

.slide-image {
    position: relative;
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(99, 102, 241, 0.25));
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav i {
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--glow-purple);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-hint {
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.carousel-hint i {
    color: var(--accent-cyan);
}

.carousel-hint-wrapper {
    text-align: center;
}

.pricing-section {
    position: relative;
    padding: 50px 20px;
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    position: relative;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover:not(.active) {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.toggle-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    box-shadow: 0 4px 12px var(--glow-purple);
}

.toggle-btn .discount-badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--accent-pink), #f43f5e);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    width: 340px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    border: 1px solid var(--primary-purple);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, var(--bg-card) 30%);
    box-shadow: 
        0 0 0 1px rgba(99, 102, 241, 0.3),
        0 0 30px rgba(99, 102, 241, 0.2),
        0 0 60px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--glow-purple);
}

.popular-badge i {
    font-size: 10px;
}

.card-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 12px;
    color: var(--text-muted);
}

.price-wrapper {
    text-align: center;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-amount .currency {
    font-size: 22px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.price-note {
    font-size: 12px;
    color: var(--accent-cyan);
    margin-top: 2px;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    margin-top: 12px;
}

.bonus-badge i {
    font-size: 12px;
}

.bonus-badge.hidden {
    display: none;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.15));
    color: var(--accent-cyan);
    font-size: 9px;
    border-radius: 50%;
    margin-top: 1px;
}

.card-cta {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card:not(.featured) .card-cta {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:not(.featured) .card-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pricing-card.featured .card-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: white;
    box-shadow: 0 4px 15px var(--glow-purple);
}

.pricing-card.featured .card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-purple);
}

.stats-section {
    position: relative;
    padding: 50px 20px;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 24px 30px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    flex: 1;
    max-width: 280px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 20px;
    color: var(--accent-cyan);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.stat-text {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding: 50px 20px;
    }

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

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

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        flex: unset;
    }
    
    .hero-image {
        width: 220px;
    }
    
    .tool-carousel-container {
        padding: 0 40px;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-visual {
        order: -1;
    }
    
    .slide-description {
        max-width: 100%;
    }
    
    .slide-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 30px 20px 40px;
    }

    .hero-title {
        font-size: 26px;
    }
    
    .tool-carousel-container {
        padding: 0 15px;
    }
    
    .tool-slide {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .carousel-nav {
        width: 38px;
        height: 38px;
    }
    
    .carousel-nav.prev {
        left: -8px;
    }
    
    .carousel-nav.next {
        right: -8px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-image {
        height: 160px;
    }
    
    .tool-selector {
        gap: 8px;
    }
    
    .tool-selector-btn {
        padding: 10px 14px;
    }
    
    .tool-selector-btn .tool-icon {
        width: 32px;
        height: 32px;
    }
    
    .tool-selector-btn .tool-name {
        font-size: 13px;
    }
    
    .pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .toggle-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 340px;
    }
    
    .stats-container {
        gap: 10px;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 14px 10px;
        border-radius: 12px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
        border-radius: 10px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 16px;
        margin-bottom: 2px;
        white-space: nowrap;
    }
    
    .stat-text {
        font-size: 9px;
        white-space: nowrap;
    }
    
    .carousel-hint {
        font-size: 12px;
        padding: 8px 14px;
    }
}

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInOverlay 0.25s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.checkout-modal {
    position: relative;
    width: 520px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #0f0f2a;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
    animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.checkout-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.checkout-header {
    text-align: center;
    margin-bottom: 20px;
}

.checkout-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.checkout-subtitle {
    font-size: 13px;
    color: #94a3b8;
}

.checkout-subtitle strong {
    color: #06b6d4;
}

.checkout-steps {
    margin-bottom: 24px;
}

.checkout-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step-dot.active {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.step-dot.completed {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
}

.branding-annual-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.branding-annual-note i {
    font-size: 16px;
}

.branding-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.branding-option {
    cursor: pointer;
}

.branding-option input {
    display: none;
}

.branding-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.2s;
}

.branding-card i {
    font-size: 16px;
}

.branding-price {
    margin-left: auto;
    font-size: 12px;
    color: #64748b;
}

.branding-option input:checked + .branding-card {
    background: rgba(99, 102, 241, 0.12);
    border-color: #6366f1;
    color: #fff;
}

.branding-option input:checked + .branding-card i {
    color: #6366f1;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: #94a3b8;
}

.summary-row.summary-total {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.checkout-next-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.checkout-next-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.checkout-next-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-back-btn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.checkout-back-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.crypto-option {
    cursor: pointer;
}

.crypto-option input {
    display: none;
}

.crypto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s;
}

.crypto-card img {
    width: 28px;
    height: 28px;
}

.crypto-card span {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.2;
}

.crypto-option input:checked + .crypto-card {
    background: rgba(99, 102, 241, 0.12);
    border-color: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.crypto-option input:checked + .crypto-card span {
    color: #fff;
}

@media (max-width: 480px) {
    .checkout-modal {
        padding: 24px 20px;
    }
    
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}