@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* ================================
           CSS RESET & CUSTOM PROPERTIES
           ================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --pink:         #e8197a;
    --pink-dark:    #c4166a;
    --pink-light:   #fff0f6;
    --navy:         #0d1e3d;
    --navy-light:   #1a3158;
    --blue-accent:  #1e4db7;
    --text:         #1a1a2e;
    --text-muted:   #5a6374;
    --text-light:   #8a94a6;
    --bg:           #ffffff;
    --bg-light:     #f6f8fc;
    --bg-gray:      #eef1f7;
    --border:       #e0e6ef;
    --shadow-sm:    0 2px 12px rgba(13,30,61,.07);
    --shadow:       0 4px 24px rgba(13,30,61,.10);
    --shadow-lg:    0 12px 40px rgba(13,30,61,.15);
    --radius:       10px;
    --radius-lg:    18px;
    --radius-xl:    28px;
    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-h:        72px;
    --ease:         cubic-bezier(.4,0,.2,1);
    --transition:   all .28s var(--ease);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}
img  { max-width: 100%; height: 413px; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

/* ============================================================
    TYPOGRAPHY
============================================================ */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}
.section-title span { color: var(--pink); }
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-top: 14px;
}

/* ============================================================
    BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: .93rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,25,122,.30);
}
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 6px 22px rgba(232,25,122,.40); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}
.btn-ghost:hover { background: var(--pink); color: #fff; }

/* ============================================================
    SCROLL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ============================================================
    NAVIGATION
============================================================ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(13,30,61,.06);
    transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(13,30,61,.12); }
.nav-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    flex-shrink: 0;
}
.nav-logo .logo-icon {
    width: 38px; height: 38px;
    background: var(--pink);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    flex-shrink: 0;
}
.nav-logo span { color: var(--pink); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav-links > li > a:hover, .nav-links > li > a.active {
    color: var(--pink);
    background: var(--pink-light);
}
.nav-links > li > a svg { transition: transform .25s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }
/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    margin-top: -10px;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav-links > li:hover .dropdown-menu,
.nav-links > li:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--pink-light); color: var(--pink); }
.dropdown-menu a .dd-icon {
    width: 30px; height: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: .9rem;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-icon-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    background: transparent;
}
.nav-icon-btn:hover { background: var(--bg-light); color: var(--pink); }
/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}
.hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile nav panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 16px 24px 24px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.mobile-nav a:hover { background: var(--pink-light); color: var(--pink); }
.mobile-nav .mobile-sub { padding-left: 20px; }
.mobile-nav .mobile-sub a { font-size: .88rem; color: var(--text-muted); }
.mobile-nav .mobile-group-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 12px 14px 4px;
}
.mobile-nav .nav-cta { display: flex; margin-top: 12px; }
.mobile-nav .nav-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
    HOME — HERO
============================================================ */
#home {
    background: linear-gradient(135deg, #f5f7ff 0%, #fef0f7 50%, #f0f4ff 100%);
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}
#home::before {
    content: '';
    position: absolute;
    top: -120px; right: -180px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,25,122,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-label::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--pink);
    border-radius: 50%;
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 22px;
}
.hero-title .accent { color: var(--pink); }
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.75;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.badge .badge-icon {
    width: 28px; height: 28px;
    background: var(--bg-light);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-wrap {
    position: relative;
    width: min(420px, 100%);
}
.hero-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light) 0%, #e8f0ff 100%);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
}
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-float-card.card-1 { bottom: 30px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -20px; }
.hero-float-card .fc-icon { font-size: 1.6rem; }
.hero-float-card .fc-text { font-size: .8rem; font-weight: 700; color: var(--navy); }
.hero-float-card .fc-sub  { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }
/* Packages strip */
.packages-strip { background: var(--navy); padding: 50px 0 0; }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.pkg-card {
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}
.pkg-card:last-child { border-right: none; }
.pkg-card.highlighted {
    background: var(--pink);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: -10px;
}
.pkg-card:not(.highlighted):hover { background: rgba(255,255,255,.04); }
.pkg-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pkg-desc { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 16px; }
.pkg-card.highlighted .pkg-desc { color: rgba(255,255,255,.85); }
.pkg-turnover { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.pkg-card.highlighted .pkg-turnover { color: rgba(255,255,255,.8); }
.pkg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.pkg-card.highlighted .pkg-link { color: #fff; }
.pkg-link:hover { color: #fff; gap: 12px; }
.pkg-link .arr {
    width: 26px; height: 26px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
}
.pkg-card.highlighted .pkg-link .arr { background: rgba(255,255,255,.25); }
/* CTA banner */
.cta-banner {
    background: var(--navy-light);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-banner p { font-size: .9rem; color: rgba(255,255,255,.75); }
.cta-banner p strong { color: #fff; }
.cta-banner a {
    font-size: .9rem;
    font-weight: 700;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.cta-banner a:hover { gap: 10px; }

/* ============================================================
    ABOUT
============================================================ */
#about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0ff 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}
.about-stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.about-stat-card.s1 { bottom: -24px; right: -20px; }
.about-stat-card.s2 { top: -16px; left: -16px; }
.about-stat-card .stat-num { font-size: 1.7rem; font-weight: 900; color: var(--pink); }
.about-stat-card .stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: .95rem;
    color: var(--text-muted);
}
.about-list li .check {
    width: 22px; height: 22px;
    background: var(--pink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: .75rem;
    margin-top: 2px;
}
.stats-row { display: flex; gap: 36px; margin-top: 10px; flex-wrap: wrap; }
.stat-item .num { font-size: 2rem; font-weight: 900; color: var(--navy); }
.stat-item .num span { color: var(--pink); }
.stat-item .lbl { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
    REVIEWS
============================================================ */
#reviews { background: var(--bg-light); }
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-sub { margin: 14px auto 0; }
.reviews-rating-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.rating-big {
    text-align: center;
    padding: 28px 36px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.rating-big .score { font-size: 3.2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.rating-big .stars { font-size: 1.4rem; margin: 6px 0; }
.rating-big .count { font-size: .8rem; color: var(--text-muted); }
.rating-bars { flex: 1; max-width: 340px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.bar-label { font-size: .8rem; color: var(--text-muted); width: 40px; text-align: right; }
.bar-track { flex: 1; height: 8px; background: var(--bg-gray); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--pink); border-radius: 4px; transition: width 1s var(--ease); }
.bar-count { font-size: .78rem; color: var(--text-muted); width: 36px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; font-weight: 700;
}
.reviewer-name { font-weight: 700; font-size: .92rem; color: var(--navy); }
.reviewer-sub  { font-size: .78rem; color: var(--text-muted); }
.review-stars  { font-size: .95rem; color: #f5c518; letter-spacing: 1px; }
.review-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.review-date { font-size: .75rem; color: var(--text-light); margin-top: 14px; }

/* ============================================================
    RANKING
============================================================ */
#ranking { background: var(--bg); }
.ranking-table-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ranking-table { width: 100%; border-collapse: collapse; }
.ranking-table thead th {
    background: var(--navy);
    color: rgba(255,255,255,.8);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 16px 20px;
    text-align: left;
}
.ranking-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.ranking-table tbody tr:last-child { border-bottom: none; }
.ranking-table tbody tr:hover { background: var(--bg-light); }
.ranking-table tbody tr.top-rank { background: var(--pink-light); }
.ranking-table td { padding: 16px 20px; font-size: .9rem; color: var(--text); }
.rank-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .85rem; color: var(--navy);
}
.top-rank .rank-num { background: var(--pink); color: #fff; }
.rank-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .73rem;
    font-weight: 700;
    background: var(--pink-light);
    color: var(--pink);
}
.rank-score { font-weight: 700; color: var(--navy); }
.top-rank .rank-score { color: var(--pink); }
.rank-bar-wrap { display: flex; align-items: center; gap: 10px; }
.rank-bar-track {
    width: 120px; height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
}
.rank-bar-fill { height: 100%; background: var(--pink); border-radius: 3px; }

/* ============================================================
    TESTIMONIALS
============================================================ */
#testimonials { background: var(--navy); padding: 90px 0; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { color: rgba(255,255,255,.5); }
.testimonials-header .section-title { color: #fff; }
.testimonials-header .section-sub { color: rgba(255,255,255,.55); margin: 14px auto 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.testi-card.featured { background: var(--pink); border-color: transparent; }
.testi-quote { font-size: 2.5rem; line-height: 1; color: rgba(255,255,255,.2); font-family: Georgia, serif; margin-bottom: 8px; }
.testi-card.featured .testi-quote { color: rgba(255,255,255,.4); }
.testi-text { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 24px; }
.testi-card.featured .testi-text { color: #fff; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; font-weight: 700;
}
.testi-name { font-size: .9rem; font-weight: 700; color: #fff; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.55); }
.testi-card.featured .testi-role { color: rgba(255,255,255,.75); }
.testi-stars { font-size: .85rem; color: #f5c518; letter-spacing: 1px; margin-top: 4px; }

/* ============================================================
    FAQ
============================================================ */
#faq { background: var(--bg-light); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--pink); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}
.faq-q-text { font-size: .92rem; font-weight: 600; color: var(--navy); }
.faq-item.open .faq-q-text { color: var(--pink); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem; font-weight: 700; color: var(--text-muted);
    transition: transform .3s var(--ease), background .3s;
}
.faq-item.open .faq-icon { background: var(--pink); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer-inner { padding: 0 24px 20px; font-size: .88rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
    BLOG
============================================================ */
#blog { background: var(--bg); }
.blog-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-thumb {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
}
.blog-thumb.t1 { background: linear-gradient(135deg, #ffeef6, #ffe0ee); }
.blog-thumb.t2 { background: linear-gradient(135deg, #e8f0ff, #d4e4ff); }
.blog-thumb.t3 { background: linear-gradient(135deg, #e8fff4, #d4f5e7); }
.blog-body { padding: 24px; }
.blog-cat {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-title:hover { color: var(--pink); }
.blog-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
.blog-meta .author { display: flex; align-items: center; gap: 6px; }
.blog-meta .author-dot {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--pink);
    margin-top: 4px;
    transition: var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ============================================================
    CAUTION
============================================================ */
#caution { background: #fff9f0; border-top: 4px solid #f59e0b; }
.caution-inner { max-width: 860px; margin: 0 auto; }
.caution-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.caution-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #92400e; margin-bottom: 18px; }
.caution-text { font-size: .95rem; color: #78350f; line-height: 1.8; margin-bottom: 20px; }
.caution-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.caution-list li {
    display: flex;
    gap: 14px;
    font-size: .92rem;
    color: #78350f;
    background: #fef9ec;
    border-radius: var(--radius);
    padding: 14px 18px;
    border-left: 4px solid #f59e0b;
}
.caution-list li .c-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
    PRIVACY POLICY
============================================================ */
#privacy { background: var(--bg-light); }
.privacy-inner { max-width: 860px; margin: 0 auto; }
.privacy-updated {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--text-muted);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    margin-bottom: 28px;
}
.privacy-section { margin-bottom: 36px; }
.privacy-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.privacy-section h3::before {
    content: '';
    width: 4px; height: 18px;
    background: var(--pink);
    border-radius: 2px;
    flex-shrink: 0;
}
.privacy-section p { font-size: .9rem; color: var(--text-muted); line-height: 1.8; }
.privacy-section ul { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.privacy-section ul li {
    display: flex;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.privacy-section ul li::before { content: '→'; color: var(--pink); flex-shrink: 0; }

/* ============================================================
    CONTACT
============================================================ */
#contact { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin: 30px 0; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.cm-icon {
    width: 46px; height: 46px;
    background: var(--pink-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.cm-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 4px; }
.cm-value { font-size: .95rem; font-weight: 600; color: var(--navy); }
.cm-sub { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--text-muted);
    transition: var(--transition);
}
.social-btn:hover { background: var(--pink); border-color: var(--pink); color: #fff; transform: translateY(-2px); }
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.form-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .92rem;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--pink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232,25,122,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background: #f0fff4;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
    margin-top: 16px;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success p { font-size: .92rem; color: #166534; font-weight: 600; }

/* ============================================================
    FOOTER
============================================================ */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; margin-top: 16px; }
.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

/* Scroll to top */
#scrollTop {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(232,25,122,.4);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
    border: none;
}
#scrollTop.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#scrollTop:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ============================================================
    RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .hero-grid    { gap: 40px; }
    .about-grid   { gap: 48px; }
    .contact-grid { gap: 40px; }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-card { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 900px) {
    .hero-grid   { grid-template-columns: 1fr; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-btns   { justify-content: center; }
    .hero-desc   { margin: 0 auto 32px; }
    .hero-visual { display: none; }
    .about-grid  { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid   { grid-template-columns: 1fr 1fr; }
    .blog-grid    { grid-template-columns: 1fr 1fr; }
    .faq-grid     { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .ranking-table-wrap { overflow-x: auto; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right .btn { display: none; }
    .nav-icon-btn { display: none; }
    .hamburger { display: flex; }
    .section-pad { padding: 64px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .testi-grid   { grid-template-columns: 1fr; }
    .blog-grid    { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .form-row     { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 28px; }
    .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-circle { width: 280px; height: 280px; }
}