/* ==================== VARIABLES & RESET ==================== */
:root {
    /* Original Pastel Colors */
    --rose: #FFB6D9;
    --rose-deep: #E85D9F;
    --lavender: #D4B5E8;
    --lavender-deep: #A672C5;
    --peach: #FFCBA4;
    --peach-light: #FFE4D0;
    --mint: #B4D4FF;
    --gold: #F0D89A;
    --gold-light: #F5E6BE;
    --sky: #B4D4FF;
    --cream: #F9F7F4;
    --warm-white: #FDFCFA;
    --blush: #FFF0F3;

    /* Darker accents */
    --dark-blue: #5B9FD4;
    --dark-gold: #C4A244;

    /* Neutrals */
    --white: #FFFFFF;
    --dark: #4A4A4A;
    --dark-muted: #5C5C5C;
    --medium-gray: #E8E6E1;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.7);

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-rose: 0 8px 30px rgba(255, 182, 217, 0.25);
    --shadow-lavender: 0 8px 30px rgba(212, 181, 232, 0.25);
    --shadow-peach: 0 8px 30px rgba(255, 203, 164, 0.25);
    --shadow-gold: 0 8px 30px rgba(240, 216, 154, 0.25);
    --shadow-mint: 0 8px 30px rgba(180, 212, 255, 0.25);

    /* Functional */
    --radius: 24px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--cream) 100%);
    background-attachment: fixed;
    font-weight: 400;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== SECTION IMAGES ==================== */
.section-img {
    max-width: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius) !important;
}

.section-img-full {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius) !important;
}

/* ==================== FOCUS STYLES ==================== */
*:focus-visible {
    outline: 3px solid var(--lavender-deep);
    outline-offset: 2px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-optical-sizing: auto;
    color: var(--dark);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
    position: relative;
    padding-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--lavender), var(--mint));
    border-radius: 2px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.logo-brand {
    text-decoration: none !important;
}

.logo-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo-brand:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.navbar .nav-link {
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--lavender-deep) !important;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose), var(--lavender));
    transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus-visible::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep)) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 100px !important;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(232, 93, 159, 0.2);
}

.cta-button::after {
    display: none !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(232, 93, 159, 0.35);
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-deep), var(--lavender-deep)) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(232, 93, 159, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lavender-deep), var(--rose-deep));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    opacity: 1;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 93, 159, 0.35);
    filter: none;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--lavender-deep);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-light:hover,
.btn-light:focus {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn:active,
.cta-button:active {
    transform: translateY(0px);
    opacity: 0.95;
}

.btn:disabled,
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 182, 217, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 181, 232, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 203, 164, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(180, 212, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--blush), var(--cream));
    padding: 7rem 0 9rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 182, 217, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 181, 232, 0.22) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 203, 164, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 70%, rgba(180, 212, 255, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 30%, rgba(240, 216, 154, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 45% 20%, rgba(232, 213, 242, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 50%, rgba(255, 182, 217, 0.15) 0%, transparent 45%);
    animation: gradientMesh 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientMesh {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    16% {
        transform: translate(4%, 3%) scale(1.08);
    }
    33% {
        transform: translate(-3%, 5%) scale(0.95);
    }
    50% {
        transform: translate(-5%, -3%) scale(1.05);
    }
    66% {
        transform: translate(3%, -4%) scale(1.02);
    }
    83% {
        transform: translate(2%, 2%) scale(0.98);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--lavender-deep) 50%, var(--rose-deep) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: gradientShift 8s ease-in-out infinite;
}

.hero-tagline {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.8rem;
    color: var(--dark-muted);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--dark-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 5rem 0;
    position: relative;
}

/* ==================== ABOUT ==================== */
.about {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 181, 232, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 182, 217, 0.06) 0%, transparent 50%),
        var(--white);
    border-radius: 48px 48px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: linear-gradient(135deg, var(--lavender), var(--gold-light));
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    user-select: none;
    -webkit-user-select: none;
}

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

.about-card:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
}

.about-card h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    transition: var(--transition);
}

.icon-circle.purple {
    background: var(--lavender);
}

.icon-circle.gold {
    background: var(--gold);
}

.icon-circle.pink {
    background: var(--rose);
}

/* ==================== SERVICES ==================== */
.services {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(255, 203, 164, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(180, 212, 255, 0.08) 0%, transparent 50%),
        var(--cream);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 181, 232, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.5;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
}

.orange-card {
    background: linear-gradient(135deg, var(--peach), rgba(255, 182, 217, 0.3));
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-peach);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

/* ==================== PRODUCTS ==================== */
.products {
    background:
        radial-gradient(ellipse at 40% 50%, rgba(255, 182, 217, 0.08) 0%, transparent 50%),
        var(--white);
}

.product-card {
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
}

.pink-card {
    background: linear-gradient(135deg, var(--rose), rgba(212, 181, 232, 0.3));
    box-shadow: var(--shadow-sm);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

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

/* ==================== COURSES ==================== */
.courses {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(180, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(212, 181, 232, 0.06) 0%, transparent 50%),
        var(--cream);
}

.course-card {
    padding: 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 5px solid var(--dark-blue);
    user-select: none;
    -webkit-user-select: none;
}

.blue-card {
    background: linear-gradient(135deg, var(--sky), rgba(180, 212, 255, 0.4));
    box-shadow: var(--shadow-sm);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(180, 212, 255, 0.3);
    border-left-color: var(--rose);
}

.course-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.course-card p {
    color: var(--dark-muted);
    font-size: 0.95rem;
}

/* ==================== WHY JOIN ==================== */
.why-join {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(240, 216, 154, 0.08) 0%, transparent 50%),
        var(--white);
}

