*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --pink: #E91E63;
    --pink-light: #F48FB1;
    --pink-pale: #FCE4EC;
    --pink-mid: #F06292;
    --orange: #FF7043;
    --gold: #FFA726;
    --dark: #1A1A2E;
    --text: #333;
    --muted: #777;
    --white: #fff;
    --radius: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white) !important;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.6;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid #f5f5f5;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: -0.5px;
}
.logo span { color: var(--dark); }

.accent { color: var(--pink); position: relative; }
.accent:after {
    position: absolute;
    width: 170px;
    height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,.45);
    border-radius: 100%;
    content: ' ';
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover { color: var(--pink); }

.btn-nav {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.9; }

/* HERO */
.hero-wrapper {
    overflow: hidden;
    /*margin-bottom: 100px;*/
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .hero-wrapper {
        margin-bottom: 0;
    }
}

.hero {
    text-align: center;
}

.hero-top {
    padding: 0 5%;
}

/*.hero-hexbg {
    margin-top: -100px;
    height: 960px;
    width: 100%;
    background: url(header.webp?_=3) center bottom no-repeat;
    background-size: cover;
    z-index: -1;
}*/

.hero-hexbg {
    background: url(image1.webp?_=3) center bottom no-repeat;
    background-size: cover;
    padding-top: 52%;
    margin-top: -80px;
    margin-bottom:
}

/* hex tile pattern */
.hero-eyebrow {
    display: inline-block;
    background: var(--pink-pale);
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 65px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
    max-width: 90%;
    display: inline-block;
}

@media (max-width: 1199px) {
    .hero h1 {
        font-size: clamp(32px, 5vw, 50px);
    }
}


.hero p.sub {
    font-size: 22px;
    color: var(--muted);
    max-width: 900px;
    margin: 0 auto 36px;
    position: relative;
}

@media (max-width: 1199px) {
    .hero p.sub {
        font-size: 18px;
    }
}


