* {
    box-sizing: border-box;
}

:root {
    --capcut-bg: #f5f7fb;
    --capcut-text: #111827;
    --capcut-muted: #64748b;
    --capcut-border: #e2e8f0;
    --capcut-purple: #7c3aed;
    --capcut-blue: #2563eb;
    --capcut-green: #16a34a;
    --capcut-dark: #0f172a;
    --capcut-radius-lg: 28px;
    --capcut-radius-md: 18px;
    --capcut-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--capcut-text);
    background: var(--capcut-bg);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    font-family: "Inter", Arial, sans-serif;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.capcut-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */
.capcut-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

.capcut-topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.capcut-brand,
.capcut-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.capcut-brand img,
.capcut-footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.capcut-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.capcut-nav a {
    position: relative;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.capcut-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--capcut-purple), var(--capcut-blue));
    border-radius: 99px;
    transform: scaleX(0);
    transition: transform 0.18s ease;
}

.capcut-nav a:hover {
    color: var(--capcut-text);
}

.capcut-nav a:hover::after {
    transform: scaleX(1);
}

.capcut-topbar-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--capcut-purple), var(--capcut-blue));
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.2);
}

/* Alert */
.capcut-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    padding: 14px 17px;
    border: 1px solid;
    border-radius: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.capcut-alert-danger {
    color: #9f1239;
    background: #fff1f2;
    border-color: #fda4af;
}

/* Hero */
.capcut-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 22%, rgba(124, 58, 237, 0.42), transparent 29%),
        radial-gradient(circle at 82% 17%, rgba(37, 99, 235, 0.34), transparent 28%),
        linear-gradient(135deg, #080b14 0%, #111827 52%, #06122e 100%);
}

.capcut-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.capcut-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
    gap: 64px;
    align-items: center;
}

.capcut-kicker {
    color: #7c3aed;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.capcut-hero .capcut-kicker {
    color: #c4b5fd;
}

.capcut-hero h1 {
    max-width: 760px;
    margin: 15px 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.45rem, 5vw, 4.55rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.capcut-hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #ffffff, #c4b5fd 46%, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
}

.capcut-hero-description {
    max-width: 720px;
    margin: 0;
    color: #cbd5e1;
    font-size: 1.04rem;
    line-height: 1.78;
}

.capcut-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    margin-top: 27px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
}

.capcut-hero-proof > div {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.capcut-hero-proof > div:last-child {
    border-right: 0;
}

.capcut-hero-proof span {
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 700;
}

.capcut-hero-proof strong {
    color: #ffffff;
    font-size: 0.95rem;
}

.capcut-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.capcut-primary-button,
.capcut-secondary-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.capcut-primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--capcut-purple), var(--capcut-blue));
    box-shadow: 0 16px 34px rgba(124, 58, 237, 0.32);
}

.capcut-secondary-button {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.capcut-primary-button:hover,
.capcut-secondary-button:hover,
.capcut-auto-button:hover,
.capcut-manual-button:hover,
.capcut-topbar-cta:hover {
    transform: translateY(-2px);
}

.capcut-hero-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 18px;
    margin-top: 19px;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 650;
}

.capcut-hero-visual {
    position: relative;
}

.capcut-visual-glow {
    position: absolute;
    inset: 14% 5%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent 68%);
    filter: blur(20px);
}

.capcut-hero-image-card {
    position: relative;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 32px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
}

.capcut-image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    padding: 8px 11px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.capcut-hero-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #ffffff;
    border-radius: 24px;
}

.capcut-image-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 14px;
    padding: 14px 16px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.78);
    border-radius: 16px;
}

.capcut-image-note > div:first-child {
    display: grid;
    gap: 4px;
}

.capcut-image-note span {
    color: #94a3b8;
    font-size: 0.77rem;
    line-height: 1.45;
}

.capcut-image-note-icon {
    font-size: 1.35rem;
}

/* Trust */
.capcut-trust-section {
    position: relative;
    z-index: 3;
    padding: 24px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--capcut-border);
}

.capcut-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.capcut-trust-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px;
    background: #f8fafc;
    border: 1px solid var(--capcut-border);
    border-radius: 17px;
}

.capcut-trust-icon {
    flex: 0 0 auto;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    background: #ffffff;
    border: 1px solid var(--capcut-border);
    border-radius: 12px;
    font-size: 1.2rem;
}

.capcut-trust-card > div:last-child {
    display: grid;
    gap: 5px;
}

.capcut-trust-card strong {
    font-size: 0.91rem;
}

.capcut-trust-card span {
    color: var(--capcut-muted);
    font-size: 0.77rem;
    line-height: 1.5;
}

/* Shared sections */
.capcut-feature-section,
.capcut-how-section,
.capcut-package-section,
.capcut-important-section,
.capcut-faq-section {
    padding: 78px 0;
}

