:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-dark: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    --accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --primary-text: #8b5cf6;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a2e;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-light: #f8fafc;
    --text-muted: #a1a1aa;
    --radius: 16px;
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --wcu-bg: #0f172a;
    --wcu-text: #f8fafc;
    --wcu-text-dim: #cbd5e1;
    --wcu-accent-from: #6366f1;
    --wcu-accent-to: #60a5fa;
    --wcu-card-bg: rgba(255, 255, 255, 0.03);
    --wcu-card-bg-hover: rgba(255, 255, 255, 0.06);
    --wcu-card-border: rgba(255, 255, 255, 0.1);
    --wcu-radius: 16px;
    --wcu-gap: clamp(1rem, 2.5vw, 2rem);
    --wcu-max-width: 1200px;
    --wcu-transition: 0.28s cubic-bezier(.25, .8, .25, 1);
    --wcu-card-tilt: translateY(-4px) scale(1.01);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-top: 70px;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--bg-dark) 50%);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

header {
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

nav a {
    color: var(--text-light);
    margin-left: 1.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

nav a:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 80%;
}

section {
    padding: 4rem 2rem;
    text-align: center;
    animation: fadeIn 1s ease forwards;
    overflow: visible;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
}

section h2 {
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

#services>h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

.text-muted {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

body>section:nth-child(2) {
    background: linear-gradient(to bottom, rgba(56, 189, 248, 0.2), #0f172a 70%);
}

/* .hero {
      
      background-image: url("https://t3.ftcdn.net/jpg/03/99/09/66/360_F_399096694_rI4J6yHpEaijvG36k8ybRFrqKpKp6pOn.jpg");
      background-size: cover; 
      background-position: center;
      background-repeat: no-repeat;
    } */

.hero h1::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background: var(--primary);
    margin: 0rem auto 0;
    animation: grow 1s ease forwards;
    animation-delay: 0.5s;
}

.title {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

@keyframes grow {
    from {
        width: 0;
    }

    to {
        width: 450px;
    }
}

h1,
p,
.hero {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero h1 {
    animation-delay: 0.2s;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero p {
    animation-delay: 0.4s;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
}

.btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow), 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    transform: translateY(30px);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(26px) scale(1.05);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4), 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.services-grid,
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* force 3 columns */
    gap: 2rem;
    max-width: 1600px;
    margin: 3rem auto;
    justify-items: center;
}

.service-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-box {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.problems-box {
    background: var(--bg-glass);
    border: 1px solid rgba(245, 87, 108, 0.3);
    max-width: 500px;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.problems-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(245, 87, 108, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(245, 87, 108, 0.5);
}

.problems-box img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.problems-box:hover img {
    transform: scale(1.1);
}

.service-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-box.visible:hover {
    cursor: pointer;
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.5);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box * {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.service-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: white;
}

.service-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.wcu {
    position: relative;
    padding-block: clamp(4rem, 8vw, 8rem);
    padding-inline: 1.25rem;
    background: var(--wcu-bg);
    color: var(--wcu-text);
    overflow: hidden;
    isolation: isolate;
}

/* 
#why-choose-us {
    background-image: url("../img/bg_wcu.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

/* Optional soft background glow / texture */
.wcu::before,
.wcu::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.08;
    /* background:
        radial-gradient(circle at 20% 30%, var(--wcu-accent-from) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, var(--wcu-accent-to) 0%, transparent 60%); */
    filter: blur(60px);
}

.wcu__inner {
    max-width: var(--wcu-max-width);
    margin-inline: auto;
    text-align: center;
}

.wcu__header {
    max-width: 60ch;
    margin-inline: auto;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

.wcu__title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.wcu__title span {
    background: linear-gradient(135deg, var(--wcu-accent-from), var(--wcu-accent-to));
    color: #f8fafc;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    -webkit-text-fill-color: #f8fafc;
}

.wcu__subtitle {
    color: var(--wcu-text-dim);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.5;
    margin-inline: auto;
}

.wcu__grid {
    --min-card-size: 260px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-size), 100%), 1fr));
    gap: var(--wcu-gap);
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.wcu-card {
    height: 100%;
    display: flex;
}

.wcu-card-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: relative;
    padding: 2.25rem;
    border-radius: var(--wcu-radius);
    background: var(--wcu-card-bg);
    border: 1px solid var(--wcu-card-border);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    transition: transform var(--wcu-transition), background var(--wcu-transition), border-color var(--wcu-transition);
}

/* .wcu-card {
      position: relative;
      padding: 2.25rem;
      border-radius: var(--wcu-radius);
      background: var(--wcu-card-bg);
      border: 1px solid var(--wcu-card-border);
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
      transition: transform var(--wcu-transition), background var(--wcu-transition), border-color var(--wcu-transition);
    } */

.wcu-card-inner:focus-within,
.wcu-card-inner:hover {
    background: var(--wcu-card-bg-hover);
    border-color: rgba(255, 255, 255, 0.25);
    transform: var(--wcu-card-tilt);
    cursor: default;
}

/* .wcu-card:focus-within,
    .wcu-card:hover {
      background: var(--wcu-card-bg-hover);
      border-color: rgba(255, 255, 255, 0.25);
      transform: var(--wcu-card-tilt);
      cursor: default;
    } */

.wcu-card__accent {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wcu-accent-from), var(--wcu-accent-to));
    opacity: 0.85;
    pointer-events: none;
}

.wcu-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    color: var(--wcu-accent-to);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcu-card__icon svg {
    width: 100%;
    height: 100%;
}

