/* ==========================================
   Reset
========================================== */

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

html {
    scroll-behavior: smooth;
}

body {

    font-family:
        "Hiragino Sans",
        "Yu Gothic",
        sans-serif;

    color: #2F3142;

    background:
        radial-gradient(circle at top right,
            rgba(180, 150, 255, 0.25),
            transparent 35%),
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #FCFAFF 100%
        );

    overflow-x: hidden;
}

/* ==========================================
   Design System
========================================== */

:root {
    --primary: #7B4DFF;
    --primary-light: #A78BFA;
    --primary-soft: #EFE8FF;

    --text: #1F1B3A;
    --text-main: #2F3142;
    --text-light: #666666;
    --text-on-dark: #FFFFFF;

    --white: #FFFFFF;
    --bg-soft: #FBF8FF;

    --radius: 28px;
    --radius-pill: 999px;

    --shadow: 0 20px 50px rgba(80, 40, 150, 0.08);
    --shadow-hover: 0 35px 70px rgba(123, 77, 255, 0.16);

    --section-padding: 140px;
}

/* ==========================================
   Common Components
========================================== */

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 48px;
    line-height: 1.35;
    color: var(--text);
    margin: 24px 0;
}

.section-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
}

.section-heading.dark .section-title {
    color: var(--text-on-dark);
}

.section-heading.dark .section-description {
    color: rgba(255, 255, 255, 0.75);
}

/* Common Card */

.card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(123, 77, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.35s;
}

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

/* ==========================================
   Common
========================================== */

.container {

    width: 1200px;
    max-width: 90%;
    margin: auto;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    z-index: -1;
    animation: orbMove 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 360px;
    height: 360px;
    background: #c7b5ff;
    top: 80px;
    right: 80px;
}

.orb-2 {
    width: 280px;
    height: 280px;
    background: #ffd6a5;
    bottom: 80px;
    left: 80px;
    animation-delay: 2s;
}

.orb-3 {
    width: 220px;
    height: 220px;
    background: #b8f3ff;
    top: 55%;
    right: 35%;
    animation-delay: 4s;
}

@keyframes orbMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(35px, -45px) scale(1.12);
    }
}


/* ==========================================
   Header
========================================== */

.site-header {
    position: fixed;
    top: 18px;
    transition: .35s;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

.site-header.scrolled {

    top: 10px;

}

.site-header.scrolled .header-container {

    background: rgba(255,255,255,.82);

    backdrop-filter: blur(30px);

    box-shadow: 0 22px 55px rgba(80,40,150,.12);

}

.header-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 28px;

    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(123, 77, 255, 0.10);
    border-radius: var(--radius-pill);
    box-shadow: 0 18px 45px rgba(80, 40, 150, 0.08);

    pointer-events: auto;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    position: relative;
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(123, 77, 255, 0.28);
    transition: 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(123, 77, 255, 0.36);
}

@media (max-width: 900px) {
    .header-container {
        width: calc(100% - 24px);
        max-width: none;
        padding: 0 18px;
    }
}

/* ==========================================
   Mobile Menu Button
========================================== */

.menu-toggle{

    display:none;

    width:46px;
    height:46px;

    border:none;
    background:none;

    cursor:pointer;

    position:relative;

}

.menu-toggle span{

    position:absolute;

    left:10px;

    width:26px;
    height:2px;

    background:var(--text);

    transition:.3s;

}

.menu-toggle span:nth-child(1){

    top:14px;

}

.menu-toggle span:nth-child(2){

    top:22px;

}

.menu-toggle span:nth-child(3){

    top:30px;

}