.store-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-store:hover { background: #2d2d4a; }
.btn-store svg { width: 18px; height: 18px; fill: white; }

.hero-phone-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.phone-mockup {
    width: 220px;
    height: 440px;
    background: linear-gradient(160deg, #fff 0%, #f9f0f5 100%);
    border-radius: 36px;
    border: 8px solid #1a1a2e;
    box-shadow: 0 40px 80px rgba(233,30,99,0.25), 0 10px 30px rgba(0,0,0,0.12);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #FCE4EC 0%, #F8BBD0 50%, #E91E63 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
}

.phone-card {
    background: white;
    border-radius: 20px;
    padding: 12px 16px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.phone-card-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.phone-card-meta { font-size: 11px; color: var(--muted); }

.match-badge {
    position: absolute;
    top: -16px;
    right: -60px;
    background: white;
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 4px 20px rgba(233,30,99,0.2);
    font-size: 12px;
    font-weight: 700;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* SECTION SHARED */
section { padding: 80px 5%; max-width: 1499%; margin: 0 auto; max-width: 90%; }

.section-eyebrow {
    display: inline-block;
    color: var(--pink);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    background: #fee3ea;
    border-radius: 15px;
    padding: 4px 20px;
}

h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
}

.subheader {
    color:var(--muted);
    font-size:20px;
}

@media (max-width: 1199px) {
    h2 {
        font-size: clamp(32px, 5vw, 45px);
    }
    .subheader {
        font-size: 17px;
    }
}

/* HOW IT WORKS */
.how {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 60px;
}

.how-img-circle {
    padding-top: 32%;
    background: url(how.png) no-repeat;
    background-size: contain;
    overflow: hidden;
    position: relative;
    grid-column: 1;
    grid-row: 1;
    grid-row: span 2;
}

.how-header {
    grid-column: 2;
    grid-row: 1;
}

.person-silhouette {
    width: 260px;
    height: 320px;
    background: linear-gradient(160deg, #E91E63 0%, #FF7043 100%);
    clip-path: polygon(50% 0%, 55% 8%, 65% 8%, 65% 25%, 75% 25%, 75% 100%, 25% 100%, 25% 25%, 35% 25%, 35% 8%, 45% 8%);
    opacity: 0.15;
}

.how-steps { display: flex; flex-direction: row; gap: 28px; margin-top: 32px; position: relative; }

.how-steps:after {
    content: ' ';
    position: absolute;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    background: #ea0027;
}

@media (max-width: 1199px) {
    .how-steps {
        flex-direction: column;
        max-width: 300px;
    }
    .how-steps:after {
        content: none;
    }
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--pink-pale);
    padding: 40px 30px 25px;
    background: #fff;
    flex: 1;
    z-index: 2;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--pink-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #ea0027;
    position: absolute;
    top: -20px;
    left: 25px;
}

.step-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}
.step-text p { font-size: 15px; color: var(--muted); line-height: 1.5; }

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

    .how-img-circle {
        grid-column: 1;
        grid-row: 2;
    }

    .how-header {
        grid-column: 1;
        grid-column: span 2;
        grid-row: 1;
    }

    .step-text h3 {
        font-size: 17px;
    }
    .step-text p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .how {
        grid-template-columns: 1fr;
    }
    .how-header {
        grid-column: 1;
    }
    .how-img-circle {
        padding-top: 45%;
        background-position: center;
    }

    .how-steps {
        margin: 40px auto 0;
        max-width: 500px;
    }
}

/* SAFETY */
.safety {
    background: linear-gradient(135deg, #FFF8FB 0%, #FFF0F5 100%);
    background: linear-gradient(180deg, #fff 20.000%, #ffdae2 100.000%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 100px 145px;
    border-radius: 100px;
}

.safety-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.safety-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid rgba(233,30,99,0.08);
    transition: box-shadow 0.2s;
}
.safety-card:hover { box-shadow: 0 4px 20px rgba(233,30,99,0.1); }

.safety-card-icon {
    width: 53px;
    height: 53px;
    background: var(--pink-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
    background-repeat: no-repeat;
    background-position: center center;
}

.safety-card:nth-child(1) .safety-card-icon {
    background-image: url(safety1.png);
}

.safety-card:nth-child(2) .safety-card-icon {
    background-image: url(safety2.png);
}

.safety-card:nth-child(3) .safety-card-icon {
    background-image: url(safety3.png);
}

.safety-card:nth-child(4) .safety-card-icon {
    background-image: url(safety4.png);
}

.safety-card h4 { font-size: 20px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.safety-card p { font-size: 15px; color: var(--muted); line-height: 1.5; }

.safety-phones {
    display: flex;
    gap: -20px;
    justify-content: center;
    position: relative;
    background: url(trust_and_safety.webp?_=3) no-repeat;
    background-size: contain;
    margin-top: 110px;
    padding-top: 100%;
}

@media (max-width: 1599px) {
    .safety-phones {
        display: none;
    }
}

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

@media (max-width: 767px) {
    .safety {
        padding: 0 30px 45px;
        border-radius: 50px;
    }
}

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

.phone-mini {
    width: 140px;
    height: 280px;
    border-radius: 24px;
    border: 5px solid white;
    box-shadow: 0 16px 40px rgba(233,30,99,0.2);
    overflow: hidden;
    position: relative;
}

.phone-mini:first-child {
    transform: rotate(-8deg) translateX(20px);
    background: linear-gradient(160deg, #FCE4EC 0%, #F48FB1 100%);
}
.phone-mini:last-child {
    transform: rotate(5deg) translateX(-20px);
    background: linear-gradient(160deg, #E91E63 0%, #AD1457 100%);
    z-index: 2;
}

.phone-mini-content {
    padding: 12px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 6px;
}

.mini-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.4);
}
.mini-bar.short { width: 60%; }

/* FEATURES */
.features { background: #fff; text-align: center; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    text-align: left;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    box-shadow: 0 6px 24px rgba(233,30,99,0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-repeat: no-repeat;
    background-position: center center;
}

.feature-card:nth-child(1) {
    background: #f2fbff;
}

.feature-card:nth-child(1) .feature-icon {
    background-image: url(feature1.png);
}

.feature-card:nth-child(2) {
    background: #f9f3ff;
}

.feature-card:nth-child(2) .feature-icon {
    background-image: url(feature2.png);
}

.feature-card:nth-child(3) {
    background: #eff6ff;
}

.feature-card:nth-child(3) .feature-icon {
    background-image: url(feature3.png);
}

.feature-card:nth-child(4) {
    background: #fffde8;
}

.feature-card:nth-child(4) .feature-icon {
    background-image: url(feature4.png);
}


.feature-card:nth-child(5) {
    background: #fff5f3;
}

.feature-card:nth-child(5) .feature-icon {
    background-image: url(feature5.png);
}

.feature-card:nth-child(6) {
    background: #e7ffe9;
}

.feature-card:nth-child(6) .feature-icon {
    background-image: url(feature6.png);
}

.feature-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
.feature-card p { font-size: 16px; color: var(--muted); line-height: 1.5; }

/* PRICING */
.pricing {
    background: linear-gradient(180deg, #fff 0%, #FFF0F5 100%);
    text-align: center;
    border-radius: 100px;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.price-card {
    flex: 1;
    background: white;
    border: 2px solid #fae0e9;
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 330px;
    min-width: 260px;
}
.price-card:hover { box-shadow: 0 16px 40px rgba(233,30,99,0.12); }

.price-card.featured {
    border-color: var(--pink);
    border-width: 2px;
}

.price-card.premium {
    border-color: #feb22b;
    border-width: 2px;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    font-size: 11px;
    font-weight: 400;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    display: inline-block;
    white-space: nowrap;
    padding: 5px 15px 5px 45px;
    color: #000;
    font-size: 12px;
    margin-bottom: 12px;
    border-radius: 25px;
    border: 1px solid #fc668c;
    text-align: left;
    min-height: 51px;
}
.price-card.premium .plan-name {
    border-color: #ffc150;
}
.plan-name-icon {
    float: left;
    margin-left: -40px;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
}
.price-card .plan-name-icon {
    background-image: url(membership_free.png);
}
.price-card.featured .plan-name-icon {
    background-image: url(membership_plus.png);
}
.price-card.premium .plan-name-icon {
    background-image: url(membership_premium.png);
}
.plan-name h3 {
    letter-spacing: -.2px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: -2px;
}
.plan-price { font-size: 36px; font-weight: 500; color: var(--dark); margin-bottom: -5px; text-align: left; display: flex; align-items: center; gap: 10px; }
.plan-price-extra { font-size: 15px; color: #5e5e5e; font-weight: 300;  }
.plan-price + .plan-price-extra {
    text-align: left;
    margin-bottom: 15px;
}
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 20px; text-align: left; }
.plan-features li { font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 8px; position: relative; }
.plan-features li::before { content: ''; border-radius: 100%; width: 24px; height: 24px; background: var(--pink); flex-shrink: 0; }
.plan-features li.no::before { background: #ddd; }
.plan-features li.premium::before { background: #efa300; }
.plan-features li::after {
    content: '';
    height: 12px;
    width: 5px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin: 20px;
    position: absolute;
    top: -15px;
    left: -10px;
}
.plan-features li.no { color: #bbb; }

.btn-plan {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--pink);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-plan.outline { background: transparent; color: var(--pink); }
.btn-plan.outline:hover { background: var(--pink-pale); }

.btn-plan.filled { background: linear-gradient(135deg, var(--pink), var(--orange)); color: white; border-color: transparent; }
.btn-plan.filled:hover { opacity: 0.9; }

.btn-plan.gold { background: linear-gradient(135deg, #FFA726, #FF7043); color: white; border-color: transparent; }
.btn-plan.gold:hover { opacity: 0.9; }

@media(max-width: 1199px) {
    .pricing {
        max-width: 95%;
    }
    .pricing-grid {
        gap: 10px;
    }
    .plan-price {
        font-size: 22px;
    }
    .plan-features li { font-size: 13px; }
    .trust-item {
        font-size: 14px;
    }
    .btn-plan {
        font-size: 14px;
    }
}

@media(max-width: 991px) {
    .pricing-grid {

    }
}

.trust-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}
.trust-item { font-size: 16px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-item svg { margin-top: -2px; }
.trust-item:nth-child(1), .trust-item:nth-child(2) svg { fill: var(--pink); }
.trust-item:nth-child(3), .trust-item:nth-child(4) svg { stroke: var(--pink); }

/* TESTIMONIALS */
.testimonials { background: #fff; }

.testimonials-inner {
    display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.testimonial-card {
    border: 1px solid #ffe6f1;
    border-radius: var(--radius);
    padding: 30px;
}

.testimonial-header {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 10px;
    margin-bottom: 25px;
}

.stars { color: #FFA726; font-size: 20px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar-circle {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 13px; flex-shrink: 0;
}
.reviewer-name { font-size: 13px; color: var(--dark); }
.reviewer-name h3 { margin-bottom: -2px; }
.reviewer-name h3, .reviewer-date { font-weight: 500; font-size: 17px; color: #000; }

.stat-block { margin-top: 40px; }
.stat-number { font-size: 48px; font-weight: 600; color: var(--dark); }
.stat-number span { color: var(--pink); }
.stat-label { font-size: 14px; color: var(--muted); }

@media (max-width: 767px) {
    .testimonials-inner {
        grid-template-columns: 1fr;
    }
    .stat-block {
        margin-top: 10px;
    }
    .testimonials-grid {
        margin-top: 0;
    }
}

/* CTA */
.cta-section {
    background-image: url(cta.webp?_=3);
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 5% 500px;
    max-width: none;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, #fff 45%, #fc648b 100%);
    z-index: -1;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}

.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 40px; margin-left: auto; margin-right: auto; }

.cta-phones {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.cta-phone {
    width: 130px;
    height: 260px;
    border-radius: 22px;
    border: 5px solid white;
    box-shadow: 0 12px 32px rgba(233,30,99,0.15);
    flex-shrink: 0;
    overflow: hidden;
}

.cta-phone:nth-child(1) { background: linear-gradient(160deg, #FCE4EC 0%, #F48FB1 100%); }
.cta-phone:nth-child(2) { background: linear-gradient(160deg, #E91E63 0%, #C2185B 100%); transform: translateY(-12px); }
.cta-phone:nth-child(3) { background: linear-gradient(160deg, #880E4F 0%, #AD1457 100%); }
.cta-phone:nth-child(4) { background: linear-gradient(160deg, #F06292 0%, #E91E63 100%); transform: translateY(-8px); }
.cta-phone:nth-child(5) { background: linear-gradient(160deg, #FCE4EC 0%, #F8BBD0 100%); }

.cta-phone-inner {
    padding: 12px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-bar { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.35); }
.cta-bar.w60 { width: 60%; }
.cta-bar.w80 { width: 80%; }
.cta-bar.w45 { width: 45%; }
.cta-avatar-row { display: flex; gap: 5px; margin: 4px 0; }
.cta-av { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.3); }

@media (max-width: 767px) {
    .cta-section {
        padding-top: 0;
        background-size: 700px;
        padding-bottom: 230px;
    }
}

/* FOOTER */
footer {
    border-top: 2px solid #fb5a86;
    color: #3b3b3b;
    padding: 60px 5% 32px;
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 48px;
}

.footer-logo { font-size: 24px; font-weight: 800; color: #000; margin-bottom: 12px; }
.footer-logo span { color: var(--pink-light); }
.footer-tagline { font-size: 14px; line-height: 1.6; }

.footer-col h4 { font-size: 15px; font-weight: 500; color: #000; margin-bottom: 17px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { text-decoration: none; color: #3b3b3b; font-size: 15px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink-light); }

.newsletter-form { display: flex; gap: 8px; margin: 15px 0; }
.newsletter-form p { font-size: 15px; }
.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid #ed1d59;
    background: rgba(255,255,255,0.07);
    color: #3b3b3b;
    font-size: 15px;
    outline: none;
}
.newsletter-input::placeholder { color: #777; }
.newsletter-btn {
    background: var(--pink);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #f4e0eb;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 14px; color: #3b3b3b; }

@media (max-width: 991px) {
    .footer-grid > div:nth-child(1) {
        display: none;
    }
}


.social-row { display: flex; gap: 10px; }
.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fa507d;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}
.social-icon:hover { background: var(--pink); }

@media (max-width: 900px) {
    .how, .safety { grid-template-columns: 1fr; }
    .how-visual, .safety-phones { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .price-card.featured { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    nav ul { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid .footer-col:nth-child(5)  { grid-column: span 2; }
}

.login-form { display: flex; gap: 8px; }
.login-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid #ed1d59;
    background: rgba(255,255,255,0.07);
    color: #000;
    font-size: 14px;
    outline: none;
    line-height: 1.3333333;
}
.login-input::placeholder { color: #777; }
.login-input.error {background: rgba(255,0,0,0.07);}
.login-btn {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
    line-height: 1.3333333;
    width: 100px;
}

.login-btn i {
    color: white;
}