.benefit-item {
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-light), rgba(240, 216, 154, 0.3));
    transition: var(--transition);
    position: relative;
    padding-left: 5rem;
    box-shadow: var(--shadow-sm);
    user-select: none;
    -webkit-user-select: none;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.benefit-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--lavender));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.3);
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 182, 217, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 40%, rgba(212, 181, 232, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 203, 164, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, var(--rose-deep), var(--lavender-deep));
    padding: 5rem 0;
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    position: relative;
}

/* ==================== CONTACT ==================== */
.contact {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212, 181, 232, 0.06) 0%, transparent 50%),
        var(--white);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.detail-item .icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.detail-item a {
    color: var(--lavender-deep);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.detail-item a:hover,
.detail-item a:focus {
    color: var(--rose-deep);
    text-decoration: underline;
}

.contact-form .form-control {
    padding: 1.1rem 1.3rem;
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--dark);
}

.contact-form .form-control:hover {
    border-color: var(--lavender);
    background-color: rgba(255, 255, 255, 0.85);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--lavender);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 181, 232, 0.15);
}

.contact-form .form-control.invalid {
    border-color: #e74c3c;
}

/* ==================== INSPIRATIONAL SECTION ==================== */
.inspirational-section {
    padding: 3rem 0;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #A672C5, #5B9FD4);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer p {
    margin: 0.5rem 0;
    font-weight: 300;
}

.footer a {
    color: var(--rose);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* ==================== KEYFRAME ANIMATIONS ==================== */
@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

/* ==================== MOTION.DEV INITIAL STATES ==================== */
/* Only hide elements when JS confirms Motion is loaded (body.motion-ready) */
body.motion-ready .hero-title,
body.motion-ready .hero-tagline,
body.motion-ready .hero-subtitle,
body.motion-ready .hero-content .btn {
    opacity: 0;
}

body.motion-ready .about-card,
body.motion-ready .service-card,
body.motion-ready .product-card,
body.motion-ready .course-card,
body.motion-ready .benefit-item,
body.motion-ready .section-img,
body.motion-ready .section-img-full,
body.motion-ready .icon-circle,
body.motion-ready .detail-item {
    opacity: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .cta-section {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 6rem;
    }

    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title::after {
        width: 50px;
    }

    .about {
        border-radius: 32px 32px 0 0;
        margin-top: -20px;
    }

    .about-card,
    .service-card,
    .product-card,
    .course-card {
        padding: 1.5rem;
    }

    .about-card h3,
    .course-card h3,
    .service-card h3,
    .product-card h3 {
        font-size: 1.1rem;
    }

    .about-card p,
    .course-card p,
    .product-card p {
        font-size: 0.9rem;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-section {
        border-radius: var(--radius);
        margin: 0 1rem;
        padding: 3.5rem 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .benefit-item {
        padding: 1.5rem;
        padding-left: 4rem;
    }

    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        left: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-img-full {
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    .logo-brand h1 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 0 5rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title::after {
        width: 40px;
    }

    .about {
        border-radius: 24px 24px 0 0;
        margin-top: -15px;
    }

    .service-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .about-card,
    .product-card,
    .course-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .about-card h3,
    .course-card h3,
    .product-card h3 {
        font-size: 1rem;
        margin: 0.8rem 0 0.5rem 0;
    }

    .about-card p,
    .course-card p,
    .product-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .cta-section {
        padding: 2.5rem 0;
        border-radius: 20px;
        margin: 0 0.75rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p,
    .detail-item p {
        font-size: 0.9rem;
    }

    .contact-form .form-control {
        padding: 0.8rem;
        font-size: 16px;
    }

    .benefit-item {
        padding: 1.2rem;
        padding-left: 3.5rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 0.8rem;
        top: 1rem;
    }

    .detail-item {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .detail-item .icon {
        font-size: 1.3rem;
        min-width: 25px;
    }

    section {
        padding: 2.5rem 0;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .section-img-full {
        max-height: 220px;
    }
}

@media (max-width: 380px) {
    .logo-brand h1 {
        font-size: 1rem;
    }

    .hero {
        padding: 2.5rem 0 4rem;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-card h3,
    .course-card h3,
    .product-card h3 {
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 0.8rem;
    }

    .service-card {
        padding: 1rem;
    }

    .cta-section {
        margin: 0 0.5rem;
        border-radius: 16px;
    }

    .cta-section h2 {
        font-size: 1.2rem;
    }

    .cta-section p {
        font-size: 0.85rem;
    }

    .contact-info h3 {
        font-size: 1rem;
    }

    .contact-form .form-control {
        padding: 0.7rem;
        font-size: 16px;
    }

    .benefit-item {
        padding: 1rem;
        padding-left: 3.2rem;
    }

    .benefit-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        left: 0.6rem;
        top: 0.8rem;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .section-img-full {
        max-height: 180px;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-title,
    .hero-tagline,
    .hero-subtitle,
    .hero-content .btn,
    .about-card,
    .service-card,
    .product-card,
    .course-card,
    .benefit-item,
    .section-img,
    .section-img-full,
    .icon-circle,
    .detail-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