@media (max-width: 900px) {

    .site-header {
        top: 12px;
    }

    .header-container {
        height: 64px;
        padding: 0 20px;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .logo img {
        height: 42px;
    }

}

.mobile-menu {
    display: none;
}

@media (max-width: 900px) {

    .mobile-menu {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;

        display: grid;
        gap: 18px;

        padding: 28px;
        border-radius: var(--radius);
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(24px);
        box-shadow: var(--shadow-hover);

        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: .3s;
    }

    .mobile-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        text-decoration: none;
        color: var(--text);
        font-weight: 800;
    }

    .mobile-menu-cta {
        margin-top: 8px;
        text-align: center;
        padding: 15px 24px;
        border-radius: var(--radius-pill);
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        color: white !important;
    }

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

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

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

/* ==========================================
   Hero
========================================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 100px;

}

.hero-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

.hero-text {

    flex: 1;

}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.phone-card {
    position: relative;
    display: inline-block;
}

.phone-card img {
    width: 88%;
    max-width: 420px;
    position: relative;
    z-index: 2;

    filter: drop-shadow(0 35px 55px rgba(80,40,150,.25));
    animation: float 4s ease-in-out infinite;
}

.phone-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(123, 77, 255, .35),
        rgba(180, 150, 255, .12),
        transparent 70%
    );

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    z-index: 1;
}

.badge {

    display: inline-block;

    padding: 10px 18px;

    border-radius: var(--radius-pill);

    background: var(--primary-soft);

    color: var(--primary);

    font-weight: bold;

    margin-bottom: 30px;

}

.hero h1 {

    font-size: 62px;

    line-height: 1.3;

    margin-bottom: 25px;

}

.hero p {

    font-size: 22px;

    color: var(--text-light);

    line-height: 1.9;

}

.buttons {

    margin-top: 50px;

    display: flex;

    gap: 20px;

}

.btn-primary {

    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--primary),
        #9D84FF
    );

    color: white;

    padding: 18px 42px;

    border-radius: var(--radius-pill);

    text-decoration: none;

    font-weight: bold;

    box-shadow: 0 15px 35px rgba(123,77,255,.35);

    transition: .35s;

}

.btn-primary::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-25deg);

}

.btn-primary:hover::before{

    animation:shine .8s;

}

@keyframes shine{

    100%{

        left:160%;

    }

}

.btn-secondary {

    border: 2px solid var(--primary);

    color: var(--primary);

    padding: 18px 42px;

    border-radius: var(--radius-pill);

    text-decoration: none;

    font-weight: bold;

    transition: .3s;

}

.btn-secondary:hover {

    background: var(--primary);

    color: white;

}

.hero-point {

    margin-top: 45px;

    display: grid;

    gap: 18px;

}

.hero-point div {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 18px;

    color: #555;

}


/* ==========================================
   Animation
========================================== */

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-18px);

    }

    100% {

        transform: translateY(0px);

    }

}


/* ==========================================
   Responsive
========================================== */

@media (max-width:900px){

    .hero-container{

        flex-direction: column;

        text-align:center;

    }

    nav{

        display:none;

    }

    .hero h1{

        font-size:68px;

        font-weight:800;

        line-height:1.2;

        letter-spacing:-2px;

    }

    .hero p{

        font-size:18px;

    }

    .buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-point{

        justify-items:center;

    }
}

/* ===========================
   Features
=========================== */

.features{

    padding:140px 0;

}

.section-subtitle{

    display:inline-block;

    padding:8px 18px;

    background:var(--primary-soft);

    color:var(--primary);

    border-radius:999px;

    font-weight:bold;

    margin-bottom:20px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 45px;

}

.feature-card::before {
    content: "";

    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(123, 77, 255, .18),
        transparent 70%
    );

    top: -70px;
    right: -70px;

    opacity: 0;
    transition: .35s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(123,77,255,.18);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card img {
    width: 78px;
    margin-bottom: 28px;
    transition: .35s;
}

.feature-card:hover img {
    transform: scale(1.08) rotate(-2deg);
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .feature-card {
        padding: 32px 24px;
    }
}

/* ===========================
   Scroll Reveal
=========================== */

.hero-visual {
    position: relative;
    width: 520px;
    max-width: 100%;
    margin: auto;
}

