/* Premium Landing Page Design - NestMail Suite */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --nms-primary: #673AB7;
    --nms-primary-light: #7e57c2;
    --nms-secondary: #0ea5e9;
    --nms-text: #1f2937;
    --nms-text-muted: #64748b;
    --nms-bg-light: #f8fafc;
    --nms-white: #ffffff;
    --nms-heading: #0f172a;
}

/* Reset to prevent double scrollbar */
html {
    height: auto !important;
    overflow-x: hidden !important;
}

body {
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    position: relative;
    margin: 0;
    padding: 0;
}

main {
    overflow: visible !important;
}

.nms-landing-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--nms-text);
    padding-top: 90px;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Hero Section */
.nms-hero {
    height: calc(100vh - 90px);
    min-height: 620px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.nms-hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(103, 58, 183, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(103, 58, 183, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none;
    z-index: 1;
}

.nms-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.nms-hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.nms-hero-text {
    flex: 1.15;
}

.nms-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(103, 58, 183, 0.06);
    color: var(--nms-primary);
    border: 1px solid rgba(103, 58, 183, 0.18);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.nms-hero-badge i {
    font-size: 14px;
    color: var(--nms-primary);
}

.nms-hero-text h1 {
    font-size:49px;
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--nms-heading);
    letter-spacing: -0.03em;
}

.nms-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 95%;
    font-weight: 400;
}

.nms-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
}

/* Refined Professional Buttons */
.nms-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

.nms-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.nms-btn-primary {
    background: var(--nms-primary);
    color: white !important;
    box-shadow: 0 4px 14px rgba(103, 58, 183, 0.25);
}

.nms-btn-primary:hover {
    background: #5e35b1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.3);
}

.nms-btn-primary i {
    transition: transform 0.2s ease;
}

.nms-btn-primary:hover i {
    transform: translateX(4px);
}

.nms-btn-secondary {
    background: #f3f4f6;
    color: #111827 !important;
    border: 1px solid transparent;
}

.nms-btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.nms-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid #f1f5f9;
}

.nms-trust-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.nms-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.nms-trust-item i {
    color: #10b981;
    font-size: 18px;
}

.nms-hero-visual {
    flex: 0.95;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nms-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(103, 58, 183, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.nms-hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(103, 58, 183, 0.16), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nms-browser-mockup {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: nmsMockupFloat 6s infinite ease-in-out;
}

.nms-browser-mockup:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.nms-browser-header {
    background: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nms-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dot-1 {
    background-color: #ff5f56;
}

.dot-2 {
    background-color: #ffbd2e;
}

.dot-3 {
    background-color: #27c93f;
}

.nms-browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(226, 232, 240, 0.4);
    font-size: 11px;
    color: #64748b;
    padding: 4px 32px;
    border-radius: 6px;
    font-family: sans-serif;
    pointer-events: none;
    letter-spacing: 0.3px;
}

.nms-browser-body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
}

.nms-browser-body img {
    width: 100%;
    height: auto;
    border: none;
}

@keyframes nmsMockupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Partner Slider Section - IMPROVED */
.partner-slider-sectionField {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid #f1f5f9;
}

.Trustedbyagil-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--nms-primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.Trustedbyagil-heading::before,
.Trustedbyagil-heading::after {
    content: '';
    height: 1px;
    width: 60px;
    background: rgba(103, 58, 183, 0.2);
}

.partner-slide {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-imgmain {
    filter: none;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 40px;
    width: auto !important;
    margin: 0 auto;
}

.partner-imgmain:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* Stats Band */
.nms-stats-band {
    background: #0f172a;
    padding: 70px 0;
    color: white;
    position: relative;
    z-index: 10;
}

.nms-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.nms-stat-value {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nms-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* Feature Sections */
.nms-feature-detail-section {
    padding: 100px 0;
}

.nms-bg-light {
    background: var(--nms-bg-light);
}

.nms-bg-white {
    background: var(--nms-white);
}

.nms-feature-detail-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 24px;
}



.nms-feature-detail-content {
    flex: 1;
}

.nms-feature-detail-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(103, 58, 183, 0.06);
    color: var(--nms-primary);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nms-feature-detail-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--nms-heading);
    letter-spacing: -0.01em;
}

.nms-feature-detail-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--nms-text-muted);
    margin-bottom: 32px;
    font-weight: 400;
}

.nms-feature-detail-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nms-feature-detail-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nms-heading);
}

.nms-feature-detail-highlights li i {
    color: var(--nms-primary);
    font-size: 18px;
}

