/* CSS Variables defining the theme */
:root {
    --bg-main: #0a0a0d;
    --bg-secondary: #121216;
    --primary-color: #FF5A1F;
    --primary-color-hover: #ff7443;
    --text-primary: #FFFFFF;
    --text-secondary: #9FA1AB;
    --border-color: #1A1A22;
    --glow-color: rgba(255, 90, 31, 0.4);
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text-primary);
    display: inline-block;
}

.logo-text strong {
    color: var(--primary-color);
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter';
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 90, 31, 0.3);
}

.btn-primary:hover {
    background: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 31, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.shadow-glow {
    box-shadow: 0 0 30px var(--glow-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--glow-color) 0%, rgba(10, 10, 13, 0) 60%);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 90, 31, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 90, 31, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 16px;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.placeholder-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(45deg, #1a1a24, #2a2a35);
}

video.placeholder-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: right center;
    background: linear-gradient(45deg, #1a1a24, #2a2a35);
    pointer-events: none;
}

video.video-vertical {
    width: min(100%, 340px);
    border-radius: 12px;
    display: block;
    height: auto;
    aspect-ratio: 9 / 19.5;
    object-fit: contain;
    object-position: center top;
    background: linear-gradient(45deg, #1a1a24, #2a2a35);
    pointer-events: none;
    max-width: 340px;
    margin: 0 auto;
    transform: translateY(18px);
}

/* Founder Launch */
.launch-strip {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    z-index: 950;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(
            125deg,
            rgba(255, 255, 255, 0.028) 0,
            rgba(255, 255, 255, 0.028) 1px,
            transparent 1px,
            transparent 12px
        ),
        linear-gradient(90deg, rgba(255, 90, 31, 0.035), rgba(255, 255, 255, 0.015) 40%, rgba(255, 90, 31, 0.025)),
        rgba(12, 12, 16, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.launch-strip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
}

.launch-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 90, 31, 0.1);
    border: 1px solid rgba(255, 90, 31, 0.2);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.launch-copy {
    color: #c4c8d3;
    font-size: 0.92rem;
}

.launch-copy strong {
    color: #fff;
}

.launch-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.hero {
    padding-top: 215px;
}

.hero-content {
    max-width: 620px;
}

.badge {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #d8dbe5;
    letter-spacing: 0.04em;
}

.hero-subtitle {
    max-width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 34px;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #c4c8d3;
    font-size: 0.92rem;
}

.hero-meta-item strong {
    color: #fff;
    margin-right: 4px;
}

.offer-warning {
    display: grid;
    gap: 6px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.16);
}

.offer-warning strong {
    color: #fff;
}

.offer-warning span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .launch-strip {
        top: 76px;
    }

    .hero {
        padding-top: 245px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 0;
    }

    .launch-strip {
        top: 82px;
    }

    .launch-strip-container {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px 12px;
        min-height: auto;
    }

    .launch-divider {
        display: none;
    }

    .launch-copy {
        font-size: 0.84rem;
        line-height: 1.4;
    }

    .hero {
        padding: 236px 0 60px;
    }

    .hero-content {
        margin-top: 34px;
    }

    .hero-title {
        font-size: 2.15rem;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-meta {
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-meta-item {
        width: 100%;
        border-radius: 14px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-container .btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .launch-strip {
        top: 80px;
    }

    .hero {
        padding-top: 246px;
    }

    .hero-content {
        margin-top: 42px;
    }

    .badge {
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .hero-title {
        font-size: 1.88rem;
    }
}

.glass-box:has(> video.video-vertical) {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    max-height: 720px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bordered-glow-cyan:has(> video.video-vertical) {
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.floating-element {
    position: absolute;
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-acerto {
    bottom: -15px;
    left: -20px;
    color: #4CAF50;
    border-color: #4CAF50;
    animation: pulseGlow 2s infinite;
}

.badge-combo {
    top: 20px;
    right: -30px;
    color: var(--primary-color);
    animation: bounce 3s infinite;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Side by Side Image + Text */
.sbs-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.reverse .sbs-container {
    flex-direction: row-reverse;
}

.sbs-image,
.sbs-text {
    flex: 1;
}

#player .sbs-image {
    display: flex;
    justify-content: center;
}

.sbs-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(255, 90, 31, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.glass-box {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
}

.bordered-glow-orange {
    box-shadow: 0 0 40px rgba(255, 90, 31, 0.15);
    border: 1px solid rgba(255, 90, 31, 0.2);
}

.bordered-glow-purple {
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.bordered-glow-cyan {
    box-shadow: 0 0 40px rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

/* Grid Features */
.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 90, 31, 0.1);
    border-color: rgba(255, 90, 31, 0.3);
}

.fc-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Gallery Layout - New Side by Side */
.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.gallery-text {
    padding: 20px 0;
}

.gallery-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.gallery-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.feature-highlight {
    background: rgba(255, 90, 31, 0.08);
    border-left: 3px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 90, 31, 0.12);
    border-left-color: var(--primary-color-hover);
    transform: translateX(5px);
}

.feature-highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-highlight h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.feature-highlight p {
    color: var(--text-secondary);
    margin: 0;
}

.gallery-images-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.image-block:hover {
    box-shadow: 0 10px 30px rgba(255, 90, 31, 0.2);
    border-color: rgba(255, 90, 31, 0.3);
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-block:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Gallery Block */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-upload-block {
    padding: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.image-upload-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-upload-block:hover img {
    transform: scale(1.05);
}

.image-upload-block .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-upload-block:hover .overlay {
    transform: translateY(0);
}

/* CTA Hero Image */
.cta-hero-image {
    display: none;
}

.cta-hero-image {
    padding: 80px 0 60px;
    background-color: var(--bg-main);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-display {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    object-fit: contain;
    border: none;
    border-radius: 12px;
}

/* CTA Dudu Image */
.cta-dudu-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 30px 0;
    animation: fadeUp 0.6s ease-out;
}

.cta-dudu-img {
    width: 100%;
    height: auto;
    max-width: 380px;
    display: block;
    object-fit: contain;
    border: none;
    border-radius: 8px;
    filter: drop-shadow(0 10px 30px rgba(255, 90, 31, 0.15));
}

.cta-dudu-img:hover {
    filter: drop-shadow(0 15px 40px rgba(255, 90, 31, 0.25));
    transition: filter 0.3s ease;
}

/* CTA */
.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.max-w-content {
    max-width: 500px;
}

.margin-auto {
    margin: 0 auto;
}

.price-info {
    margin-bottom: 30px;
}

.price-label {
    background: rgba(255, 90, 31, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.price-option {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-option.primary {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.2), rgba(255, 90, 31, 0.1));
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 90, 31, 0.3);
}

.price-times {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-secondary);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-option.secondary {
    text-align: center;
    opacity: 0.7;
}

.price-annual-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.price-annual-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.price-option.secondary .price-currency {
    font-size: 1rem;
}

.price-divider {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.benefits {
    text-align: left;
    margin-bottom: 30px;
}

.benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits i {
    color: #4CAF50;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 90, 31, 0.1);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    color: #4CAF50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.guarantee-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.guarantee-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    background: #050508;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 10px;
}

.footer-links ul {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.8);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .sbs-container {
        grid-template-columns: 1fr;
        flex-direction: column !important;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .grid-features,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-container .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 30px auto;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-element {
        position: static;
        display: inline-flex;
        margin: 15px 5px 0;
        transform: none !important;
        animation: none;
    }

    .glass-panel {
        text-align: center;
        padding: 10px;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-text h3 {
        font-size: 1.8rem;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-dudu-image {
        margin: 15px 0 20px 0;
    }

    .cta-dudu-img {
        max-width: 280px;
        border-radius: 6px;
    }

    .cta-hero-image {
        padding: 60px 0 40px;
    }

    .hero-image-display {
        max-width: 100%;
        border-radius: 8px;
    }

    .price .value {
        font-size: 3rem;
    }

    .sbs-container {
        gap: 40px;
    }

    .guarantee-badge {
        gap: 10px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .guarantee-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .guarantee-title {
        font-size: 0.9rem;
    }

    .guarantee-desc {
        font-size: 0.8rem;
    }

    video.video-vertical {
        max-width: 340px;
        width: min(100%, 340px);
        height: auto;
        transform: translateY(14px);
    }

    .glass-box:has(> video.video-vertical) {
        max-height: 690px;
    }
}

/* ==================== TERMS & CONDITIONS PAGE ==================== */

/* Terms Header */
.terms-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.05) 0%, rgba(255, 90, 31, 0.02) 100%);
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.terms-header-content {
    text-align: center;
}

.terms-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.terms-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Terms Container Layout */
.terms-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.terms-body {
    flex: 1;
}

.terms-sidebar {
    position: relative;
}

/* Intro Box */
.terms-intro {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.08) 0%, rgba(255, 90, 31, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 12px;
}

.terms-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

/* Terms Sections */
.terms-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 90, 31, 0.15);
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 90, 31, 0.3);
}

.terms-section-header h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    padding-top: 5px;
}

.terms-section > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Subsections */
.subsection {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 90, 31, 0.2);
}

.subsection h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.subsection p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.subsection strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Sidebar CTA */
.cta-box,
.info-box {
    margin-bottom: 30px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.1) 0%, rgba(255, 90, 31, 0.05) 100%);
    border: 1px solid rgba(255, 90, 31, 0.2);
}

.cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-box h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--primary-color);
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

/* ==================== PRIVACY POLICY PAGE ==================== */

/* Privacy Header */
.privacy-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(138, 43, 226, 0.02) 100%);
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.privacy-header-content {
    text-align: center;
}

.privacy-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Privacy Container Layout */
.privacy-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.privacy-body {
    flex: 1;
}

.privacy-sidebar {
    position: relative;
}

/* Privacy Intro Box */
.privacy-intro {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, rgba(138, 43, 226, 0.03) 100%);
    border-left: 4px solid #8A2BE2;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 12px;
}

.privacy-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.privacy-section-header h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    padding-top: 5px;
}