.floating-card {
    position: absolute;
    z-index: 3;
    width: 210px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 55px rgba(80,40,150,.18);
    border: 1px solid rgba(123,77,255,.12);
    animation: cardFloat 5s ease-in-out infinite;
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.floating-card p,
.floating-card small {
    color: #555;
    line-height: 1.6;
}

.stamp-card {

    --x: 0px;
    --y: 0px;

    top: 70px;
    left: -70px;

    transition:
    transform .25s ease-out,
    box-shadow .35s,
    opacity .35s;

    animation:floatCard 5s ease-in-out infinite;


}

.coupon-card {

    --x: 0px;
    --y: 0px;

    top: 120px;
    right: -80px;
    
    transition:
    transform .25s ease-out,
    box-shadow .35s,
    opacity .35s;

    animation:floatCard 6s ease-in-out infinite;


}

.news-card {

    --x: 0px;
    --y: 0px;

    bottom: 50px;
    left: -60px;

    transition:
    transform .25s ease-out,
    box-shadow .35s,
    opacity .35s;

    animation:floatCard 5.5s ease-in-out infinite;

}

.stamp-row {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.stamp-row span {
    width: 34px;
    height: 34px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 14px;
}

.coupon-card strong {
    display: block;
    font-size: 42px;
    color: var(--primary);
    margin: 15px 0;
}

.news-image {
    height: 95px;
    border-radius: 18px;
    /* background:
        linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)),
        url("../images/cafe.jpg") center/cover; */
        background: linear-gradient(135deg, var(--primary-soft), #FFFFFF);
    margin: 12px 0;
}

@keyframes cardFloat {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -14px;
    }
}

@keyframes floatCard {

    0%,100%{
        margin-top:0;
    }

    50%{
        margin-top:-8px;
    }

}

@media (max-width: 900px) {
    .floating-card {
        transition:
        transform .25s ease-out,
        box-shadow .35s;
        display: none;
    }

    .hero-visual {
        width: 100%;
    }
}

/* ===========================
   Original App
=========================== */

.original-app {
    padding: var(--section-padding) 0;
}

.original-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.original-text ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.original-text li {
    position: relative;
    padding-left: 34px;
    font-weight: bold;
    color: #333;
}

.original-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

.original-image img {
    width: 78%;
    max-width: 420px;
    filter: drop-shadow(0 35px 55px rgba(80,40,150,.22));

    transform: scale(var(--scale, 1));
    transition: transform .15s ease-out;
}

@media (max-width: 900px) {
    .original-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .original-text li {
        text-align: left;
    }
}

@media (max-width: 900px) {

    .original-app {
        padding: 90px 0;
    }

    .original-container {
        gap: 36px;
    }

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

    .original-text ul {
        max-width: 320px;
        margin: 0 auto;
    }

    .original-visual img {
        width: 82%;
        max-width: 300px;
    }

    .mini-card {
        display: none;
    }
}

/* ===========================
   Original App Mini Cards
=========================== */

.original-visual {
    position: relative;
    display: inline-block;
}

.original-visual img {
    position: relative;
    z-index: 2;
}

.mini-card {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(123, 77, 255, 0.12);
    border-radius: var(--radius-pill);

    box-shadow: 0 18px 40px rgba(80, 40, 150, 0.16);

    animation: miniFloat 5s ease-in-out infinite;
}

.mini-card span {
    font-size: 20px;
}

.mini-card p {
    font-size: 14px;
    font-weight: bold;
    color: #2F3142;
    white-space: nowrap;
}

.mini-store {
    top: 18%;
    left: -20%;
}

.mini-design {
    top: 48%;
    right: -22%;
    animation-delay: 1.2s;
}

.mini-news {
    bottom: 16%;
    left: -18%;
    animation-delay: 2.2s;
}

@keyframes miniFloat {
    0%, 100% {
        transform: translateY(0);
    }

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

@media (max-width: 900px) {
    .mini-card {
        display: none;
    }
}

/* ===========================
   App Preview
=========================== */

.app-preview {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at top left, rgba(123,77,255,.16), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7f2ff 100%);
}

.preview-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.preview-phone {
    width: 320px;
    padding: 14px;
    border-radius: 42px;
    background: var(--text);
    box-shadow: 0 35px 70px rgba(80,40,150,.28);
}

.preview-phone img {
    width: 100%;
    display: block;
    border-radius: 30px;
    transition: opacity .25s ease, transform .25s ease;
}

.preview-tabs {
    display: grid;
    gap: 18px;
}

.preview-tab {
    width: 220px;
    padding: 18px 24px;
    border: none;
    border-radius: var(--radius-pill);
    background: white;
    color: #555;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: .3s;
}

.preview-tab:hover,
.preview-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateX(8px);
}

@media (max-width: 900px) {
    .preview-content {
        flex-direction: column;
        gap: 40px;
    }

    .preview-phone {
        width: 260px;
    }

    .preview-tabs {
        width: 100%;
        max-width: 360px;
    }

    .preview-tab {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .app-preview {
        padding: 90px 0;
    }

    .preview-content {
        gap: 32px;
    }

    .preview-phone {
        width: 250px;
    }

    .preview-tabs {
        width: 100%;
        max-width: none;

        display: flex;
        gap: 12px;

        overflow-x: auto;
        padding: 0 20px 8px;

        scroll-snap-type: x mandatory;
    }

    .preview-tab {
        flex: 0 0 auto;
        width: auto;
        min-width: 120px;

        padding: 14px 22px;

        scroll-snap-align: center;
    }

    .preview-tab:hover,
    .preview-tab.active {
        transform: none;
    }
}

/* ===========================
   Admin Section
=========================== */

.admin-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at top right, rgba(123,77,255,.22), transparent 35%),
        linear-gradient(135deg, var(--text) 0%, #2F2858 100%);
    color: white;
}

.admin-container {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle.dark {
    background: rgba(255,255,255,.12);
    color: #D8CCFF;
}

.admin-text ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.admin-text.section-heading {
    text-align: left;
    margin: 0;
    max-width: none;
}

.admin-text li {
    position: relative;
    padding-left: 34px;
    font-weight: bold;
    color: white;
}

.admin-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.admin-visual {
    position: relative;
}

.admin-window {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
}

.admin-window-header {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    background: rgba(255,255,255,.08);
}

.admin-window-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: .8;
}

.admin-window-body {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 360px;
}

.admin-sidebar {
    padding: 24px;
    display: grid;
    gap: 16px;
    align-content: start;
    background: rgba(255,255,255,.06);
}

.admin-sidebar div {
    height: 14px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.22);
}