.nms-feature-detail-image {
    flex: 1;
}

.nms-feature-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(103, 58, 183, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.nms-feature-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(103, 58, 183, 0.14), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Capabilities / Core Features */
.nms-capabilities-section {
    padding: 100px 0;
}

.nms-capabilities-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.nms-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.nms-section-header-sm {
    margin-bottom: 40px;
}

.nms-section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--nms-primary);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nms-section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--nms-heading);
    margin-bottom: 16px;
}

.nms-section-header p {
    font-size: 17px;
    color: var(--nms-text-muted);
    font-weight: 400;
}

.nms-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nms-capability-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.nms-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    border-color: rgba(103, 58, 183, 0.2);
}

.nms-capability-icon {
    width: 50px;
    height: 50px;
    background: rgba(103, 58, 183, 0.04);
    color: var(--nms-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.nms-capability-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--nms-heading);
    margin-bottom: 16px;
}

.nms-capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nms-capability-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--nms-text-muted);
    margin-bottom: 10px;
    font-weight: 400;
}

.nms-capability-list li i {
    color: var(--nms-primary);
    font-size: 14px;
}

.nms-capability-featured {
    background: #fdfbff;
    border: 1.5px solid rgba(103, 58, 183, 0.3);
}

.nms-capability-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--nms-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nms-capability-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: var(--nms-primary);
    font-weight: 500;
}

/* Use Cases */
.nms-use-cases-section {
    padding: 100px 0;
}

.nms-use-cases-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.nms-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nms-use-case-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nms-use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border-color: #f1f5f9;
}

.nms-use-case-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    color: var(--nms-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.nms-use-case-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--nms-heading);
    margin-bottom: 10px;
}

.nms-use-case-card p {
    color: var(--nms-text-muted);
    font-size: 14px;
    font-weight: 400;
}

/* Pricing Comparison */
.nms-comparison-section {
    padding: 100px 0;
}

.nms-comparison-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.nms-comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.nms-comparison-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--nms-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.nms-comparison-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--nms-heading);
    margin-bottom: 15px;
}

.nms-text-gradient {
    background: linear-gradient(135deg, var(--nms-primary), var(--nms-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nms-comparison-table {
    background: white;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
    border: 1px solid #f1f5f9;
}

.nms-comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.nms-comparison-table th {
    padding: 24px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--nms-heading);
    border-bottom: 1px solid #f1f5f9;
}

.nms-comparison-table th:nth-child(2) {
    color: var(--nms-primary);
    background: #fdfbff;
    border-radius: 16px 16px 0 0;
}

.nms-comparison-table td {
    padding: 20px 20px;
    font-size: 15px;
    color: var(--nms-text);
    border-bottom: 1px solid #f1f5f9;
    font-weight: 400;
}

.nms-comparison-table td:nth-child(2) {
    background: #fdfbff;
    font-weight: 500;
    color: var(--nms-primary);
}

.nms-comparison-table tr:last-child td {
    border-bottom: none;
}

.nms-comparison-table tr:last-child td:nth-child(2) {
    border-radius: 0 0 16px 16px;
}

.nms-price-highlight {
    font-size: 22px !important;
    font-weight: 600 !important;
}

.bi-check-circle-fill {
    color: #10b981;
    margin-right: 8px;
}

/* Security */
.nms-security-section {
    padding: 100px 0;
}

.nms-security-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.nms-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nms-security-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nms-security-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-color: #f1f5f9;
}

.nms-security-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.nms-security-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--nms-heading);
    margin-bottom: 12px;
}

.nms-security-card p {
    font-size: 13.5px;
    color: var(--nms-text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* FAQ Section */
.nms-faq-section {
    padding: 100px 0;
}

.nms-faq-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.nms-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.nms-faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nms-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nms-faq-item:hover {
    border-color: rgba(103, 58, 183, 0.2);
    box-shadow: 0 4px 20px rgba(103, 58, 183, 0.06);
}

.nms-faq-item.nms-faq-open {
    border-color: rgba(103, 58, 183, 0.25);
    box-shadow: 0 8px 30px rgba(103, 58, 183, 0.08);
}

.nms-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--nms-heading);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.nms-faq-question:hover {
    color: var(--nms-primary);
}

.nms-faq-item.nms-faq-open .nms-faq-question {
    color: var(--nms-primary);
}

.nms-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(103, 58, 183, 0.06);
    color: var(--nms-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nms-faq-item.nms-faq-open .nms-faq-icon {
    background: var(--nms-primary);
    color: white;
    transform: rotate(45deg);
}

.nms-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.nms-faq-item.nms-faq-open .nms-faq-answer {
    max-height: 300px;
    padding: 0 24px 22px;
}

.nms-faq-answer p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--nms-text-muted);
    font-weight: 400;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .nms-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.nms-cta-section {
    padding: 100px 24px;
    position: relative;
}

.nms-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #673AB7 0%, #4527a0 50%, #311b92 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(103, 58, 183, 0.3);
}