.wcu-card__title {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.wcu-card__text {
    margin: 0;
    color: var(--wcu-text-dim);
    line-height: 1.5;
    font-size: 0.995rem;
    max-width: 40ch;
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .wcu-card-inner {
        transition: none;
    }

    /* .wcu-card {
        transition: none;
      } */

    .wcu-card-inner:hover {
        transform: none;
    }

    /* .wcu-card:hover {
        transform: none;
      } */
}

footer {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

footer a {
    color: var(--primary);
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.footer-container {
    max-width: 600px;
    /* margin-top: 20px; */
    /* margin: 0 auto; */
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-section {
    /* flex: 1 1 250px; */
    /* min-width: 250px; */
    max-width: 200px;
}

.footer-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: #1f2937;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item .icon {
    font-size: 2rem;
    color: #60a5fa;
    margin-right: 1rem;
}

.benefit-item .content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.faqs {
    background: #0f172a;
    color: #f1f5f9;
    padding-block: clamp(4rem, 6vw, 6rem);
    padding-inline: 1.5rem;
    /* background-image: url("../img/bg_faq2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.faqs__inner {
    margin-inline: auto;
    max-width: 1000px;
    text-align: center;
}

.faqs__header {
    max-width: 60ch;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.faqs__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faqs__subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faqs__accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.faq {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.faq:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq__question {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    width: 100%;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: #60a5fa;
}

.faq__icon {
    font-size: 1.5rem;
    color: #60a5fa;
    transition: transform 0.25s ease;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-size: 0.975rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.faq.open .faq__answer {
    max-height: 500px;
    opacity: 1;
}

.faq.open .faq__icon {
    transform: rotate(45deg);
}

.contact {
    background: #0f172a;
    color: #f8fafc;
    padding-block: clamp(4rem, 8vw, 6rem);
    padding-inline: 1.5rem;
}

.contact__inner {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.contact__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact__subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-glass);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact__form:hover {
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    outline: none;
    resize: none;
    transition: var(--transition);
    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

::placeholder {
    color: #94a3b8;
}

.btn-submit {
    /* background: linear-gradient(135deg, #6366f1, #60a5fa); */
    background: var(--primary-dark);
    border: none;
    color: white;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.3);
}

.form-response {
    margin-top: 1rem;
    font-size: 1rem;
    color: #4ade80;
    font-weight: 500;
}

#problems>div>div>p {
    margin-top: 0.8rem;
}

@media (min-width: 1300px) {
    .service-box {
        max-width: 500px;

    }
}

@media (min-width: 1200px) {
    .service-box {
        min-width: 320px;
    }
}

@media (max-width: 1000px) {

    .services-grid,
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .title {
        max-width: 800px;
    }
}

@media (max-width: 908px) {
    .title {
        max-width: 700px;
    }
}

@media (max-width: 808px) {
    .title {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        min-width: auto;
    }
}

@media (max-width: 730px) {

    .services-grid,
    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero h1::after {
        width: 350px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 350px;
        }
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .title {
        max-width: 500px;
    }

    .logo img {
        height: 30px;
        width: auto;
    }

    nav a {
        margin-left: 0;
        padding: 0.5rem 0.9rem;
    }

    header {
        padding: 1.2rem 1.8rem;
    }
}

@media (max-width: 550px) {
    .hero h1::after {
        width: 300px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 300px;
        }
    }

    .hero h1 {
        font-size: 2rem;
    }

    .title {
        max-width: 450px;
    }

    header {
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 530px) {
    .hero h1::after {
        width: 300px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 300px;
        }
    }

    .hero h1 {
        font-size: 2rem;
    }

    header {
        padding: 1.2rem 0.5rem;
    }

    nav a {
        padding: 0.5rem 0.7rem;
    }

    .logo img {
        height: 28px;
        width: auto;
    }
}

@media (max-width: 482px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero h1::after {
        width: 280px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 280px;
        }
    }

    header {
        padding: 1.2rem 0.3rem;
    }

    nav a {
        margin-left: 0rem;
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .title {
        max-width: 350px;
    }
}

/* @media only screen and (max-width: 386px) {
      .hero h1 {
        font-size: 1.5rem;
      }
      .hero h1::after {
        width: 250px;
      }

      @keyframes grow {
        from {
          width: 0;
        }

        to {
          width: 250px;
        }
      }
    } */

/* @media only screen and (max-width: 440px) {
      header {
        padding: 1.2rem 0.8rem;
      }

      nav a {
        margin-left: 1rem;
      }
    } */

@media (max-width: 430px) {
    .footer-section {
        max-width: 190px;
    }
}

@media (max-width: 445px) {
    header {
        padding: 1.2rem 0.5rem;
    }

    nav a {
        margin-left: 0rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h1::after {
        width: 250px;
    }

    .logo {
        gap: 4px;
    }

    .logo img {
        height: 24px;
        width: auto;
    }

    .logo span {
        font-size: 20px;
    }

    .footer-section {
        max-width: 180px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 250px;
        }
    }
}

@media (max-width: 396px) {
    .footer-section {
        max-width: 140px;
    }
}

@media (max-width: 400px) {
    nav a {
        padding: 0.3rem 0.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    nav a {
        padding: 0.2rem 0.2rem;
        font-size: 0.8rem;
    }

    header {
        padding: 1rem 0.3rem;
    }
}

@media (max-width: 362px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .hero h1::after {
        width: 200px;
    }

    @keyframes grow {
        from {
            width: 0;
        }

        to {
            width: 200px;
        }
    }

    .title {
        max-width: 280px;
    }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.floating-elements::before {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 1000;
    transition: width 0.1s ease;
}