/* ========================= VARIABLES ========================= */
:root {
    --bg: #0A0A0A;
    --bg-card: #141414;
    --bg-card-hover: #1A1A1A;
    --turquoise: #00D9E8;
    --orange: #FF8A00;
    --pink: #FF2D95;
    --white: #FFFFFF;
    --gray: #888;
    --gray-dark: #333;
    --font-title: 'Exo 2', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================= UTILITIES ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent-text {
    background: linear-gradient(135deg, var(--turquoise), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 12px auto 0;
}

/* ========================= BUTTONS ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--turquoise), #00B8C4);
    color: #001a1c;
    box-shadow: 0 4px 20px rgba(0, 217, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 232, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #001a05;
    font-size: 1.1rem;
    padding: 18px 44px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--turquoise);
    font-size: 1.1rem;
    padding: 18px 44px;
}

.btn-call:hover {
    background: var(--turquoise);
    color: #001a1c;
    transform: translateY(-3px);
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-size: 1.1rem;
    padding: 18px 44px;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.5);
}

.btn-tiktok {
    background: #000000;
    color: #fff;
    font-size: 1.1rem;
    padding: 18px 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #25F4EE;
}

.btn-tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 244, 238, 0.5);
    background: #000000;
}

/* ========================= NAVBAR ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-accent {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--turquoise);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================= HERO ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.PNG');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 35%, rgba(10, 10, 10, 0.25) 60%, rgba(10, 10, 10, 0.1) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.2) 70%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 100px 24px 60px;
    max-width: 560px;
    margin-left: 8%;
}

.hero-title {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 0 36px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--turquoise);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    z-index: 3;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--turquoise);
    border-radius: 2px;
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= ABOUT ========================= */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(0, 217, 232, 0.15);
    background: var(--bg-card);
    aspect-ratio: 3/4;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-image-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--turquoise), #00B8C4);
    color: #001a1c;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 217, 232, 0.3);
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 540px;
}

.about-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-stat-icon {
    font-size: 1.8rem;
}

.about-stat-number {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--turquoise);
    display: block;
    line-height: 1;
}

.about-stat-text {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--turquoise);
    display: block;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-top: 2px;
}

/* ========================= SERVICES ========================= */
.services {
    padding: 100px 0;
    background: #080808;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 217, 232, 0.2);
}

.service-card[data-color="orange"]:hover {
    border-color: rgba(255, 138, 0, 0.3);
}

.service-card[data-color="pink"]:hover {
    border-color: rgba(255, 45, 149, 0.3);
}

.service-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition);
}

.service-card[data-color="turquoise"] .service-glow {
    background: var(--turquoise);
}

.service-card[data-color="orange"] .service-glow {
    background: var(--orange);
}

.service-card[data-color="pink"] .service-glow {
    background: var(--pink);
}

.service-card:hover .service-glow {
    opacity: 0.08;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ========================= METHOD ========================= */
.method {
    padding: 100px 0;
    background: #080808;
}

.method-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.method-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--turquoise), var(--orange), var(--pink), var(--turquoise));
    opacity: 0.2;
}

.method-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--turquoise);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.method-step:nth-child(2) .step-number {
    border-color: var(--orange);
    color: var(--orange);
}

.method-step:nth-child(3) .step-number {
    border-color: var(--pink);
    color: var(--pink);
}

.method-step:nth-child(4) .step-number {
    border-color: var(--turquoise);
    color: var(--turquoise);
}

.method-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(0, 217, 232, 0.3);
}

.step-title {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 0 8px;
}

/* ========================= WHY ME ========================= */
.why-me {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 32px 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-card:hover {
    border-color: rgba(0, 217, 232, 0.2);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.why-check {
    font-size: 1.5rem;
}

.why-title {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.2rem;
}

.why-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

/* ========================= PLANS ========================= */
.plans {
    padding: 100px 0;
    background: #080808;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-featured {
    border-color: var(--turquoise);
    box-shadow: 0 0 40px rgba(0, 217, 232, 0.08);
}

.plan-featured:hover {
    border-color: var(--turquoise);
    box-shadow: 0 0 50px rgba(0, 217, 232, 0.15);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--turquoise), #00B8C4);
    color: #001a1c;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 28px;
}

.plan-name {
    font-family: var(--font-title);
    font-style: italic;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.plan-tagline {
    color: var(--gray);
    font-size: 0.9rem;
}

.plan-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.check-icon {
    color: var(--turquoise);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
}

/* ========================= CONTACT ========================= */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 232, 0.06), transparent 70%);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin: 16px 0 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================= FOOTER ========================= */
.footer {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #060606;
    text-align: center;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    filter: brightness(0) invert(1);
}

.social-link:hover img {
    transform: scale(1.1);
}

.fancy {
    display: inline-block;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.8rem;
    margin: 12px 0;
    transition: color 0.3s;
    position: relative;
    padding: 8px 24px;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    animation: fancyGlow 3s ease-in-out infinite;
}

@keyframes fancyGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 217, 232, 0.3), 0 0 10px rgba(0, 217, 232, 0.2);
        border-color: #334155;
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 217, 232, 0.5), 0 0 25px rgba(0, 217, 232, 0.3);
        border-color: var(--turquoise);
    }
}

.fancy .text {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, var(--gray), var(--turquoise), var(--gray));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.fancy:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 232, 0.6), 0 0 30px rgba(0, 217, 232, 0.4);
    border-color: var(--turquoise);
}

.fancy:hover .text {
    background: linear-gradient(90deg, var(--white), var(--turquoise), var(--white));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 1.5s linear infinite;
}

/* ========================= ANIMATIONS ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 60px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 700px;
        width: 100%;
        text-align: center;
        padding: 40px 24px 20px;
    }

    .hero-subtitle {
        margin: 0 auto 28px;
    }

    .hero-buttons {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 24px;
        margin-bottom: 60px;
    }

    .hero-bg {
        background-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.85) 80%, var(--bg) 100%);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .method-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .method-timeline::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }
}

@media (max-width: 700px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-stats {
        gap: 24px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

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

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .method-timeline {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 30px 20px 16px;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .hero-buttons .btn {
        padding: 13px 24px;
        font-size: 0.9rem;
    }
}
