:root {
    --pink: #FF3B7F;
    --pink-pale: #FFF0F6;
    --purple: #6C4EF6;
    --purple-light: #EDE9FE;
    --dark: #1A1033;
    --gray: #6B7280;
    --gray-light: #F8F7FF;
    --border: rgba(108,78,246,0.12);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #FDFCFF;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }
}

/* ── NAV ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgb(255 255 255 / 75%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167,139,250,0.12);
    transition: background 0.3s;
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
}

.nav-logo img {
    width: 120px;
    vertical-align: middle;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: 0.3s;
}

.nav-cta:hover {
    opacity:0.6;
}

/* ── HERO ── */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
}

.kv_movie{
    position: absolute;
    width: 22%;
    top: 15%;
    right: 8%;
}

.kv_movie video{
    width: 100%;
    padding: 5%;
    border-radius: 4vw;
    overflow: hidden;
}

.kv_movie img{
    position: absolute;
    top: 1%;
    left: 0;
}

@keyframes float-scale {
    0%, 100% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.02);
    }
}

.kv_btn {
    position: absolute;
    width: 48%;
    left: 13%;
    bottom: 3%;
    animation: float-scale 1.5s ease-in-out infinite;
    transition: 0.3s;
}

.kv_btn:hover {
    opacity: 0.6;
}

.kv_bottom{
	font-size: 40px;
	text-align: center;
	margin:40px;
}

/* ── SECTION COMMONS ── */

section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
}

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

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.8;
}

/* ── PAIN ── */

.pain {
    background: #fff;
}

.pain-grid {
    display: flex;
    gap: 20px;
}

.pain-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px 20px;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(108,78,246,0.1);
    flex: 1;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.pain-icon {
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    width: 60px;
    height: 60px;
    margin: auto;
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px;
}

.pain-card h3 span{
    color: #B309B6;
    font-size: 26px;
}

.pain-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
	text-align: justify;
}