.admin-main {
    padding: 28px;
}

.admin-title {
    width: 220px;
    height: 24px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.28);
    margin-bottom: 28px;
}

.admin-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-card-row div {
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(167,139,250,.35), rgba(255,255,255,.12));
}

.admin-list {
    display: grid;
    gap: 14px;
}

.admin-list div {
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.12);
}

.admin-toast{

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

 
    position: absolute;
    right: -20px;
    bottom: 40px;
    padding: 18px 24px;
    border-radius: var(--radius-pill);
    background: white;
    color: var(--primary);
    font-weight: bold;
    box-shadow: 0 25px 55px rgba(0,0,0,.28);
    animation: toastFloat 4s ease-in-out infinite;
}

.admin-toast.show{

    opacity:1;

    transform:translateY(0);

}

@keyframes toastFloat {
    0%,100% {
        transform: translateY(0);
    }

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

@media (max-width: 900px) {
    .admin-container {
        grid-template-columns: 1fr;
    }

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

    .admin-text li {
        text-align: left;
    }

    .admin-window-body {
        grid-template-columns: 90px 1fr;
    }

    .admin-toast {
        right: 20px;
        bottom: -24px;
    }
}

.admin-actions{

    margin-top:32px;

}

.admin-save{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:white;

    border:none;

    padding:16px 34px;

    border-radius:999px;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 15px 35px rgba(123,77,255,.25);

}

.admin-save:hover{

    transform:translateY(-3px);

}

@media (max-width: 900px) {

    .admin-content {
        gap: 36px;
    }

    .admin-image img {
        width: 88%;
        max-width: 300px;
    }

}

/* ===========================
   Repeat Section
=========================== */

.repeat-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at top right, rgba(123,77,255,.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.repeat-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
}

.repeat-step {
    width: 180px;
    padding: 32px 22px;
    text-align: center;
}

.repeat-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.repeat-step.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    font-size: 30px;
}

.repeat-step.highlight .step-icon {
    background: rgba(255,255,255,.22);
}

.repeat-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.repeat-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.repeat-step.highlight p {
    color: rgba(255,255,255,.88);
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: var(--primary-light);
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 900px) {
    .repeat-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .repeat-step {
        width: 100%;
        max-width: 360px;
    }

    .repeat-card{
        padding:32px 24px;
    }

    .repeat-arrow{
        margin:16px 0;
        font-size:32px;
    }

    .repeat-card.final{
        padding:40px 24px;
    }
}

/* ===========================
   Flow Section
=========================== */

.flow-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.flow-step {
    position: relative;
    padding: 34px 24px;
}

.flow-step span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 800;
}

.flow-step h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.flow-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

@media (max-width: 900px) {
    .flow-steps {
        grid-template-columns: 1fr;
    }

    .flow-card{
        padding: 32px 28px;
        min-height: 170px;
    }

    .flow-number{
        width:52px;
        height:52px;
        font-size:24px;
    }

    .flow-list{
        gap:20px;
    }
}