.capcut-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.capcut-section-heading h2 {
    max-width: 760px;
    margin: 9px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.85rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.capcut-section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--capcut-muted);
    line-height: 1.7;
}

.capcut-section-heading-center {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-content: center;
    justify-items: center;
    align-items: start;
    text-align: center;
}

.capcut-section-heading-center > div {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.capcut-section-heading-center .capcut-kicker {
    width: 100%;
    text-align: center;
}

.capcut-section-heading-center h2 {
    width: min(760px, 100%);
    margin: 9px auto 0;
    text-align: center;
}

.capcut-section-heading-center > p {
    width: min(680px, 100%);
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

/* Feature */
.capcut-feature-section {
    background: #ffffff;
}

.capcut-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.capcut-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 105px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--capcut-border);
    border-radius: 18px;
    box-shadow: 0 11px 25px rgba(15, 23, 42, 0.045);
    line-height: 1.55;
}

.capcut-feature-icon {
    flex: 0 0 auto;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: linear-gradient(135deg, #eef2ff, #eff6ff);
    border: 1px solid #c7d2fe;
    border-radius: 13px;
    font-size: 1.25rem;
}

.capcut-feature-card strong {
    font-size: 0.93rem;
}

/* How to buy */
.capcut-how-section {
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 33%),
        #f8fafc;
}

.capcut-how-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.capcut-how-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--capcut-border);
    border-radius: 24px;
    box-shadow: var(--capcut-shadow);
}

.capcut-how-auto {
    border-top: 5px solid var(--capcut-purple);
}

.capcut-how-manual {
    border-top: 5px solid var(--capcut-green);
}

.capcut-how-number {
    position: absolute;
    top: 12px;
    right: 20px;
    color: #e2e8f0;
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
}

.capcut-how-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    background: #f8fafc;
    border: 1px solid var(--capcut-border);
    border-radius: 16px;
    font-size: 1.45rem;
}

.capcut-how-card h3 {
    margin: 17px 0 8px;
    font-size: 1.25rem;
}

.capcut-how-card p {
    margin: 0;
    color: var(--capcut-muted);
    line-height: 1.7;
}

.capcut-how-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 19px;
}

.capcut-how-tags span {
    padding: 6px 9px;
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 750;
}

/* Packages */
.capcut-package-section {
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.1), transparent 31%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 34%),
        #eef2ff;
}

.capcut-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.capcut-package-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 27px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: var(--capcut-radius-lg);
    box-shadow: var(--capcut-shadow);
}

.capcut-package-popular {
    border: 2px solid var(--capcut-purple);
    box-shadow: 0 24px 58px rgba(124, 58, 237, 0.15);
}

.capcut-popular-badge {
    position: absolute;
    top: -15px;
    left: 26px;
    padding: 8px 13px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--capcut-purple), var(--capcut-blue));
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

.capcut-package-top {
    flex: 1;
}

.capcut-package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.capcut-package-eyebrow {
    color: var(--capcut-purple);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.capcut-package-duration {
    margin: 7px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.28rem;
    line-height: 1.35;
    font-weight: 800;
}

.capcut-package-type {
    margin-top: 6px;
    color: var(--capcut-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.capcut-stock-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
    white-space: nowrap;
}

.capcut-stock-dot {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.6);
}

.stock-ready {
    color: #166534;
    background: #dcfce7;
}

.stock-empty {
    color: #b91c1c;
    background: #fee2e2;
}

.capcut-package-price {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 25px 0 2px;
}

.capcut-package-price span {
    margin-top: 7px;
    color: var(--capcut-muted);
    font-weight: 800;
}

.capcut-package-price strong {
    font-family: "Poppins", sans-serif;
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: -0.035em;
}

.capcut-package-price-note {
    color: var(--capcut-muted);
    font-size: 0.76rem;
}

.capcut-package-meta {
    display: grid;
    gap: 0;
    margin-top: 20px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--capcut-border);
    border-radius: 16px;
}

.capcut-package-meta > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--capcut-border);
}

.capcut-package-meta > div:last-child {
    border-bottom: 0;
}

.capcut-package-meta span {
    flex: 0 0 auto;
}

.capcut-package-meta strong {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}

.capcut-buy-methods {
    display: grid;
    gap: 14px;
    margin-top: 21px;
}

.capcut-buy-method {
    padding: 18px;
    border-radius: 18px;
}

.capcut-buy-auto {
    background: linear-gradient(135deg, #eef2ff, #eff6ff);
    border: 1px solid #c7d2fe;
}

.capcut-buy-manual {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid #bbf7d0;
}

.capcut-method-head {
    display: flex;
    align-items: center;
    gap: 11px;
}

.capcut-method-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 13px;
    font-size: 1.2rem;
}