.privacy-section > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

/* ==================== SUPPORT PAGE ==================== */

.support-header {
    padding: 120px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(255, 90, 31, 0.18) 0%, transparent 35%),
        linear-gradient(135deg, rgba(255, 90, 31, 0.06) 0%, rgba(0, 188, 212, 0.03) 100%);
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.support-header::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.support-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 40px;
    align-items: center;
}

.support-title {
    font-size: 3.6rem;
    line-height: 1.05;
    margin-bottom: 22px;
}

.support-title span {
    color: var(--primary-color);
}

.support-subtitle {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 720px;
}

.support-hero-card {
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 90, 31, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 90, 31, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.support-hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.support-hero-card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.support-hero-card ul {
    display: grid;
    gap: 14px;
}

.support-hero-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-primary);
}

.support-hero-card i {
    color: var(--primary-color);
    margin-top: 4px;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.support-main {
    display: grid;
    gap: 26px;
}

.support-card {
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), rgba(255, 90, 31, 0.1));
}

.support-card-content {
    padding-left: 10px;
}

.support-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.support-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 90, 31, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 90, 31, 0.18);
    flex-shrink: 0;
}

.support-card h2 {
    font-size: 1.5rem;
    margin: 0;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.support-card p:last-child {
    margin-bottom: 0;
}

.support-link {
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 90, 31, 0.35);
}

