/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e61b72;
    --primary-deep: #b1148f;
    --violet: #6427d9;
    --lilac: #8a72ff;
    --sky: #22a6e8;
    --ink: #251827;
    --text-color: #332b35;
    --text-light: #6f6472;
    --muted: #8a7f8d;
    --bg-light: #fbf7fb;
    --bg-soft: #fff1f7;
    --bg-white: #ffffff;
    --border: rgba(122, 76, 124, 0.14);
    --shadow-soft: 0 18px 48px rgba(45, 26, 48, 0.08);
    --shadow-card: 0 16px 36px rgba(58, 37, 66, 0.1);
    --shadow-pink: 0 18px 36px rgba(230, 27, 114, 0.22);
    --primary-gradient: linear-gradient(135deg, #f51b76 0%, #c018bd 48%, #4d8df7 100%);
    --soft-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 241, 248, 0.82) 52%, rgba(240, 244, 255, 0.9) 100%);
    --section-gradient: radial-gradient(circle at top left, rgba(245, 27, 118, 0.08), transparent 32%), radial-gradient(circle at bottom right, rgba(77, 141, 247, 0.08), transparent 34%);
    --border-radius: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    --transition: 220ms ease;
    --container-width: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background:
        radial-gradient(circle at 12% 0%, rgba(230, 27, 114, 0.055), transparent 32rem),
        radial-gradient(circle at 86% 8%, rgba(98, 39, 217, 0.055), transparent 30rem),
        var(--bg-white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

ul {
    list-style: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(230, 27, 114, 0.28);
    outline-offset: 4px;
}

.container {
    width: calc(100vw - 40px);
    width: calc(100dvw - 40px);
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 76px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background:
        var(--section-gradient),
        linear-gradient(180deg, #fffafd 0%, #fbf7fb 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(230, 27, 114, 0.28);
}

.btn-secondary {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(230, 27, 114, 0.24);
    box-shadow: 0 12px 28px rgba(45, 26, 48, 0.06);
}

.btn-secondary:hover {
    color: var(--ink);
    border-color: rgba(230, 27, 114, 0.45);
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(230, 27, 114, 0.18);
    box-shadow: 0 10px 22px rgba(45, 26, 48, 0.05);
}

.btn-outline:hover {
    color: var(--primary-color);
    border-color: rgba(230, 27, 114, 0.48);
    transform: translateY(-2px);
}

.btn-large {
    min-height: 58px;
    padding: 17px 32px;
    font-size: 1.04rem;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(79, 47, 83, 0.08);
    backdrop-filter: blur(18px);
    transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(57, 29, 60, 0.08);
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 18px;
}

.nav-links {
    display: none;
}

.nav-links.active {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(230, 27, 114, 0.13);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--text-color);
    font-weight: 800;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(230, 27, 114, 0.07);
}

.nav-mobile-cta a {
    margin-top: 6px;
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 14px 28px rgba(230, 27, 114, 0.18);
}

.nav-mobile-cta a:hover {
    color: #ffffff;
    background: var(--primary-gradient);
}

.header-cta {
    display: none;
}

.header-cta .btn {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 0.9rem;
}

.menu-toggle {
    position: fixed;
    top: 21px;
    right: 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(230, 27, 114, 0.18);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(45, 26, 48, 0.06);
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    border-radius: 6px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    isolation: isolate;
    padding: 64px 0 84px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 16%, rgba(230, 27, 114, 0.12), transparent 30rem),
        radial-gradient(circle at 18% 84%, rgba(77, 141, 247, 0.1), transparent 26rem),
        linear-gradient(180deg, #fff9fd 0%, #ffffff 78%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 90px auto auto 50%;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(230, 27, 114, 0.12);
    border-radius: 50%;
    transform: translateX(-10%);
    z-index: -1;
}

.hero .container {
    display: grid;
    gap: 48px;
    align-items: center;
}

.hero .container > *,
.grid-2 > *,
.premium-box > * {
    min-width: 0;
}

.hero-content {
    width: 100%;
    max-width: calc(100vw - 40px);
    max-width: calc(100dvw - 40px);
    animation: fadeUp 680ms ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(230, 27, 114, 0.18);
    border-radius: var(--radius-pill);
    color: var(--primary-deep);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(45, 26, 48, 0.05);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-gradient);
    box-shadow: 0 0 0 5px rgba(230, 27, 114, 0.1);
}

.hero-content h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(2.08rem, 9.4vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: wrap;
    color: var(--ink);
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--text-light);
    font-size: clamp(1.03rem, 3vw, 1.22rem);
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    width: 100%;
    max-width: calc(100vw - 40px);
    max-width: calc(100dvw - 40px);
}

.hero-btns .btn {
    width: 100%;
}

