/* =========================================
   SaaS Landing Page Styles
   ========================================= */

/* Hero Section */
.saas-hero {
    position: relative;
    padding: 180px 2rem 100px 2rem;
    background: #f8fafc;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    animation: floatBlob 10s infinite alternate ease-in-out;
}

.blob-blue {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.4);
    top: -100px;
    right: -100px;
}

.blob-mint {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.3);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.saas-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.saas-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.saas-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.saas-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.saas-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Dashboard Mockup Placeholder */
.saas-dashboard-mockup {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.saas-dashboard-mockup:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.mockup-header {
    background: #f1f5f9;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-right: 5px;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
}

.mockup-url {
    background: #ffffff;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
    flex: 1;
    text-align: left;
}

.mockup-body {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 200px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.w-80 {
    width: 80%;
}

.w-40 {
    width: 40%;
}

.mt-auto {
    margin-top: auto;
}

.mockup-main {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-stats-row {
    display: flex;
    gap: 20px;
}

.mockup-stat-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 8px solid #f1f5f9;
}

.chart-1 {
    border-left-color: #3b82f6;
    border-top-color: #3b82f6;
    transform: rotate(45deg);
}

.chart-2 {
    border-right-color: #10b981;
}

.chart-3 {
    border-bottom-color: #8b5cf6;
    border-left-color: #8b5cf6;
}

.mockup-chart-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    justify-content: center;
}

.mockup-bar {
    width: 40px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 6px 6px 0 0;
}

/* Banner Highlight */
.saas-highlight-banner {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    padding: 80px 2rem;
}

.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-content h2 {
    font-size: 2.5rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.highlight-content p {
    color: #115e59;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    margin-bottom: 15px;
    color: #0f766e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

.highlight-graphic {
    position: relative;
    height: 300px;
}

.floating-card {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    font-weight: 700;
    color: #333;
}

.c1 {
    top: 20px;
    left: 0;
    animation: float 6s infinite ease-in-out;
}

.c2 {
    top: 120px;
    right: 0;
    color: #ef4444;
    animation: float 6s infinite ease-in-out 1s;
}

.c3 {
    bottom: 20px;
    left: 40px;
    color: #10b981;
    animation: float 6s infinite ease-in-out 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Pricing Section */
.saas-pricing {
    padding: 120px 2rem;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-header h3 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.plan-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: #64748b;
    margin-right: 5px;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.plan-features li {
    margin-bottom: 15px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li i {
    color: #10b981;
    margin-top: 3px;
    font-size: 0.9rem;
}

.btn-pricing-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #3b82f6;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-pricing-primary:hover {
    background: #2563eb;
}

.btn-pricing-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.btn-pricing-outline:hover {
    background: #e2e8f0;
}

/* FAQ Section */
.saas-faq {
    padding: 100px 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #64748b;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #475569;
    line-height: 1.6;
}

/* Display answer on hover for preview (JS would be better but this works for demo) */
.faq-item:hover .faq-answer {
    display: block;
}

/* Partners Section */
.saas-partners {
    padding: 60px 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.saas-partners p {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.p-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #cbd5e1;
    filter: grayscale(100%);
    transition: 0.3s;
}

.p-logo:hover {
    filter: grayscale(0%);
    color: #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 40px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .saas-title {
        font-size: 2.5rem;
    }

    .saas-hero-actions {
        flex-direction: column;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
}

/* =========================================
   Dashboard Analytics Section
   ========================================= */
.ecom-dashboard-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #d1fae5 100%);
    font-family: 'Inter', sans-serif;
}

.dash-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.dash-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dash-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.dash-card h4 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.toggle-btns {
    display: flex;
    background: #f1f5f9;
    border-radius: 20px;
    padding: 3px;
}

.btn-toggle {
    border: none;
    background: transparent;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: 0.3s;
}

.btn-toggle.active {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.counter-huge {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.chart-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Bar Chart */
.bar-chart-container {
    display: flex;
    height: 200px;
    margin-top: 30px;
    position: relative;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 15px;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: right;
    width: 50px;
}

.bars {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    padding-left: 10px;
}

.grid-line {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 1px dashed #e2e8f0;
    z-index: 1;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    z-index: 2;
    flex: 1;
}

.bar {
    width: 30px;
    background: #3b82f6;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease-out;
}

.bar-group span {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 10px;
}

/* Customers Row */
.flex-row-center {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.avatars-group {
    display: flex;
}

.avatars-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars-group img:first-child {
    margin-left: 0;
}

.customers-tag {
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.stats-row {
    display: flex;
    gap: 30px;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* Donut Chart */
.donut-chart-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 30px auto;
}

.donut-svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
}

.circle-front {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease-out;
}

.green-stroke {
    stroke: #10b981;
}

.donut-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

/* Legends */
.legend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}

.legend-list-top .legend-item {
    justify-content: flex-start;
    gap: 10px;
}

.flex-align {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.blue {
    background: #3b82f6;
}

.dot.green {
    background: #10b981;
}

.legend-item .val {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

/* Line Chart */
.val-blue {
    color: #3b82f6;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.val-blue.dot-before::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

.line-chart-container {
    display: flex;
    height: 150px;
    margin-top: 20px;
}

.line-graph {
    flex: 1;
    position: relative;
    margin-left: 10px;
}

.svg-line {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.svg-line polyline {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-line circle {
    fill: #ffffff;
    stroke: #3b82f6;
    stroke-width: 2;
}

.x-axis-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
}

/* Gauge Chart */
.gauge-chart-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 40px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 6;
    stroke-linecap: round;
}

.gauge-fill-blue {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 125;
    stroke-dashoffset: 122;
    /* 2% approx */
}

.gauge-fill-green {
    fill: none;
    stroke: #10b981;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 125;
    stroke-dashoffset: 5;
    /* 98% approx */
}

.gauge-inner {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.gauge-inner .counter-bold {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.gauge-inner p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 5px;
}

.two-cards-row {
    display: flex;
    gap: 30px;
}

.two-cards-row .dash-card {
    flex: 1;
}

.counter-medium {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
}

.text-center {
    text-align: center;
}

.h-100 {
    height: 100%;
}

/* Responsive Dashboard Grid */
@media (max-width: 1024px) {
    .dash-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dash-bento-grid {
        grid-template-columns: 1fr;
    }

    .two-cards-row {
        flex-direction: column;
    }
}

/* Chart Animations */
.circle-front {
    stroke-dashoffset: 100;
}

.circle-front.animate-in {
    animation: drawDonut 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes drawDonut {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.svg-line polyline {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.svg-line polyline.animate-in {
    animation: drawLine 1.5s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.svg-line circle {
    opacity: 0;
    transform-origin: center;
}

.svg-line circle.animate-in {
    animation: fadeInCircle 0.5s ease forwards;
    animation-delay: 1.2s;
    /* wait for line to draw */
}

@keyframes fadeInCircle {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gauge-fill-blue,
.gauge-fill-green {
    stroke-dashoffset: 125;
}

.gauge-fill-blue.animate-in {
    animation: drawGaugeBlue 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes drawGaugeBlue {
    from {
        stroke-dashoffset: 125;
    }

    to {
        stroke-dashoffset: 122;
    }
}

.gauge-fill-green.animate-in {
    animation: drawGaugeGreen 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes drawGaugeGreen {
    from {
        stroke-dashoffset: 125;
    }

    to {
        stroke-dashoffset: 5;
    }
}

/* =========================================
   Toolkit Section
   ========================================= */
.ecom-toolkit-section {
    padding: 120px 2rem;
    position: relative;
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Glowing Background Orbs */
.ecom-toolkit-section::before,
.ecom-toolkit-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.ecom-toolkit-section::before {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    top: -150px;
    left: -150px;
}

.ecom-toolkit-section::after {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -100px;
    right: -100px;
}

.toolkit-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.toolkit-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.toolkit-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tk-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.toolkit-card:hover .tk-icon {
    transform: scale(1.1) rotate(5deg);
}

.tk-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 10px;
}

.tk-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .toolkit-grid {
        grid-template-columns: 1fr;
    }

    .toolkit-card {
        padding: 20px;
    }
}

/* Image Card Styling for Toolkit */
.toolkit-card.image-card {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.tk-image-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.tk-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.toolkit-card.image-card:hover .tk-image-wrap img {
    transform: scale(1.08);
}

.toolkit-card.image-card .tk-content {
    padding: 25px;
    position: relative;
}

.tk-icon-small {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* =========================================
   Steps Section
   ========================================= */
.ecom-steps-section {
    padding: 100px 2rem;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.steps-title-col {
    max-width: 650px;
}

.steps-title-col .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.steps-title-col p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.steps-btn-col {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #3b82f6;
    border-radius: 30px;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background: #eff6ff;
}

.btn-solid-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-solid-blue:hover {
    background: #1d4ed8;
    color: #ffffff;
}

.steps-grid-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card-wrap {
    position: relative;
    padding-top: 15px;
    /* space for badge */
}

.step-badge {
    position: absolute;
    top: 0;
    left: 20px;
    background: #3b82f6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.step-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px 30px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.step-card:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-card-header h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.step-icon {
    font-size: 1.6rem;
    color: #3b82f6;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.step-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Arrows */
.step-arrow {
    position: absolute;
    width: 150px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.arrow-top {
    top: -70px;
    left: 33%;
    transform: translateX(-50%);
}

.arrow-bottom {
    bottom: -20px;
    right: 33%;
    transform: translateX(50%);
}

@media (max-width: 992px) {
    .steps-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-arrow {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================
   Pricing Section 4 Columns
   ========================================= */
.custom-pricing-section {
    width: 100%;
    padding: 60px 0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.pricing-toggle-wrap {
    margin: 40px 0 60px;
}

.pricing-toggle {
    display: inline-flex;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-toggle button {
    border: none;
    background: transparent;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-toggle button span {
    font-size: 0.7rem;
    color: #2563eb;
    font-weight: 800;
}

.pricing-toggle button.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.pricing-toggle button.active span {
    color: #ffffff;
}

.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: end;
    /* So the taller popular card pops up */
}

.price-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.popular-card {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    z-index: 2;
    padding-top: 50px;
    /* space for badge */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pc-header h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: inherit;
}

.price-card:not(.popular-card) .pc-header h4 {
    color: #0f172a;
}

.pc-header p {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
}

.pc-price {
    margin: 25px 0 30px;
}

.pc-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: inherit;
    opacity: 0.7;
}

.pc-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: inherit;
    letter-spacing: -1px;
}

.pc-price .period {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.7;
    margin-left: 5px;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border-radius: 30px;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f8fafc;
}

.pc-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.pc-features li {
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.price-card:not(.popular-card) .pc-features li {
    color: #475569;
}

.pc-features li i {
    font-size: 1.1rem;
}

.price-card:not(.popular-card) .pc-features li i {
    color: #3b82f6;
}

.popular-card .pc-features li i {
    color: #ffffff;
}

.pc-footer {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-top: auto;
}

.pc-footer-blue {
    background: rgba(0, 0, 0, 0.15);
}

.fees-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: inherit;
    opacity: 0.6;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fees-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: inherit;
}

.price-card:not(.popular-card) .fees-row {
    color: #64748b;
}

.price-card:not(.popular-card) .fees-row strong {
    color: #2563eb;
}

.popular-card .fees-row strong {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
        align-items: stretch;
    }

    .popular-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Single Horizontal Price Card
   ========================================= */
.single-price-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.spc-left {
    flex: 0 0 40%;
    padding: 50px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.spc-right {
    flex: 0 0 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spc-left h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.spc-left p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.spc-price-box {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.spc-price-box .currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 5px;
}

.spc-price-box .amount {
    font-size: 4.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -2px;
    transition: opacity 0.2s ease-in-out;
}

.spc-price-box .period {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 45px;
    margin-left: 10px;
    transition: opacity 0.2s ease-in-out;
}

.spc-guarantee {
    margin-top: 20px !important;
    font-size: 0.95rem !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.spc-guarantee i {
    color: #10b981;
    margin-right: 5px;
}

.spc-features-grid {
    display: flex;
    gap: 40px;
}

.spc-features-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.spc-features-grid ul li {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.spc-features-grid ul li i {
    color: #3b82f6;
    font-size: 1.4rem;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .single-price-card {
        flex-direction: column;
    }

    .spc-left {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 40px 30px;
    }

    .spc-right {
        padding: 40px 30px;
    }

    .spc-features-grid {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .spc-price-box .amount {
        font-size: 3.5rem;
    }

    .spc-features-grid ul li {
        font-size: 0.95rem;
    }
}

/* Animation for price update */
.price-anim-out {
    animation: priceSlideUpOut 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.price-anim-in {
    animation: priceSlideUpIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes priceSlideUpOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-15px);
    }
}

@keyframes priceSlideUpIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ERP Core Features Section & Small Cards */
.ecom-features-section {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.ecom-features-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.feature-card-small {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card-small:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-card-small h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card-small p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Dynamic Colors */
.fc-blue .feature-icon-wrapper {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.fc-green .feature-icon-wrapper {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.fc-orange .feature-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.fc-purple .feature-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.fc-pink .feature-icon-wrapper {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.fc-cyan .feature-icon-wrapper {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.fc-red .feature-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.fc-indigo .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

/* =========================================
   Features Section
   ========================================= */
.features-five-section {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.features-five-main-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.features-five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-five-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-five-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.feature-five-card .f5-icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-five-card:hover .f5-icon {
    transform: scale(1.1);
}

.feature-five-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-five-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-five-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-five-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-five-grid {
        grid-template-columns: 1fr;
    }
}
}

.features-five.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 10px;
}
.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Registration Modal Styles
   ========================================= */
.reg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reg-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.reg-modal-box {
    background: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.reg-modal-overlay.show .reg-modal-box {
    transform: translateY(0);
}

.reg-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.reg-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-modal-header h3 i {
    color: #3b82f6;
}

.close-modal-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.close-modal-btn:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.reg-modal-body {
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.form-group.full-width label.section-label {
    font-size: 1.1rem;
    color: #1e293b;
    margin-top: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #f1f5f9;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group input[type="file"] {
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input[type="file"] {
    padding: 8px 10px;
    background: #ffffff;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    margin-right: 15px;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #dbeafe;
}

.reg-modal-footer {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.btn-gradient-submit {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-gradient-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Additional Modal & Form Styles
   ========================================= */

/* Password Wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.password-wrapper input {
    width: 100%;
    padding-right: 40px !important;
}
.password-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
}
.password-wrapper .toggle-password:hover {
    color: #3b82f6;
}

/* OTP Modal */
.otp-box {
    max-width: 450px;
}
.otp-instruction {
    color: #475569;
    margin-bottom: 25px;
}
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.otp-inputs input {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    color: #1e293b;
    font-weight: 700;
    transition: 0.3s;
}
.otp-inputs input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.resend-timer {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}
.resend-timer span {
    font-weight: 700;
    color: #ef4444;
}
.btn-resend-otp {
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 20px;
}

/* Success Modal */
.success-box {
    max-width: 400px;
    padding: 40px 30px;
}
.success-icon-wrap {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}
.success-box h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}
.success-box p {
    color: #64748b;
}

/* Terms and Conditions Checkbox */
.terms-group {
    margin-top: 10px;
}
.terms-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem !important;
    color: #475569 !important;
    cursor: pointer;
    font-weight: 500 !important;
}
.terms-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
    margin: 0;
}
.terms-label a {
    color: #3b82f6;
    text-decoration: underline;
}
.terms-label a:hover {
    color: #2563eb;
}
