/* ============================================================
   SNAPCHAT LAWSUIT NOW — MODERN LANDING PAGE CSS
   Premium Design: Deep Blue / Navy + Soft Red Accent
   ============================================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2a2533;
    /* Dark Slate Purple from logo text */
    --primary-mid: #3d364a;
    --primary-light: #524e66;
    --accent: #63233c;
    /* Deep Plum/Maroon from icon */
    --accent-hover: #7a2c4a;
    --accent-soft: #fdf2f5;
    --white: #ffffff;
    --off-white: #fbf8fa;
    --gray-100: #f0eff2;
    --gray-200: #e5e2e8;
    --gray-300: #cfcad6;
    --gray-500: #7c7785;
    --gray-700: #3d364a;
    --text-dark: #2a2533;
    --text-muted: #524e66;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.lp-body {
    font-family: 'Inter', 'Poppins', sans-serif !important;
    background: var(--white) !important;
    color: var(--text-dark) !important;
    line-height: 1.7;
    overflow-x: hidden;
}

body.lp-body h1,
body.lp-body h2,
body.lp-body h3,
body.lp-body h4,
body.lp-body h5,
body.lp-body h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

/* ===== STICKY NAVBAR ===== */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lp-nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 10px 0;
}

.lp-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lp-logo-icon img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* For footer, make it slightly larger if needed */
.lp-footer-brand .lp-logo-icon img {
    height: 64px;
}

.lp-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.lp-logo-text span:first-child {
    font-size: 15px;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

.lp-logo-text span:last-child {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.lp-nav-links a {
    color: var(--primary) !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0.8;
}

.lp-nav-links a:hover {
    opacity: 1;
    background: var(--gray-100);
}

.lp-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-nav-phone {
    color: var(--primary) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
    transition: var(--transition);
}

.lp-nav-phone:hover {
    opacity: 1;
    color: var(--primary) !important;
}

.lp-btn-nav {
    background: linear-gradient(135deg, var(--accent), #4a1a2c);
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(99, 35, 60, 0.3);
    white-space: nowrap;
}

.lp-btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 64, 64, 0.4);
    color: var(--white) !important;
}

/* Hamburger Menu */
.lp-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
}

.lp-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.lp-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.lp-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lp-mobile-menu {
    display: none;
    background: var(--primary);
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-mobile-menu.open {
    display: block;
}

.lp-mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none !important;
}

.lp-mobile-menu a:last-child {
    border-bottom: none;
}

/* ===== SECTION LAYOUT ===== */
.lp-section {
    padding: 100px 0;
    scroll-margin-top: 80px;
    /* Offset for sticky header */
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.lp-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), #4a1a2c);
    color: var(--white) !important;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(99, 35, 60, 0.3);
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #4a1a2c 100%);
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(99, 35, 60, 0.35);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(99, 35, 60, 0.45);
    color: var(--white) !important;
}

.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.lp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white) !important;
}

.lp-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.lp-btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* ===== SECTION LABELS ===== */
.lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.lp-section-label.accent {
    background: rgba(99, 35, 60, 0.1);
    color: var(--accent) !important;
    border: 1px solid rgba(99, 35, 60, 0.2);
}

.lp-section-label.primary {
    background: rgba(13, 27, 62, 0.08);
    color: var(--primary) !important;
    border: 1px solid rgba(13, 27, 62, 0.15);
}

.lp-section-label.white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== HERO SECTION ===== */
.lp-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1b1724 0%, #2a2533 40%, #3d364a 70%, #524e66 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 35, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(122, 44, 74, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(42, 37, 51, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative grid */
.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* .lp-hero-left occupies its natural grid column */
.lp-hero-left {
    min-width: 0;
    max-width: 100%;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 64, 64, 0.15);
    border: 1px solid rgba(232, 64, 64, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}

.lp-hero-badge span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff8fa3 !important;
}

.lp-hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--white) !important;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s ease forwards;
}

.lp-hero h1 .highlight {
    background: linear-gradient(135deg, #9f97ae, #63233c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.lp-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78) !important;
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 1s ease forwards;
}

.lp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 1.1s ease forwards;
}

.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease forwards;
}

.lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px;
    font-weight: 500;
}

.lp-hero-trust-item svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* Hero Right — Visual Card */
.lp-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease forwards;
    min-width: 0;
    max-width: 100%;
}

.lp-hero-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.lp-hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.lp-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(232, 64, 64, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 6px;
}