.nms-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.nms-cta-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
    transform: rotate(-30deg);
    pointer-events: none;
}

.nms-cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.nms-cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
}

.nms-cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

.nms-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.nms-cta-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nms-cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.nms-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.nms-btn-white {
    background: white;
    color: #673AB7 !important;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
}

.nms-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.nms-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.nms-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px) scale(1.02);
}

.nms-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.nms-cta-note i {
    color: #4ade80;
}

/* Parallax & Animation Base */
.nms-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.nms-floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--nms-primary), var(--nms-secondary));
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
    animation: nmsFloat 20s infinite alternate ease-in-out;
}

@keyframes nmsFloat {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-10deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Scroll Animation Classes */
.nms-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nms-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nms-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nms-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nms-animate-in .nms-reveal,
.nms-animate-in.nms-reveal,
.nms-animate-in .nms-reveal-left,
.nms-animate-in.nms-reveal-left,
.nms-animate-in .nms-reveal-right,
.nms-animate-in.nms-reveal-right,
.nms-animate-in .nms-reveal-scale,
.nms-animate-in.nms-reveal-scale {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Staggered Delays */
.nms-delay-1 {
    transition-delay: 0.1s;
}

.nms-delay-2 {
    transition-delay: 0.2s;
}

.nms-delay-3 {
    transition-delay: 0.3s;
}

.nms-delay-4 {
    transition-delay: 0.4s;
}

/* Parallax Layer Effect */
.nms-parallax-layer {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Hero Visual Animation */
.nms-hero-visual {
    animation: nmsHeroFloat 6s infinite ease-in-out;
}

@keyframes nmsHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Media Query Adjustments for Animations */
@media (prefers-reduced-motion: reduce) {

    .nms-reveal,
    .nms-reveal-left,
    .nms-reveal-right,
    .nms-reveal-scale,
    .nms-floating-shape,
    .nms-hero-visual {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 991px) {
    .nms-hero {
        height: auto !important;
        min-height: auto !important;
        padding: 60px 0 80px !important;
    }

    .nms-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nms-hero-text h1 {
        font-size: 40px;
    }

    .nms-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .nms-hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nms-hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nms-trust-divider {
        display: none;
    }

    .nms-hero-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .nms-cta-content h2 {
        font-size: 36px;
    }

    .nms-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .nms-cta-note {
        flex-direction: column;
        border-radius: 20px;
        gap: 8px;
    }
}

/* Custom Helper Styles added for complete SaaS premium visual overhaul */
.nms-color-primary {
    color: var(--nms-primary);
    font-weight: 600;
}

.nms-mobile-mockup {
    width: 280px;
    margin: 0 auto;
    border: 12px solid #0f172a;
    border-radius: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #0f172a;
    overflow: hidden;
    position: relative;
    border-bottom-width: 14px;
    border-top-width: 14px;
    animation: nmsMockupFloat 6s infinite ease-in-out;
}

.nms-mobile-screen {
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
}

.nms-mobile-screen img {
    width: 100%;
    height: auto;
    border: none !important;
}

.nms-highlighted-col-header {
    color: var(--nms-primary) !important;
    background: rgba(103, 58, 183, 0.03) !important;
    border-left: 2px solid rgba(103, 58, 183, 0.12) !important;
    border-right: 2px solid rgba(103, 58, 183, 0.12) !important;
    border-top: 2px solid rgba(103, 58, 183, 0.12) !important;
    font-weight: 600 !important;
    position: relative;
}

.nms-highlighted-col-header::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nms-primary);
    color: white;
    font-size: 8px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(103, 58, 183, 0.2);
}

.nms-highlighted-col {
    background: rgba(103, 58, 183, 0.03) !important;
    border-left: 2px solid rgba(103, 58, 183, 0.12) !important;
    border-right: 2px solid rgba(103, 58, 183, 0.12) !important;
    font-weight: 600 !important;
    color: var(--nms-primary) !important;
}

tr:last-child .nms-highlighted-col {
    border-bottom: 2px solid rgba(103, 58, 183, 0.12) !important;
    border-radius: 0 0 16px 16px;
}
