* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --brand: #3d3476;
    --brand-dark: #2d2556;
    --brand-light: #f0eef5;
    --charcoal: #101828;
    --soft: #f5f6fb;
}

header img {
  width: 220px;
  height: auto;
  max-width: 60vw;
  display: block;
}

@media (max-width: 1024px) {
  header img {
    width: 180px;
    max-width: 55vw;
  }
}

@media (max-width: 768px) {
  header img {
    width: 140px;
    max-width: 70vw;
  }
}





body {
    position: relative;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    background-color: var(--soft);
    color: #0f172a;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin: 0;
}

p {
    margin: 0;
}

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

a,
button {
    transition: all 0.2s ease;
}

.starwars-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--brand);
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 4px rgba(61, 52, 118, 0.3);
    transition: all 0.3s ease;
}

.starwars-logo:hover {
    color: var(--brand-dark);
    text-shadow: 3px 3px 6px rgba(61, 52, 118, 0.4);
}

.starwars-logo-footer {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

@media (max-width: 640px) {
    .starwars-logo {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }

    .starwars-logo-footer {
        font-size: 1.15rem;
        letter-spacing: 0.1em;
    }
}

.text-brand {
    color: var(--brand);
}

.bg-brand {
    background-color: var(--brand);
}

.bg-brand-dark {
    background-color: var(--brand-dark);
}

.hover\:bg-brand:hover {
    background-color: var(--brand);
}

.hover\:bg-brand-dark:hover {
    background-color: var(--brand-dark);
}

.hover\:text-brand:hover {
    color: var(--brand);
}

.from-brand {
    --tw-gradient-from: var(--brand) var(--tw-gradient-from-position);
    --tw-gradient-to: rgba(61, 52, 118, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-brand {
    --tw-gradient-to: rgba(61, 52, 118, 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--brand) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.border-brand {
    border-color: var(--brand);
}

.focus\:border-brand:focus {
    border-color: var(--brand);
}

.bg-brand\/10 {
    background-color: rgba(61, 52, 118, 0.1);
}

.bg-brand\/12 {
    background-color: rgba(61, 52, 118, 0.12);
}

.bg-brand\/20 {
    background-color: rgba(61, 52, 118, 0.2);
}

::selection {
    background-color: var(--brand);
    color: white;
}

.nav-link {
    position: relative;
    color: #1f2937;
    padding-bottom: 0.3rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(61, 52, 118, 0), rgba(61, 52, 118, 0.9), rgba(61, 52, 118, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
}

.mobile-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    color: var(--brand);
}

.mobile-link-button {
    display: block;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--brand);
    color: white;
    text-align: center;
    font-weight: 600;
    margin: 1rem auto 0;
    max-width: 200px;
    transition: all 0.3s ease;
    border: none;
}

.mobile-link-button:hover {
    background-color: var(--brand-dark);
}

[data-nav] nav {
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-nav].is-scrolled nav {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 45px -20px rgba(15, 23, 42, 0.35);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background-color: rgba(61, 52, 118, 0.1);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.2;
    margin-top: 1.5rem;
}

.section-lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #475467;
    line-height: 1.7;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    background: rgba(61, 52, 118, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 52, 118, 0.15);
}

.service-item:hover {
    background: rgba(61, 52, 118, 0.15);
    border-color: var(--brand);
}

.service-item i {
    color: var(--brand);
    font-size: 0.95rem;
}

.feature-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px -8px rgba(61, 52, 118, 0.3);
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 1.5rem;
}

.feature-card h4 {
    margin-top: 0.75rem;
    color: var(--charcoal);
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-card p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #475467;
    line-height: 1.6;
}

.process-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px -8px rgba(61, 52, 118, 0.3);
    transform: translateX(4px);
}

.process-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
}

.process-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #475467;
    line-height: 1.6;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 1.25rem;
    background: var(--brand);
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px -4px rgba(61, 52, 118, 0.4);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px -4px rgba(61, 52, 118, 0.5);
}

.step-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.about-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px -8px rgba(61, 52, 118, 0.3);
    transform: translateY(-2px);
}

.about-card i {
    font-size: 1.75rem;
    color: var(--brand);
}

.about-card h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.about-card p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #475467;
    line-height: 1.6;
}

.testimonial-card {
    border-radius: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px -8px rgba(61, 52, 118, 0.3);
    transform: translateY(-2px);
}

.testimonial-card p {
    color: #475467;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--brand);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px -4px rgba(61, 52, 118, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brand);
    margin-top: 0.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #344054;
}

.form-input,
.form-textarea {
    width: 100%;
    border-radius: 0.75rem;
    border: 2px solid rgba(148, 163, 184, 0.3);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-input:hover,
.form-textarea:hover {
    border-color: rgba(148, 163, 184, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(61, 52, 118, 0.1);
    background: #ffffff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
    color: #ffffff;
}

.hero-gradient-bg {
    height: 600px;
}

.floating-blur-decoration {
    right: -12%;
    top: 30%;
    height: 320px;
    width: 320px;
}

.tracking-extra-wide {
    letter-spacing: 0.3em;
}

.tracking-ultra-wide {
    letter-spacing: 0.35em;
}

.header-logo {
    width: 220px;
    height: auto;
    max-width: 60vw;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

.lg-grid-hero {
    grid-template-columns: 1fr;
}

.lg-grid-service-1 {
    grid-template-columns: 1fr;
}

.lg-grid-service-2 {
    grid-template-columns: 1fr;
}

.lg-grid-process {
    grid-template-columns: 1fr;
}

.lg-grid-about {
    grid-template-columns: 1fr;
}

.lg-grid-contact {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .header-logo {
        width: 140px;
        max-width: 70vw;
    }
}

@media (min-width: 768px) {
    .header-logo {
        width: 180px;
        max-width: 55vw;
    }
}

@media (min-width: 1024px) {
    .header-logo {
        width: 220px;
        max-width: 60vw;
    }

    .lg-grid-hero {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .lg-grid-service-1 {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .lg-grid-service-2 {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .lg-grid-process {
        grid-template-columns: 1fr 1.1fr;
    }

    .lg-grid-about {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .lg-grid-contact {
        grid-template-columns: 0.85fr 1.15fr;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .service-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .process-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .process-icon {
        height: 3rem;
        width: 3rem;
        font-size: 1rem;
    }

    .about-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .contact-item {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .section-tag {
        letter-spacing: 0.15em;
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 1rem;
    }

    .section-lead {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 0.45rem 0.7rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .service-item i {
        font-size: 0.85rem;
    }

    .feature-card,
    .process-card,
    .about-card,
    .testimonial-card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .process-card h3 {
        font-size: 1rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 0.85rem;
    }

    .contact-item i {
        font-size: 1.25rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.85rem;
    }
}