/* ===========================
   Price Section
=========================== */

.price-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at top left, rgba(123,77,255,.14), transparent 35%),
        linear-gradient(180deg, #fbf8ff 0%, #ffffff 100%);
}

.price-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
}

.price-card {
    padding: 48px;
}

.campaign-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 24px;
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 28px;
}

.normal-price {
    color: #777;
    font-weight: bold;
    margin-bottom: 18px;
}

.normal-price span {
    text-decoration: line-through;
}

.campaign-price {
    font-size: 62px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.price-note {
    font-size: 22px;
    font-weight: bold;
    color: var(--text);
}

.detail-price ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.detail-price li {
    position: relative;
    padding-left: 30px;
    color: #444;
    font-weight: bold;
}

.detail-price li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.contract-info {
    padding: 22px;
    border-radius: 22px;
    background: #F3EEFF;
    color: var(--text);
    font-weight: bold;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .price-content {
        grid-template-columns: 1fr;
    }

    .campaign-price {
        font-size: 46px;
    }
}

@media (max-width: 900px) {

    .price-section {
        padding: 90px 0;
    }

    .price-content {
        gap: 24px;
    }

    .price-card {
        padding: 34px 26px;
    }

    .price-card h3 {
        font-size: 26px;
    }

    .campaign-price {
        font-size: 48px;
        line-height: 1.1;
    }

    .price-note {
        font-size: 20px;
    }

    .detail-price ul {
        gap: 12px;
    }

    .contract-info {
        padding: 18px;
    }
}

/* ===========================
   CTA Section
=========================== */

.cta-section {
    padding: 130px 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 35%),
        linear-gradient(135deg, var(--primary) 0%, var(--text) 100%);
}

.cta-button {
    display: inline-block;
    padding: 18px 46px;
    border-radius: var(--radius-pill);
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 24px 55px rgba(0,0,0,.22);
    transition: .35s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 75px rgba(0,0,0,.28);
}

@media (max-width: 900px) {
    .cta-box h2 {
        font-size: 38px;
    }
}

/* ===========================
   FAQ
=========================== */

.faq-section{

    padding:150px 0;

    background:#fff;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    border-bottom:1px solid #EAEAEA;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:30px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:22px;

    font-weight:bold;

    color:#333;

}

.faq-icon{

    font-size:30px;

    color:var(--primary);

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    color:var(--text-light);

    line-height:1.9;

    transition:max-height .35s ease;

}

.faq-item.active .faq-answer{

    max-height:200px;

    padding-bottom:25px;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

/* ===========================
   Contact
=========================== */

.contact-section{

    padding:150px 0;

    background:
        linear-gradient(180deg,#ffffff,#f8f4ff);

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{
    display:block;
    text-decoration:none;
    color:inherit;
    padding:42px;

}

.contact-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:var(--primary-soft);

    font-size:32px;

    margin-bottom:24px;

}

.contact-card h3{

    font-size:26px;

    margin-bottom:18px;

}

.contact-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:22px;

}

.contact-card span{

    color:var(--primary);

    font-weight:bold;

}

@media(max-width:900px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media (max-width: 900px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 34px 28px;
    }

    .contact-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-card h3 {
        font-size: 24px;
    }

    .footer {
        padding: 60px 0 28px;
    }

    .footer-logo {
        font-size: 34px;
    }
}

/* ===========================
   Footer
=========================== */

.footer {
    padding: 70px 0 30px;
    background: var(--text);
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.footer p {
    color: rgba(255,255,255,.7);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    margin-top: 50px;
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: 14px;
}

@media(max-width:900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===========================
   Hero Responsive
=========================== */

@media (max-width: 900px) {

    .hero {
        padding-top: 105px;
        padding-bottom: 50px;
    }

    .hero-container {
        gap: 32px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(36px, 10vw, 44px);
        line-height: 1.16;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .buttons {
        margin-top: 26px;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 260px;
        padding: 14px 24px;
    }
}

@media (max-width: 900px) {
    .hero-point {
        display: none;
    }

    .hero-container {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: clamp(34px, 9.5vw, 42px);
    }

    .hero p {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .hero-text {
        width: 100%;
        padding: 0 14px;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 40px);
        line-height: 1.18;
    }
}