.lp-hero-card-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 28px;
}

.lp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.5;
}

.lp-check-list li .check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.lp-check-list li .check-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.lp-hero-card-cta {
    display: block;
    background: linear-gradient(135deg, var(--accent), #4a1a2c);
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(99, 35, 60, 0.35);
}

.lp-hero-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 64, 64, 0.5);
    color: var(--white) !important;
}

.lp-confidential-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Floating decorations */
.lp-hero-float-1,
.lp-hero-float-2 {
    position: absolute;
    border-radius: 18px;
    padding: 14px 18px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 3;
}

.lp-hero-float-1 {
    background: rgba(255, 255, 255, 0.1);
    bottom: -20px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.lp-hero-float-2 {
    background: rgba(232, 64, 64, 0.12);
    top: -20px;
    right: -20px;
    border-color: rgba(232, 64, 64, 0.25);
    animation: float 4s ease-in-out infinite 2s;
}

.lp-float-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.lp-float-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--white) !important;
}

/* ===== ABOUT SECTION ===== */
.lp-about {
    background: var(--off-white);
    padding: 90px 0;
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.lp-about-img {
    position: relative;
}

.lp-about-img-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lp-about-graphic {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lp-about-graphic::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 64, 64, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
}

.lp-about-graphic-inner {
    text-align: center;
    z-index: 1;
}

.lp-about-graphic-icon {
    font-size: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.lp-about-graphic p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 500;
    max-width: 240px;
    margin: 0 auto;
}

.lp-about-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.lp-about-stat-card.left {
    bottom: 30px;
    left: -25px;
}

.lp-about-stat-card.right {
    top: 30px;
    right: -25px;
}

.lp-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary) !important;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-stat-lbl {
    font-size: 12px;
    color: var(--gray-500) !important;
    font-weight: 500;
}

.lp-about-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    color: var(--primary) !important;
}

.lp-about-text p {
    font-size: 15.5px;
    color: var(--text-muted) !important;
    margin-bottom: 18px;
    line-height: 1.8;
}

.lp-about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.lp-about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.lp-about-point:hover {
    border-color: rgba(13, 27, 62, 0.2);
    box-shadow: var(--shadow-sm);
}

.lp-about-point-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.lp-about-point-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark) !important;
}

/* ===== ELIGIBILITY SECTION ===== */
.lp-eligibility {
    background: var(--white);
    padding: 90px 0;
}

.lp-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.lp-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary) !important;
    margin-bottom: 16px;
}

.lp-section-head p {
    font-size: 16px;
    color: var(--text-muted) !important;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.lp-elig-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.lp-elig-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.lp-elig-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.lp-elig-card:hover::before {
    transform: scaleX(1);
}

.lp-elig-num {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.lp-elig-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 10px;
}

.lp-elig-card p {
    font-size: 14px;
    color: var(--text-muted) !important;
    line-height: 1.6;
}

/* ===== ABUSE TYPES SECTION ===== */
.lp-abuse {
    background: linear-gradient(135deg, #0d1b3e 0%, #142354 50%, #1a3a7a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.lp-abuse::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(232, 64, 64, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(232, 64, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.lp-abuse .lp-section-head h2 {
    color: var(--white) !important;
}

.lp-abuse .lp-section-head p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.lp-abuse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.lp-abuse-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.lp-abuse-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lp-abuse-card-tier {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lp-abuse-card.tier-1 .lp-abuse-card-tier {
    background: rgba(99, 35, 60, 0.1);
    color: #ff8fa3;
    border: 1px solid rgba(99, 35, 60, 0.3);
}

.tier-2 .lp-abuse-card-tier {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24 !important;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.lp-abuse-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 6px;
}

.lp-abuse-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55) !important;
    margin-bottom: 24px;
}

.lp-abuse-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.lp-abuse-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.5;
    text-align: left;
    max-width: 100%;
}

.lp-abuse-list-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.tier-1 .lp-abuse-list-icon {
    background: rgba(232, 64, 64, 0.15);
}

.tier-2 .lp-abuse-list-icon {
    background: rgba(251, 191, 36, 0.12);
}

/* ===== DISQUALIFICATION SECTION ===== */
.lp-disqualify {
    background: var(--off-white);
    padding: 90px 0;
}

.lp-disqualify-box {
    background: linear-gradient(135deg, #fff5f5, #fff8f8);
    border: 1.5px solid rgba(232, 64, 64, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.lp-disqualify-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #ff6b6b);
}

.lp-disqualify-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.lp-disqualify-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(232, 64, 64, 0.3);
}

.lp-disqualify-header h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--accent) !important;
    margin-bottom: 4px;
}