.capcut-method-head > div:last-child {
    display: grid;
    gap: 2px;
}

.capcut-method-label {
    color: var(--capcut-purple);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.capcut-buy-manual .capcut-method-label {
    color: #15803d;
}

.capcut-method-head strong {
    font-size: 0.95rem;
}

.capcut-buy-method p {
    margin: 11px 0 12px;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.62;
}

.capcut-buy-method ul {
    display: grid;
    gap: 7px;
    margin: 0 0 15px;
    padding: 0;
    color: #475569;
    font-size: 0.78rem;
    list-style: none;
}

.capcut-buy-method li {
    position: relative;
    padding-left: 19px;
}

.capcut-buy-method li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 900;
}

.capcut-method-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 900;
}

.capcut-method-divider::before,
.capcut-method-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dbe3ef;
}

.capcut-auto-button,
.capcut-manual-button {
    display: flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border: 0;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.capcut-auto-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--capcut-purple), var(--capcut-blue));
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.22);
}

.capcut-manual-button {
    color: #ffffff;
    background: linear-gradient(135deg, #15803d, #22c55e);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.2);
}

.capcut-button-disabled {
    color: #64748b;
    background: #e2e8f0;
    box-shadow: none;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.88;
}

.capcut-method-footnote {
    display: block;
    margin-top: 9px;
    color: #166534;
    font-size: 0.68rem;
    font-weight: 750;
    text-align: center;
}

.capcut-method-footnote-danger {
    color: #b91c1c;
}

.capcut-package-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-top: 25px;
    color: #475569;
    font-size: 0.76rem;
    font-weight: 750;
}

/* Important */
.capcut-important-section {
    background: #ffffff;
}

.capcut-important-card {
    padding: 30px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 25px;
}

.capcut-important-heading {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.capcut-important-icon {
    flex: 0 0 auto;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    background: #ffedd5;
    border: 1px solid #fdba74;
    border-radius: 15px;
    font-size: 1.45rem;
}

.capcut-important-heading span {
    color: #c2410c;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.capcut-important-heading h2 {
    margin: 5px 0 5px;
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
}

.capcut-important-heading p {
    margin: 0;
    color: #9a3412;
    line-height: 1.6;
}

.capcut-important-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 23px;
}

.capcut-important-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    padding: 15px;
    color: #7c2d12;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid #fed7aa;
    border-radius: 15px;
}

.capcut-important-grid > div > span {
    grid-row: 1 / 3;
    font-size: 1.15rem;
}

.capcut-important-grid strong {
    font-size: 0.84rem;
}

.capcut-important-grid small {
    color: #9a3412;
    font-size: 0.73rem;
    line-height: 1.5;
}

.capcut-terms-link {
    display: inline-flex;
    margin-top: 20px;
    color: #9a3412;
    font-weight: 850;
}

/* FAQ */
.capcut-faq-section {
    background: #f8fafc;
}

.capcut-faq-list {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 11px;
}

.capcut-faq-list details {
    background: #ffffff;
    border: 1px solid var(--capcut-border);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.capcut-faq-list summary {
    position: relative;
    padding: 17px 48px 17px 18px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.capcut-faq-list summary::-webkit-details-marker {
    display: none;
}

.capcut-faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--capcut-purple);
    background: #eef2ff;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.capcut-faq-list details[open] summary::after {
    content: "–";
}

.capcut-faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--capcut-muted);
    line-height: 1.7;
}

/* Footer */
.capcut-footer {
    padding: 38px 0;
    color: #cbd5e1;
    background: var(--capcut-dark);
}

.capcut-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.capcut-footer-brand {
    color: #ffffff;
}

.capcut-footer-grid p {
    margin: 8px 0 0;
    color: #94a3b8;
    font-size: 0.82rem;
}

.capcut-footer-links {
    display: flex;
    gap: 20px;
}