.hero-image {
    position: relative;
    padding-bottom: 6px;
    width: 100%;
    max-width: calc(100vw - 40px);
    max-width: calc(100dvw - 40px);
    animation: fadeUp 760ms 120ms ease both;
}

.hero-visual-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(230, 27, 114, 0.14);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 249, 0.82)),
        radial-gradient(circle at 80% 12%, rgba(138, 114, 255, 0.18), transparent 35%);
    box-shadow: 0 28px 70px rgba(80, 49, 87, 0.14);
    overflow: hidden;
}

.hero-visual-card::before,
.hero-visual-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-visual-card::before {
    top: -94px;
    right: -88px;
    width: 220px;
    height: 220px;
    background: rgba(230, 27, 114, 0.12);
}

.hero-visual-card::after {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(34, 166, 232, 0.12);
}

.hero-card-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    color: var(--primary-deep);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(45, 26, 48, 0.06);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-visual-card img {
    position: relative;
    z-index: 1;
    max-width: 430px;
    margin: 0 auto;
    border-radius: 26px;
    filter: drop-shadow(0 18px 34px rgba(50, 31, 55, 0.14));
}

.hero-insights {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-insights div {
    padding: 14px 16px;
    border: 1px solid rgba(230, 27, 114, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 22px rgba(45, 26, 48, 0.05);
}

.hero-insights strong {
    display: block;
    color: var(--ink);
    font-size: 0.9rem;
}

.hero-insights span {
    display: block;
    color: var(--text-light);
    font-size: 0.84rem;
}

.floating-badge {
    position: relative;
    max-width: 330px;
    margin: 16px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(45, 26, 48, 0.12);
    font-weight: 800;
    text-align: center;
    backdrop-filter: blur(12px);
}

/* Section Headers */
.section-header {
    max-width: 780px;
    margin: 0 auto 42px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.04rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 7px 14px;
    border: 1px solid rgba(230, 27, 114, 0.15);
    border-radius: var(--radius-pill);
    color: var(--primary-deep);
    background: rgba(230, 27, 114, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
}

.badge.pink {
    color: #ffffff;
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(230, 27, 114, 0.2);
}

/* Pain Points */
.pain-points {
    background: #ffffff;
}

.pain-grid {
    display: grid;
    gap: 18px;
}

.pain-card {
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background:
        linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
    box-shadow: 0 14px 34px rgba(45, 26, 48, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 27, 114, 0.28);
    box-shadow: var(--shadow-card);
}

.pain-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 15px;
    color: var(--primary-color);
    background: rgba(230, 27, 114, 0.09);
    font-weight: 900;
    font-size: 1.2rem;
}

.pain-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.13rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.pain-card p {
    color: var(--text-light);
    font-size: 0.98rem;
}

/* Solution & Grid Layouts */
.grid-2 {
    display: grid;
    gap: 42px;
    align-items: center;
}

.solution-image,
.about-image {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(230, 27, 114, 0.12);
    border-radius: var(--radius-lg);
    background: var(--soft-gradient);
    box-shadow: var(--shadow-soft);
}

.solution-image::after,
.about-image::after {
    content: "";
    position: absolute;
    inset: auto 24px -18px 24px;
    height: 36px;
    border-radius: 50%;
    background: rgba(230, 27, 114, 0.18);
    filter: blur(24px);
    z-index: -1;
}

.solution-image img,
.about-image img {
    aspect-ratio: 1 / 0.92;
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(45, 26, 48, 0.09);
}

.solution-image img {
    object-fit: contain;
    padding: 26px;
    background: rgba(255, 255, 255, 0.78);
}

.about-image img {
    object-fit: cover;
}

.solution-content h2,
.about-content h2,
.premium-content h2 {
    margin-bottom: 18px;
    color: var(--ink);
    font-size: clamp(2rem, 6vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.solution-content p,
.about-content p,
.premium-content > p {
    color: var(--text-light);
    font-size: 1.04rem;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 28px 0 32px;
}

.check-list li {
    position: relative;
    padding: 14px 16px 14px 48px;
    border: 1px solid rgba(230, 27, 114, 0.12);
    border-radius: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        var(--primary-gradient) border-box;
    border: 5px solid transparent;
    transform: translateY(-50%);
}

/* Services */
.services {
    background:
        radial-gradient(circle at 8% 18%, rgba(230, 27, 114, 0.05), transparent 28rem),
        #ffffff;
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 286px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(45, 26, 48, 0.06);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 27, 114, 0.26);
    box-shadow: var(--shadow-card);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 18px;
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 12px 26px rgba(230, 27, 114, 0.18);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 1.24rem;
    line-height: 1.22;
    letter-spacing: -0.035em;
}

.service-card p {
    color: var(--text-light);
}

.service-benefit {
    display: block;
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary-deep);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.45;
}

/* Plans */
.plans-grid {
    display: grid;
    gap: 22px;
    align-items: stretch;
    margin-bottom: 30px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 610px;
    padding: 34px 26px 28px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(45, 26, 48, 0.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.plan-card.featured {
    border: 2px solid rgba(230, 27, 114, 0.58);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 250, 0.94));
    box-shadow: 0 28px 64px rgba(230, 27, 114, 0.16);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 22px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 12px 24px rgba(230, 27, 114, 0.24);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-card h3 {
    margin-bottom: 12px;
    padding-right: 90px;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.plan-card:not(.featured) h3 {
    padding-right: 0;
}

.plan-for {
    min-height: 58px;
    margin-bottom: 22px;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.45;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(122, 76, 124, 0.13);
}

.amount {
    color: var(--ink);
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.period {
    color: var(--muted);
    font-weight: 800;
}

.plan-features {
    display: grid;
    gap: 13px;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    position: relative;
    padding-left: 28px;
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.45;
}

.plan-features li::before {
    content: "";
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-gradient);
    box-shadow: 0 0 0 4px rgba(230, 27, 114, 0.09);
}

.plan-card .btn {
    width: 100%;
    margin-top: auto;
}

.plans-note p {
    display: inline-flex;
    max-width: 760px;
    padding: 12px 18px;
    border: 1px solid rgba(230, 27, 114, 0.12);
    border-radius: var(--radius-pill);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

/* Premium */
.premium {
    background: #ffffff;
}

.premium-box {
    position: relative;
    display: grid;
    gap: 34px;
    padding: 30px;
    border: 1px solid rgba(230, 27, 114, 0.14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 22%, rgba(138, 114, 255, 0.18), transparent 25rem),
        radial-gradient(circle at 12% 82%, rgba(230, 27, 114, 0.14), transparent 24rem),
        linear-gradient(135deg, #fff8fc 0%, #ffffff 48%, #f4f7ff 100%);
    box-shadow: 0 28px 70px rgba(45, 26, 48, 0.1);
    overflow: hidden;
}

.premium-content,
.premium-image {
    position: relative;
    z-index: 1;
}

.premium-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
}

.premium-item {
    padding: 18px;
    border: 1px solid rgba(230, 27, 114, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(45, 26, 48, 0.05);
}

.premium-item span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    color: var(--primary-deep);
    background: rgba(230, 27, 114, 0.09);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.premium-item h4 {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.premium-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.premium-image {
    align-self: center;
    padding: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.52);
}

.premium-image img {
    border-radius: 24px;
    filter: drop-shadow(0 24px 46px rgba(110, 61, 120, 0.18));
}

/* Target */
.target-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(230, 27, 114, 0.075), transparent 28rem),
        radial-gradient(circle at 88% 72%, rgba(77, 141, 247, 0.075), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #fff7fc 50%, #f7f7ff 100%);
    overflow: hidden;
}

.target-section .container {
    text-align: center;
}

.target-heading {
    max-width: 820px;
    margin: 0 auto 44px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(230, 27, 114, 0.14);
    border-radius: var(--radius-pill);
    color: var(--primary-deep);
    background: rgba(255, 228, 243, 0.82);
    font-size: 0.88rem;
    font-weight: 900;
}

.target-section h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.section-description {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.13rem);
    line-height: 1.68;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
}

.target-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(230, 27, 114, 0.13);
    border-radius: 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 60px rgba(90, 45, 120, 0.08);
    text-align: left;
    backdrop-filter: blur(12px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.target-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 27, 114, 0.24);
    box-shadow: 0 28px 80px rgba(90, 45, 120, 0.13);
}

.target-card h3 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.target-card p {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.target-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.target-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(230, 27, 114, 0.08);
    border-radius: var(--radius-pill);
    color: #4b315f;
    background: linear-gradient(135deg, rgba(255, 228, 243, 0.9), rgba(235, 231, 255, 0.9));
    font-size: 0.82rem;
    font-weight: 900;
}

.target-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-pink);
    font-weight: 900;
    text-align: center;
}

.target-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(230, 27, 114, 0.3);
}