.pain-attention{
    font-size: 30px;
    font-weight: 700;
    margin: 60px auto 0;
    text-align: center;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── WHATIS ── */

.whatis {
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

.whatis-cards {
    display: flex;
    gap: 20px;
}

.whatis-card {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: #fff;
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
    transition: transform 0.2s;
    flex: 1;
}

.whatis-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatis-card-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.whatis-card-text p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

/* ── UTILITY ── */

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

/* ── RESULTS ── */

.results {
    background: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.result-card {
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 32px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
    text-align: center;
}

.results-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: 100px;
}

.result-compare {
    display: block;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 2px 20px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.result-header {
    display: inline-block;
}

.result-top {
    margin-right: 5px;
    font-size: 20px;
    font-weight: 500;
    vertical-align: bottom;
}

.result-ctr {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.result-ctr span {
    font-size: 36px;
}

.result-cpc {
    font-size: 14px;
    color: var(--gray);
    display: inline-block;
    margin-left: 5px;
    vertical-align: text-bottom;
}

.result-point {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
    text-align: left;
}

.result-point strong {
    color: var(--dark);
}

.result-img-wrap {
    height: 320px;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

.result-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
}

/* ── ROI ── */

.roi {
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

.roi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.roi-bar-wrap {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.roi-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.roi-bar-track {
    height: 48px;
    background: rgba(108,78,246,0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.roi-bar-fill {
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    position: relative;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.roi-bar-fill.avg {
    background: var(--gray);
    color: #fff;
    width: 20%;
}

.roi-bar-fill.pitatto {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    width: 85%;
}

.roi-message {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: var(--radius);
    padding: 35px;
    color: #fff;
}

.roi-message h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.roi-message p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.8;
}

.roi-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 16px;
}

.roi-nums {
    color: #333;
    display: flex;
    gap: 24px;
    margin: 20px 0;
}

.roi-n {
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.roi-n-val {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.roi-n-label {
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}

.roi-chart h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.roi-bar-company {
    color: #333;
    font-size: 16px;
}

.roi-bar-click {
    color: #333;
}

.roi-bar-pitatto-label {
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.roi-bar-pitatto-click {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.roi-chart-note {
    font-size: 11px;
    color: var(--gray);
    margin-top: 16px;
    line-height: 1.6;
}

/* ── SCIENCE ── */

.science {
    background: #fff;
}

.science-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.sci-card {
    border-radius: var(--radius);
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
    border: 1.5px solid var(--border);
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
    padding: 30px 20px;
    text-align: center;
    flex: 1;
}

.sci-card:hover {
    transform: translateY(-4px);
}

.sci-label {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    border-radius: 100px;
    padding: 2px 15px;
}

.sci-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 10px;
    margin: 10px 0;
}

.unit {
    font-size: 30px;
}

.sci-desc {
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
}

.sci-source {
    font-size: 11px;
    color: rgba(0,0,0,0.35);
    margin-top: 10px;
    text-align: right;
}

/* ── CTA MID ── */

.cta-mid {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-mid-bg {
    position: absolute;
    inset: 0;
    background: url(images/cta.jpg) center / cover no-repeat;
    opacity: 0.3;
}

.cta-mid-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1080px;
}

.cta-mid h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.cta-mid h2 span{
    font-size: 1.4em;
}

.cta-mid-text {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.btn-primary {
    background: #fff;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    padding: 20px 70px;
    transition: 0.3s;
    margin: 30px 0;
}

.btn-primary span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    border-radius: 100px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.cta-mid-note {
    font-size: 14px;
    color: #fff;
}

/* ── VARIATIONS ── */

.variations {
    background: var(--gray-light);
}

.var-grid {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.var-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
    background: #fff;
    flex: 1;
}

.var-thumb {
    aspect-ratio: 9 / 16;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.var-thumb-anime {
    background: #1a0a2e;
}

.var-thumb-real {
    background: #1a2a3a;
}

.var-thumb-hybrid {
    background: #2a1a0a;
}

.var-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: pointer;
}

.var-label-wrap {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
}

.var-sound-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    transition: background 0.2s, transform 0.15s;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.var-sound-btn:hover {
    background: rgba(108,78,246,0.75);
    transform: scale(1.1);
}

.var-sound-btn.unmuted {
    background: rgba(108,78,246,0.85);
}

.var-thumb-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}

.var-thumb-label.pink {
    color: var(--pink);
}

.var-thumb-label.purple {
    color: var(--purple);
}

.var-thumb-label.amber {
    color: #D97706;
}

.var-body {
    padding: 20px 18px 22px;
    flex: 1;
    border-top: 1px solid var(--border);
}

.var-body h3 {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    border-radius: 100px;
    padding: 2px 15px;
}

.var-body p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.6;
    margin: 10px 0 15px;
}

.var-merit {
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    line-height: 1.5;
    background: linear-gradient(135deg, rgba(108,78,246,0.08), rgba(255,59,127,0.06));
    border: 1px solid rgba(108,78,246,0.12);
}

/* ── WORKFLOW ── */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.step-desc {
    font-size: 12px;
    line-height: 1.6;
}

.workflow-note {
    margin-top: 40px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(108,78,246,0.06), rgba(255,59,127,0.06));
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.workflow-note-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── PRICING ── */

.pricing {
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.price-card {
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 32px 28px;
    background: #fff;
    transition: transform 0.25s;
    position: relative;
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
}

.price-card:nth-of-type(1) {
    border-color: #4335c5;
}

.price-card:nth-of-type(1) .price-plan {
    background: #4335c5;
}

.price-card:nth-of-type(1) .price-amount {
    color: #4335c5;
}

.price-card:nth-of-type(2) {
    border-color: #9535C5;
}

.price-card:nth-of-type(2) .price-plan {
    background: #9535C5;
}

.price-card:nth-of-type(2) .price-amount {
    color: #9535C5;
}

.price-card:nth-of-type(3) {
    border-color: #c535a3;
}

.price-card:nth-of-type(3) .price-plan {
    background: #c535a3;
}

.price-card:nth-of-type(3) .price-amount {
    color: #c535a3;
}

.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 25px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-plan {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-block;
    padding: 0 10px;
    border-radius: 100px;
}

.price-amount {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin: 10px 0 10px;
}

.price-unit {
    font-size: 14px;
    color: var(--gray);
}

.price-per {
    font-size: 12px;
    color: var(--gray);
}

.price-line {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-sub {
    margin-top: 40px;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
}

.price-sub h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-sub p {
    font-size: 13px;
    color: var(--gray);
}

.price-sub-caption {
    margin-top: 4px;
}

.price-sub-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.price-sub-item {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    border: 1.5px solid var(--border);
    min-width: 160px;
}

.price-sub-item-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 4px;
}

.price-sub-item-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.price-sub-item.rec {
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

/* ── TESTIMONIALS ── */

.testi {
    background: #fff;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    transition: transform 0.25s;
    box-shadow: 0 5px 10px rgba(108, 78, 246, 0.1);
}

.testi-tag {
    display: inline-flex;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 16px;
    font-weight: 700;
    padding: 2px 20px;
    border-radius: 100px;
}

.testi-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 10px;
}

.testi-header img{
    width: 50px;
}

.testi-top {
    display: flex;
    flex-flow: column;
    gap: 0;
    align-items: start;
}

.testi-name {
    font-size: 18px;
    font-weight: 700;
}

.testi-role {
    font-size: 14px;
    color: var(--gray);
}

.testi-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    text-align: justify;
}

.testi-card-cta {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.testi-card-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.btn-testi-card-btn {
    background: #fff;
    border-radius: 100px;
    text-decoration: none;
    padding: 15px 60px;
    transition: 0.3s;
}

.btn-testi-card-btn:hover {
    transform: scale(1.05);
}

.btn-testi-card-btn span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── FAQ ── */

.faq {
    background: var(--gray-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    overflow: hidden;
}

.faq-q {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
    gap: 15px;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-q-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
}

.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    text-align: justify;
}

.faq-item.open .faq-a {
    display: block;
}

/* ── CTA END ── */

.cta-end {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-end-bg {
    position: absolute;
    inset: 0;
    background: url(images/cta.jpg) center / cover no-repeat;
    opacity: 0.3;
}

.cta-end-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1080px;
}

.cta-end h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.cta-end-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.cta-end-note {
    font-size: 14px;
    color: #fff;
}

/* contact */

.contact{
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

.hidden-fields-container{
    display: none;
}

.form_content{
    display: flex;
    flex-flow: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.form_item label{
    display: flex;
    align-items: center;
    margin: 0 0 5px 5px;
}

.your-name{
    font-weight: 500;
}

.required{
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 12px;
    padding: 0 10px;
    border-radius: 100px;
    margin-left: 5px;
}


input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea,select {
    width: 100%;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    padding: 20px;
}

input::placeholder,
textarea::placeholder {
    opacity: 0.6;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path d="M11.7998 1L6.39988 7L0.999804 1" stroke="%233E3E3E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

select::-ms-expand {
    display: none;
}

.send{
    text-align: center;
    margin-top: 60px;
}

.policy a{
    color: #333;
    transition: 0.3s;
}

.policy a:hover{
    opacity: 0.6;
}

input[type="checkbox" i]{
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: sub;
    margin-right: 10px;
}

.wpcf7-list-item{
    margin: 0;
}

.wpcf7-list-item label{
    min-height: 48px;
    display: flex;
    align-items: center;
}

.send_btn{
    width: fit-content;
    margin: 3rem auto 0;
    position: relative;
}

.send_btn input[type="submit"]{
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 100px;
    padding: 20px 80px;
    cursor: pointer;
    transition: 0.3s;
}

.send_btn:hover input[type="submit"]{
    opacity: 0.6;
}

.send_btn svg{
    display: none;
}

.wpcf7-spinner{
    display: none!important;
}

.grecaptcha-badge{
	display:none;
}


/* ── FOOTER ── */

footer {
    background: var(--dark);
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
    font-size: 12px;
    color: #fff;
}

/* ── SCROLL REVEAL ── */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

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

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

/* thanks */

.thanks{
    background: linear-gradient(135deg, #6f51f50d, #ff3d810d);
}

.thanks .section-inner{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

.thanks h1{
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.back_btn{
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 100px;
    padding: 20px 80px;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .price-amount{
        font-size: 36px;
    }
}

/* ── RESPONSIVE ── */

@media (max-width: 767px) {
    nav {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 20px;
    }

    .section-title{
        margin-bottom: 20px;
    }

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

    .kv_movie{
        width: 35%;
        top: 32%;
        right: 5%;
    }

    .kv_btn{
        width: 90%;
        left: 5%;
    }

    .pain-grid{
        flex-flow: column;
    }

    .pain-card{
        padding: 25px 20px;
    }

    .pain-icon{
        display: inline-flex;
        height: 50px;
        width: 50px;
    }

    .pain-card h3{
		font-size: 18px;
        vertical-align: super;
        margin: 0 auto;
    }
    .pain-card h3 span{
		font-size: 22px;
	}

    .pain-card p{
        margin-top: 15px;
    }

    .pain-attention{
        font-size: 28px;
        margin-top: 40px;
    }

    .whatis-cards{
        flex-flow: column;
    }
    
    .results-grid{
        gap: 20px;
    }

    .result-card{
        padding: 20px 20px 30px;
    }

    .result-ctr{
        font-size: 50px;
    }
    
    .section-title {
        word-break: keep-all;
    }
    
    .science-grid, .roi-inner, .results-grid,
    .var-grid, .pain-grid, .steps, .pricing-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    
    .steps::before {
        display: none;
    }
    
    .roi-inner {
        gap: 32px;
    }

    .roi-message{
        padding: 30px 20px;
    }
    
    .roi-message h3 {
        font-size: 20px;
        text-align: center;
    }

    .roi-nums{
        gap: 15px;
    }

    .roi-n{
        padding: 15px;
    }

    .roi-n-val{
        font-size: 30px;
    }

    .science-grid{
        flex-flow: column;
    }

    .sci-card{
        padding: 20px;
    }

    .cta-mid{
        padding: 60px 20px;
    }

    .cta-mid h2{
        font-size: 20px;
        line-height: 1.4;
    }

    .cta-mid-text{
        font-size: 18px;
    }

    .cta-mid-note{
        font-size: 12px;
    }

    .btn-primary{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        margin: 30px 0 20px;
    }

    .btn-primary span{
        font-size: 26px;
    }

    .var-grid{
        flex-flow: column;
        gap: 20px;
    }
    
    .step {
        padding: 0;
    }

    .steps{
        gap: 20px;
    }

    .step-text{
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;
    }

    .step-num{
        margin: 0;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .step-title{
        font-size: 18px;
        margin: 0;
    }

    .step-desc{
        font-size: 14px;
        text-align: left;
    }

    .workflow-note{
        padding: 20px 20px 20px 15px;
    }

    .pricing-grid{
        gap: 25px;
    }

    .price-card{
        padding: 20px 20px 30px;
    }

    .price-plan{
        font-size: 14px;
    }

    .price-amount{
        font-size: 44px;
    }

    .price-line{
        margin: 15px 20px;
    }

    .price-sub {
        padding: 20px;
        gap: 20px;
    }

    .price-sub p{
        text-align: center;
    }

    .price-sub-items{
        flex-flow: row;
        gap: 10px;
    }

    .price-sub-item{
        padding: 10px;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
        min-width: auto;
    }

    .price-sub-item-name{
        text-align: center;
    }

    .cta-end{
        padding: 60px 20px;
    }

    .cta-end-note{
        font-size: 12px;
    }
}