.support-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.support-note {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-note strong {
    color: var(--text-primary);
}

.support-aside {
    display: grid;
    gap: 24px;
}

.support-box {
    padding: 28px;
}

.support-box h3,
.support-box h4 {
    margin-bottom: 12px;
}

.support-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.support-box p:last-child {
    margin-bottom: 0;
}

.support-steps {
    display: grid;
    gap: 14px;
}

.support-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.support-step-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 90, 31, 0.12);
    color: var(--primary-color);
    font-weight: 800;
    border: 1px solid rgba(255, 90, 31, 0.2);
}

.support-step-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.support-cta {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.12) 0%, rgba(255, 90, 31, 0.05) 100%);
    border: 1px solid rgba(255, 90, 31, 0.22);
}

.support-cta .btn {
    margin-top: 8px;
}

.support-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.support-hours i {
    color: var(--primary-color);
}

/* ==================== REFUND POLICY PAGE ==================== */

.refund-header {
    padding: 120px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(255, 90, 31, 0.14) 0%, transparent 36%),
        linear-gradient(135deg, rgba(255, 90, 31, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.refund-header::after {
    content: '';
    position: absolute;
    inset: auto -100px -120px auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.refund-header-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.refund-title {
    font-size: 3.4rem;
    margin-bottom: 18px;
    line-height: 1.08;
}

.refund-title span {
    color: var(--primary-color);
}

.refund-subtitle {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.8;
}

.refund-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.refund-body {
    display: grid;
    gap: 28px;
}

.refund-intro {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.08) 0%, rgba(255, 90, 31, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
}

.refund-section {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.refund-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.refund-section-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.refund-section-header h2 {
    font-size: 1.55rem;
    line-height: 1.2;
    padding-top: 4px;
}

.refund-section p {
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.refund-section p:last-child {
    margin-bottom: 0;
}

.refund-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.refund-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    line-height: 1.7;
}

.refund-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.refund-highlight {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 16px;
}

.refund-highlight strong,
.refund-link {
    color: var(--text-primary);
}

.refund-link {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 90, 31, 0.35);
}

.refund-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.refund-sidebar {
    display: grid;
    gap: 24px;
}

.refund-box {
    padding: 28px;
}

.refund-box h3,
.refund-box h4 {
    margin-bottom: 12px;
}

.refund-box p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.7;
}

.refund-box p:last-child {
    margin-bottom: 0;
}

.refund-steps {
    display: grid;
    gap: 14px;
}

.refund-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.refund-cta {
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.12) 0%, rgba(255, 90, 31, 0.05) 100%);
    border: 1px solid rgba(255, 90, 31, 0.22);
}

