@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.nci-landing {
    --teal: #4BA8A8;
    --teal-light: #5ebdbd;
    --teal-soft: rgba(75,168,168,0.08);
    --teal-border: rgba(75,168,168,0.2);
    --gold: #D4A843;
    --navy: #2c3e50;
    --text: #3a4a5c;
    --text-light: #7a8a9a;
    --bg: #f7fafa;
    --white: #ffffff;
    --gray-200: #e0eaea;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    padding: 2rem;
}

.nci-glow {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75,168,168,0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.nci-wave-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    height: 45vh;
    overflow: hidden;
    pointer-events: none;
}

.nci-wave-bg svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.nci-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: clamp(2.5rem, 6vw, 3.5rem);
    max-width: 540px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(75,168,168,0.06), 0 12px 40px rgba(44,62,80,0.06);
    animation: nciCardIn 0.7s ease-out both;
    text-align: center;
}

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

.nci-logo {
    height: 52px;
    width: auto;
    margin-bottom: 1.75rem;
}

.nci-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 3px;
    margin: 0 auto 1.75rem;
}

.nci-card h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.nci-subtitle {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.nci-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.nci-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--teal-soft);
    color: var(--teal);
    border: 1px solid var(--teal-border);
    letter-spacing: 0.02em;
}

.nci-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.nci-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.nci-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9375rem 2rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    background: var(--teal);
    color: var(--white) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(75,168,168,0.25);
}

.nci-cta-phone:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(75,168,168,0.3);
    color: var(--white) !important;
}

.nci-cta-phone svg {
    width: 20px;
    height: 20px;
}

.nci-cta-email {
    font-size: 0.8125rem;
    color: var(--text-light) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.nci-cta-email:hover {
    color: var(--teal) !important;
}

.nci-pulse-wrap {
    position: relative;
    display: inline-flex;
}

.nci-pulse-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    animation: nciRing 2s ease-out infinite;
}

@keyframes nciRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.nci-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
    .nci-card { animation: none; opacity: 1; }
    .nci-pulse-wrap::before { animation: none; display: none; }
}