.capcut-footer-links a {
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Mobile sticky CTA */
.capcut-mobile-sticky {
    display: none;
}

/* Pastikan heading center benar-benar berada di tengah pada desktop */
@media (min-width: 861px) {
    .capcut-section-heading-center {
        justify-content: center;
        justify-items: center;
    }

    .capcut-section-heading-center > div,
    .capcut-section-heading-center h2,
    .capcut-section-heading-center > p {
        margin-right: auto;
        margin-left: auto;
    }
}

/* Responsive */
@media (max-width: 1020px) {
    .capcut-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
        gap: 38px;
    }

    .capcut-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capcut-important-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .capcut-nav {
        display: none;
    }

    .capcut-hero-grid,
    .capcut-package-grid {
        grid-template-columns: 1fr;
    }

    .capcut-hero-copy {
        text-align: center;
    }

    .capcut-hero-description,
    .capcut-hero-proof {
        margin-right: auto;
        margin-left: auto;
    }

    .capcut-hero-actions,
    .capcut-hero-microcopy {
        justify-content: center;
    }

    .capcut-hero-visual {
        width: min(500px, 100%);
        margin: 0 auto;
    }

    .capcut-section-heading {
        display: grid;
        align-items: start;
    }

    .capcut-section-heading > p {
        max-width: 720px;
    }

    .capcut-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capcut-how-grid {
        grid-template-columns: 1fr;
    }

    .capcut-package-card {
        width: min(650px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 76px;
    }

    .capcut-container {
        width: min(100% - 22px, 1180px);
    }

    .capcut-topbar-inner {
        min-height: 64px;
    }

    .capcut-brand img {
        width: 38px;
        height: 38px;
    }

    .capcut-brand span {
        font-size: 0.94rem;
    }

    .capcut-topbar-cta {
        min-height: 38px;
        padding: 9px 13px;
        font-size: 0.75rem;
    }

    .capcut-hero {
        padding: 52px 0 45px;
    }

    .capcut-hero-grid {
        gap: 31px;
    }

    .capcut-hero h1 {
        font-size: clamp(2rem, 11vw, 2.75rem);
    }

    .capcut-hero-description {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .capcut-hero-proof {
        grid-template-columns: 1fr;
    }

    .capcut-hero-proof > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .capcut-hero-proof > div:last-child {
        border-bottom: 0;
    }

    .capcut-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .capcut-primary-button,
    .capcut-secondary-button {
        width: 100%;
    }

    .capcut-hero-microcopy {
        display: grid;
        gap: 7px;
        text-align: left;
    }

    .capcut-hero-image-card {
        padding: 13px;
        border-radius: 24px;
    }

    .capcut-hero-image-card img {
        border-radius: 18px;
    }

    .capcut-image-badge {
        top: 22px;
        left: 22px;
        font-size: 0.6rem;
    }

    .capcut-image-note {
        padding: 12px 13px;
    }

    .capcut-trust-grid,
    .capcut-feature-grid,
    .capcut-important-grid {
        grid-template-columns: 1fr;
    }

    .capcut-trust-section {
        padding: 18px 0;
    }

    .capcut-trust-card {
        align-items: center;
    }

    .capcut-feature-section,
    .capcut-how-section,
    .capcut-package-section,
    .capcut-important-section,
    .capcut-faq-section {
        padding: 52px 0;
    }

    .capcut-section-heading {
        gap: 14px;
        margin-bottom: 23px;
    }

    .capcut-section-heading h2 {
        font-size: 1.75rem;
    }

    .capcut-section-heading > p {
        font-size: 0.9rem;
    }

    .capcut-how-card {
        padding: 23px 18px;
    }

    .capcut-package-card {
        padding: 23px 15px 18px;
        border-radius: 23px;
    }

    .capcut-popular-badge {
        left: 16px;
    }

    .capcut-package-header {
        flex-direction: column;
    }

    .capcut-stock-pill {
        align-self: flex-start;
    }

    .capcut-package-price strong {
        font-size: 2.35rem;
    }

    .capcut-buy-method {
        padding: 16px 14px;
    }

    .capcut-package-assurance {
        display: grid;
        justify-content: start;
        gap: 8px;
        padding: 0 5px;
    }

    .capcut-important-card {
        padding: 22px 15px;
    }

    .capcut-important-heading {
        display: grid;
    }

    .capcut-important-heading h2 {
        font-size: 1.35rem;
    }

    .capcut-faq-list summary {
        padding: 16px 46px 16px 15px;
        font-size: 0.9rem;
    }

    .capcut-faq-list p {
        padding: 0 15px 16px;
        font-size: 0.86rem;
    }

    .capcut-footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .capcut-footer-links {
        flex-direction: column;
        gap: 9px;
    }

    .capcut-mobile-sticky {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 80;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 70px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--capcut-border);
        box-shadow: 0 -12px 34px rgba(15, 23, 42, 0.13);
        backdrop-filter: blur(14px);
    }

    .capcut-mobile-sticky > div {
        display: grid;
        gap: 2px;
    }

    .capcut-mobile-sticky span {
        color: var(--capcut-muted);
        font-size: 0.68rem;
    }

    .capcut-mobile-sticky strong {
        font-size: 1rem;
    }

    .capcut-mobile-sticky a {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 11px 20px;
        color: #ffffff;
        background: linear-gradient(135deg, var(--capcut-purple), var(--capcut-blue));
        border-radius: 999px;
        font-size: 0.82rem;
        font-weight: 850;
        text-decoration: none;
        box-shadow: 0 10px 22px rgba(124, 58, 237, 0.22);
    }
}