/* Data Categories */
.data-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(138, 43, 226, 0.05);
    border-left: 3px solid #8A2BE2;
    border-radius: 8px;
}

.data-category h3 {
    font-size: 1.15rem;
    color: #8A2BE2;
    margin-bottom: 10px;
    font-weight: 600;
}

.data-category p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Highlight Box for Privacy Important Info */
.highlight-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.highlight-box h4 {
    font-size: 1.2rem;
    color: #8A2BE2;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h4 i {
    font-size: 1.3rem;
}

.highlight-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Lists */
.usage-list,
.rights-list {
    list-style: none;
    margin-bottom: 0;
}

.usage-list li,
.rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.usage-list li::before,
.rights-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #8A2BE2;
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

/* ==================== ABOUT DUDU NOBRE SECTION ==================== */

.about-dudu-section {
    padding: 80px 0;
}

.about-dudu-card {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.about-dudu-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dudu-img {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(255, 90, 31, 0.15));
    transition: filter 0.3s ease;
}

.dudu-img:hover {
    filter: drop-shadow(0 15px 40px rgba(255, 90, 31, 0.25));
}

.about-dudu-text h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.about-dudu-text h3 span {
    color: var(--primary-color);
}

.about-dudu-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-dudu-text p:last-child {
    margin-bottom: 0;
}