.lp-disqualify-header p {
    font-size: 14px;
    color: var(--text-muted) !important;
}

.lp-disqualify-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-disq-item {
    background: var(--white);
    border: 1px solid rgba(232, 64, 64, 0.12);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}

.lp-disq-item:hover {
    border-color: rgba(232, 64, 64, 0.25);
    box-shadow: 0 4px 16px rgba(232, 64, 64, 0.08);
}

.lp-disq-x {
    width: 32px;
    height: 32px;
    background: rgba(232, 64, 64, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
}

#lp_captchaMessage {
    color: #ff8fa3;
    font-weight: 600;
}

.lp-disq-text {
    font-size: 14px;
    color: var(--text-dark) !important;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== IMPORTANT NOTICE SECTION ===== */
.lp-notice {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-notice::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 64, 64, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.lp-notice-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.lp-notice-icon {
    width: 72px;
    height: 72px;
    background: rgba(232, 64, 64, 0.15);
    border: 2px solid rgba(232, 64, 64, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.lp-notice-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white) !important;
    margin-bottom: 12px;
}

.lp-notice-content p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.lp-notice-content p:last-child {
    margin-bottom: 0;
}

.lp-notice-content strong {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== STRONG CTA SECTION ===== */
.lp-strong-cta {
    background: linear-gradient(135deg, #e84040 0%, #c73030 50%, #a52020 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-strong-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lp-strong-cta-inner {
    position: relative;
    z-index: 1;
}

.lp-strong-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white) !important;
    margin-bottom: 16px;
    font-weight: 900;
}

.lp-strong-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.lp-strong-cta .lp-btn-primary {
    background: var(--white) !important;
    color: var(--accent) !important;
    font-size: 17px;
    padding: 18px 44px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.lp-strong-cta .lp-btn-primary:hover {
    background: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--accent) !important;
}

.lp-cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 500;
}

/* ===== CONTACT / FORM SECTION ===== */
.lp-contact {
    background: var(--white);
    padding: 90px 0;
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.lp-contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary) !important;
    margin-bottom: 16px;
}

.lp-contact-info p {
    font-size: 15px;
    color: var(--text-muted) !important;
    line-height: 1.7;
    margin-bottom: 32px;
}

.lp-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.lp-contact-detail:hover {
    border-color: rgba(13, 27, 62, 0.2);
    box-shadow: var(--shadow-sm);
}

.lp-contact-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lp-contact-detail-text span {
    display: block;
    font-size: 12px;
    color: var(--gray-500) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.lp-contact-detail-text a,
.lp-contact-detail-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none !important;
}

/* Contact Form */
.lp-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.lp-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.lp-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 6px;
}

.lp-form-card>p {
    font-size: 14px;
    color: var(--text-muted) !important;
    margin-bottom: 28px;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-form-group {
    margin-bottom: 18px;
}

.lp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.lp-form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark) !important;
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.lp-form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 27, 62, 0.08);
}

.lp-form-control::placeholder {
    color: var(--gray-300);
}

textarea.lp-form-control {
    resize: vertical;
    min-height: 110px;
}

.lp-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.lp-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.lp-form-checkbox label {
    font-size: 12.5px;
    color: var(--text-muted) !important;
    line-height: 1.6;
    cursor: pointer;
}

.lp-form-checkbox label a {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

.lp-form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(13, 27, 62, 0.3);
}

.lp-form-submit:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 27, 62, 0.4);
}

/* ===== FOOTER ===== */
.lp-footer {
    background: #fbf8fa;
    padding: 100px 0 40px;
    border-top: 1px solid var(--gray-200);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}