/* Steps */
.steps-grid {
    position: relative;
    display: grid;
    gap: 18px;
}

.step {
    position: relative;
    z-index: 1;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(45, 26, 48, 0.06);
    text-align: left;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary-gradient);
    box-shadow: 0 14px 28px rgba(230, 27, 114, 0.22);
    font-size: 1.15rem;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.step p {
    color: var(--text-light);
    font-size: 0.96rem;
}

/* About */
.about-content p + p {
    margin-top: 16px;
}

.about-stats {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.stat {
    padding: 18px;
    border: 1px solid rgba(230, 27, 114, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(45, 26, 48, 0.05);
}

.stat strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 2.3rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.stat span {
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.93rem;
}

/* Final CTA */
.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 22rem),
        radial-gradient(circle at 88% 72%, rgba(77, 141, 247, 0.35), transparent 24rem),
        linear-gradient(135deg, #e61b72 0%, #b114b6 52%, #4f45d9 100%);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px;
    z-index: -1;
}

.final-cta .container {
    max-width: 860px;
}

.final-cta h2 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 8vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.final-cta p {
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.final-cta .btn-primary {
    color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(43, 18, 48, 0.2);
}

.final-cta .btn-primary:hover {
    color: var(--ink);
    box-shadow: 0 22px 54px rgba(43, 18, 48, 0.26);
}

.cta-sub {
    margin-top: 18px !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.92rem !important;
}

/* Footer */
footer {
    padding: 72px 0 26px;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 18% 18%, rgba(230, 27, 114, 0.22), transparent 24rem),
        linear-gradient(135deg, #211522 0%, #2d1a35 58%, #1d1b3d 100%);
}

.footer-grid {
    display: grid;
    gap: 36px;
    margin-bottom: 46px;
}

.footer-brand img {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    object-fit: contain;
    border-radius: 20px;
    background: #ffffff;
}

.footer-brand p {
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.88rem;
    font-weight: 900;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
}

/* Responsive */
@media (min-width: 560px) {
    .hero-btns {
        flex-direction: row;
        align-items: center;
    }

    .hero-btns .btn {
        width: auto;
    }

    .hero-insights,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 760px) {
    .container {
        width: calc(100vw - 56px);
        width: calc(100dvw - 56px);
    }

    .section-padding {
        padding: 96px 0;
    }

    .services-grid,
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .target-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-box {
        padding: 44px;
    }

    .footer-grid {
        grid-template-columns: 1.25fr 0.8fr 1fr;
        gap: 52px;
    }
}

@media (min-width: 960px) {
    header .container {
        gap: 28px;
    }

    .logo img {
        width: 72px;
        height: 72px;
    }

    .menu-toggle {
        display: none;
        position: static;
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .nav-links a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .nav-mobile-cta {
        display: none;
    }

    .header-cta {
        display: block;
    }

    .hero {
        padding: 96px 0 112px;
    }

    .hero .container {
        grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
        gap: 62px;
    }

    .hero-content h1 {
        font-size: clamp(4rem, 6.2vw, 5.35rem);
        line-height: 0.98;
        letter-spacing: -0.075em;
        text-wrap: balance;
    }

    .hero-content h1 span {
        display: inline;
    }

    .hero-visual-card {
        padding: 28px;
    }

    .floating-badge {
        position: absolute;
        left: 34px;
        bottom: -28px;
        margin: 0;
        text-align: left;
    }

    .grid-2 {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 70px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .target-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plans-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .plan-card.featured {
        transform: translateY(-14px);
    }

    .plan-card.featured:hover {
        transform: translateY(-20px);
    }

    .premium-box {
        grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
        gap: 52px;
        padding: 56px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .steps-grid::before {
        content: "";
        position: absolute;
        top: 52px;
        left: 7%;
        right: 7%;
        height: 2px;
        background: linear-gradient(90deg, rgba(230, 27, 114, 0.12), rgba(230, 27, 114, 0.38), rgba(77, 141, 247, 0.22));
    }

    .step {
        min-height: 270px;
        text-align: center;
    }

    .step-num {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1120px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        padding: 10px 14px;
        font-size: 0.94rem;
    }

    .header-cta .btn {
        padding-inline: 22px;
    }
}

@media (max-width: 680px) {
    .target-section {
        padding: 72px 0;
    }

    .target-heading {
        margin-bottom: 34px;
    }

    .target-card {
        padding: 26px;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100vw - 32px);
        width: calc(100dvw - 32px);
    }

    .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }

    .hero-content,
    .hero-btns,
    .hero-image {
        width: 100%;
        max-width: calc(100vw - 32px);
    }

    .hero-content h1 {
        font-size: clamp(1.95rem, 8.7vw, 2.22rem);
        overflow-wrap: break-word;
    }

    .hero-content h1 span {
        display: block;
    }

    .hero-content h1,
    .section-header h2,
    .solution-content h2,
    .about-content h2,
    .premium-content h2,
    .final-cta h2 {
        letter-spacing: -0.055em;
    }

    .plan-card h3 {
        padding-right: 0;
    }

    .popular-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@keyframes fadeUp {
    from {
        opacity: 1;
        transform: translateY(18px);
    }

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