/* Responsive About Dudu */
@media (max-width: 768px) {
    .about-dudu-card {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .about-dudu-image {
        order: -1;
    }

    .dudu-img {
        width: 160px;
    }

    .about-dudu-text h3 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .about-dudu-text p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .about-dudu-section {
        padding: 60px 0;
    }

    .about-dudu-card {
        gap: 20px;
    }

    .dudu-img {
        width: 140px;
    }

    .about-dudu-text h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .about-dudu-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

/* ==================== FAQ SECTION ==================== */

.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:first-child .faq-header {
    border-top: 1px solid var(--border-color);
}

.faq-header {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-header:hover {
    background: rgba(255, 90, 31, 0.05);
    padding-left: 28px;
    transition: all 0.3s ease;
}

.faq-question {
    flex: 1;
    display: block;
    color: var(--text-primary);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-header {
    background: rgba(255, 90, 31, 0.08);
    padding-left: 28px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0 24px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

.faq-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-container {
        gap: 0;
    }

    .faq-header {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-header:hover {
        padding-left: 24px;
    }

    .faq-item.active .faq-header {
        padding-left: 24px;
    }

    .faq-content {
        padding: 0 20px;
    }

    .faq-item.active .faq-content {
        padding: 0 20px 20px 20px;
    }

    .faq-content p {
        font-size: 1rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-header {
        padding: 16px;
        font-size: 0.95rem;
        gap: 15px;
    }

    .faq-header:hover {
        padding-left: 20px;
    }

    .faq-item.active .faq-header {
        padding-left: 20px;
    }

    .faq-content {
        padding: 0 16px;
    }

    .faq-item.active .faq-content {
        padding: 0 16px 16px 16px;
    }

    .faq-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq-question {
        text-align: left;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    video.video-vertical {
        max-width: 280px;
        width: min(100%, 280px);
        height: auto;
        transform: translateY(10px);
    }

    .glass-box:has(> video.video-vertical) {
        max-height: 560px;
        padding: 6px;
    }
}

/* ==================== RESPONSIVE TERMS ==================== */
@media (max-width: 1024px) {
    .terms-container,
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-header,
    .privacy-header {
        padding: 100px 0 50px;
    }

    .terms-title,
    .privacy-title {
        font-size: 2.8rem;
    }

    .terms-sidebar,
    .privacy-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .terms-header,
    .privacy-header {
        padding: 80px 0 40px;
        margin-top: 60px;
    }

    .terms-title,
    .privacy-title {
        font-size: 2.2rem;
    }

    .terms-subtitle,
    .privacy-subtitle {
        font-size: 1rem;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .terms-section-header,
    .privacy-section-header {
        gap: 15px;
    }

    .terms-section-header h2,
    .privacy-section-header h2 {
        font-size: 1.4rem;
        word-break: break-word;
    }

    .terms-section,
    .privacy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .terms-body,
    .privacy-body {
        padding: 0;
    }

    .cta-box,
    .info-box {
        padding: 25px;
    }

    .subsection {
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .subsection h3 {
        font-size: 1.1rem;
    }

    .subsection p,
    .terms-section > p,
    .privacy-section > p {
        font-size: 1rem;
    }

    .terms-intro,
    .privacy-intro {
        padding: 25px;
    }

    .terms-intro p,
    .privacy-intro p {
        font-size: 1rem;
    }

    .data-category {
        padding: 18px;
    }

    .data-category h3 {
        font-size: 1.1rem;
    }

    .data-category p {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-box h4 {
        font-size: 1.1rem;
    }

    .usage-list li,
    .rights-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-header,
    .privacy-header {
        padding: 70px 0 35px;
        margin-top: 50px;
    }

    .terms-title,
    .privacy-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .terms-subtitle,
    .privacy-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .guarantee-badge {
        gap: 8px;
        margin-top: 16px;
        padding-top: 14px;
    }

    .guarantee-icon {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }

    .guarantee-title {
        font-size: 0.85rem;
    }

    .guarantee-desc {
        font-size: 0.75rem;
    }

    .terms-section-header,
    .privacy-section-header {
        flex-direction: row;
        align-items: center;
    }

    .section-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        min-width: 36px;
    }

    .terms-section-header h2,
    .privacy-section-header h2 {
        font-size: 1.2rem;
    }

    .terms-section,
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .subsection {
        margin-bottom: 18px;
        padding-left: 12px;
    }

    .subsection h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .subsection p,
    .terms-section > p,
    .privacy-section > p,
    .terms-intro p,
    .privacy-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .terms-intro,
    .privacy-intro {
        padding: 20px;
        margin-bottom: 30px;
    }

    .cta-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .cta-box h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .cta-box p {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 20px;
    }

    .info-box h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .info-box p {
        font-size: 0.9rem;
    }

    .mt-3 {
        margin-top: 15px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .data-category {
        padding: 15px;
        margin-bottom: 18px;
    }

    .data-category h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .data-category p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 18px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .highlight-box h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .highlight-box p {
        font-size: 0.95rem;
    }

.usage-list li,
.rights-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    gap: 12px;
}
}

@media (max-width: 992px) {
    .support-hero,
    .support-grid,
    .refund-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-header {
        padding: 85px 0 45px;
        margin-top: 60px;
    }

    .support-title {
        font-size: 2.2rem;
    }

    .support-subtitle,
    .support-card p,
    .support-step-text,
    .support-box p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .support-hero-card,
    .support-card,
    .support-box {
        padding: 24px;
    }

    .support-card-header {
        align-items: flex-start;
    }

    .support-card h2 {
        font-size: 1.3rem;
    }

    .refund-header {
        padding: 85px 0 45px;
        margin-top: 60px;
    }

    .refund-title {
        font-size: 2.2rem;
    }

    .refund-section p,
    .refund-subtitle,
    .refund-box p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .refund-box {
        padding: 24px;
    }

    .refund-section-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 1.9rem;
    }

    .support-hero-card,
    .support-card,
    .support-box {
        padding: 20px;
    }

    .support-card-content {
        padding-left: 4px;
    }

    .support-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .refund-title {
        font-size: 1.9rem;
    }

    .refund-box {
        padding: 20px;
    }
}