.lp-footer-brand p {
    color: var(--text-muted) !important;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.lp-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.lp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-footer-links a {
    color: var(--text-muted) !important;
    font-size: 14px;
    text-decoration: none !important;
    transition: var(--transition);
}

.lp-footer-links a:hover {
    color: var(--accent) !important;
}

.lp-footer-bottom {
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.lp-footer-copy {
    color: var(--text-muted) !important;
    font-size: 14px;
    margin-bottom: 20px;
}

.lp-footer-disclaimer {
    font-size: 11px;
    line-height: 1.8;
    color: var(--gray-500) !important;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animation classes */
.lp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-animate-delay-1 {
    transition-delay: 0.1s;
}

.lp-animate-delay-2 {
    transition-delay: 0.2s;
}

.lp-animate-delay-3 {
    transition-delay: 0.3s;
}

.lp-animate-delay-4 {
    transition-delay: 0.4s;
}

.lp-animate-delay-5 {
    transition-delay: 0.5s;
}

/* ===== ALERT BANNER ===== */
.lp-alert-banner {
    background: linear-gradient(90deg, #b71c1c, var(--accent));
    padding: 12px 24px;
    text-align: center;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.lp-alert-banner p {
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

/* ===== FORM VALIDATION STYLES ===== */
#lp-contact-form .is-invalid {
    border-color: #e84040 !important;
}

div.error {
    color: #e84040;
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    display: block;
    width: 100%;
}

.lp-form-check label.error {
    margin-left: 0;
    margin-top: 8px;
    font-size: 13px;
    text-transform: none;
    color: #e84040;
}

@media (max-width: 1024px) {
    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lp-hero-visual {
        max-width: 400px;
    }

    .lp-hero h1 {
        font-size: 2.4rem;
    }

    .lp-about-graphic {
        aspect-ratio: 16/9;
    }

    .lp-eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-disqualify-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 60px 0;
    }

    .lp-nav-links {
        display: none;
    }

    .lp-nav-phone {
        display: none;
    }

    .lp-btn-nav {
        display: none;
    }

    .lp-hamburger {
        display: flex;
    }

    .lp-hero {
        padding-top: 72px;
        min-height: auto;
    }

    .lp-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-hero-right {
        display: block;
        margin-top: 30px;
    }

    .lp-hero h1 {
        font-size: 2rem;
    }

    .lp-hero-sub {
        font-size: 15px;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-hero-actions .lp-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .lp-hero-actions .lp-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .lp-hero {
        padding: 100px 0 60px;
    }

    .lp-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-about-img {
        display: block;
        margin-bottom: 30px;
    }

    .lp-about-stat-card.left {
        left: 10px;
        bottom: 10px;
        transform: scale(0.9);
        transform-origin: bottom left;
    }

    .lp-about-stat-card.right {
        right: 10px;
        top: 10px;
        transform: scale(0.9);
        transform-origin: top right;
    }

    .lp-about-points {
        grid-template-columns: 1fr;
    }

    .lp-eligibility-grid {
        grid-template-columns: 1fr;
    }

    .lp-abuse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-disqualify-box {
        padding: 30px 20px;
    }

    .lp-disqualify-grid {
        grid-template-columns: 1fr;
    }

    .lp-disqualify-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-notice-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-form-card {
        padding: 28px 20px;
    }

    .lp-cta-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-footer-brand .lp-logo img {
        max-height: 40px;
    }

    .lp-footer-bottom {
        flex-direction: column;
    }

    /* Fix ReCAPTCHA overflowing on narrow screens */
    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: 0 0;
    }
}

@media (max-width: 480px) {
    .lp-container {
        padding: 0 16px;
    }

    .lp-hero h1 {
        font-size: 1.8rem;
    }

    .lp-strong-cta h2 {
        font-size: 1.7rem;
    }

    .lp-strong-cta .lp-btn-primary {
        padding: 15px 30px;
    }

    .g-recaptcha {
        transform: scale(0.82);
        transform-origin: 0 0;
    }
}

.policy-hero {
    background: linear-gradient(135deg, #ffffff 0%, #2a2533 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.policy-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.policy-hero p {
    opacity: 0.7;
    font-size: 1.1rem;
}

.policy-content-wrapper {
    background: var(--off-white);
    padding: 80px 0;
    min-height: 60vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.policy-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.policy-text h3 {
    margin: 32px 0 16px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.policy-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.policy-text a {
    color: var(--accent);
    text-decoration: underline;
}

.policy-text ul {
    margin: 0 0 20px 20px;
    color: var(--text-muted);
}

.policy-text li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 32px 24px;
    }

    .policy-hero {
        padding: 100px 0 50px;
    }
}


.ty-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b3e 100%);
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.ty-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

.ty-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.ty-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff !important;
    display: block;
}

.ty-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ty-steps {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.ty-steps h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}
#hero-heading{
    font-size: 28px;
}
#about-heading{
    font-size: 24px;
}
@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .ty-card {
        padding: 40px 24px;
    }

    .ty-card h1 {
        font-size: 28px;
    }

    .ty-card p {
        font-size: 16px;
    }
}
