@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Light theme tokens */
    --color-bg: #fff4fb;
    --color-surface: #ffffff;
    --color-surface-strong: #ffffff;
    --color-surface-soft: #f4f9ff;
    --color-border: rgba(15, 23, 42, 0.18);

    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-text-soft: #64748b;

    --color-accent: #0d8bff;
    --color-accent-soft: rgba(13, 139, 255, 0.16);
    --color-accent-strong: #ff2d95;
    --color-accent-warm: #ff3b4a;

    --radius-xs: 0.2rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.8rem;
    --radius-lg: 1.1rem;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 0 rgba(15, 23, 42, 0.2);
    --shadow-md: 0 8px 0 rgba(15, 23, 42, 0.26);
    --shadow-glass: 0 6px 0 rgba(15, 23, 42, 0.24);

    --container-width: min(1120px, 100% - 3.2rem);

    --focus-ring: 0 0 0 4px rgba(255, 45, 149, 0.28);
}

[data-theme='dark'] {
    /* Dark theme tokens */
    --color-bg: #1B3C53;
    --color-surface: #224a65;
    --color-surface-strong: #1e435b;
    --color-surface-soft: #335c78;
    --color-border: rgba(217, 235, 255, 0.28);

    --color-text: #f6f9ff;
    --color-text-muted: #d3e5f8;
    --color-text-soft: #9dbad6;

    --color-accent: #30c2ff;
    --color-accent-soft: rgba(48, 194, 255, 0.2);
    --color-accent-strong: #ff4db8;
    --color-accent-warm: #ff5b6e;

    --shadow-sm: 0 4px 0 rgba(7, 19, 27, 0.6);
    --shadow-md: 0 8px 0 rgba(7, 19, 27, 0.75);
    --shadow-glass: 0 6px 0 rgba(7, 19, 27, 0.68);

    --focus-ring: 0 0 0 4px rgba(255, 77, 184, 0.3);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    background:
        linear-gradient(115deg, rgba(255, 45, 149, 0.18), transparent 36%),
        linear-gradient(320deg, rgba(13, 139, 255, 0.2), transparent 42%),
        repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.04) 0 2px, transparent 2px 24px),
        repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.04) 0 2px, transparent 2px 24px),
        var(--color-bg);
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

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

/* Accessibility */

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-xs);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Layout helpers */

.contenedor,
.hero-inner,
.contenedor-header,
.contenedor-tarjetas,
.contenedor_aboutus,
.contenedor-form,
.contenedor-footer {
    width: var(--container-width);
    margin: 0 auto;
}

.site-header__container,
.contenedor-header {
    max-width: var(--container-width);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface-strong);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    gap: 1.2rem;
}

.site-brand {
    order: 1;
    position: relative;
    z-index: 2;
}

.theme-toggle {
    order: 2;
    position: relative;
    z-index: 9;
}

.site-nav {
    order: 3;
    position: relative;
    z-index: 8;
}

.toggle {
    order: 4;
    position: relative;
    z-index: 9;
}

.site-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    max-width: min(36vw, 26rem);
}

a.site-brand {
    text-decoration: none;
    color: inherit;
}

.site-brand__logo {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    image-rendering: auto;
}

.site-brand__mark {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 2.6rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: brandPulse 2.2s ease-in-out infinite;
}

.site-brand__subtitle {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--color-text-muted);
}

.theme-toggle {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: var(--shadow-sm);
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .theme-toggle {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.2rem;
    }
}

.theme-toggle:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--color-accent) 40%, var(--color-border) 60%);
}

@keyframes brandPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.9;
    }
}

/* Mobile nav drawer */

.toggle,
.site-nav__toggle {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    transition: transform 0.16s ease;
}

.toggle::before,
.toggle::after,
.site-nav__toggle::before,
.site-nav__toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.8rem;
    height: 0.2rem;
    border-radius: var(--radius-pill);
    background: var(--color-text);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease;
}

.toggle::before,
.site-nav__toggle::before {
    transform: translate(-50%, -50%) translateY(-0.6rem);
}

.toggle::after,
.site-nav__toggle::after {
    transform: translate(-50%, -50%) translateY(0.6rem);
}

.toggle.active::before,
.site-nav__toggle.active::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.toggle.active::after,
.site-nav__toggle.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar,
.site-nav__drawer {
    position: fixed;
    inset: 0;
    background: var(--color-surface-strong);
    backdrop-filter: none;
    border-left: 1px solid var(--color-border);
    z-index: 55;
    transform: translateY(-104%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 7.2rem 2.4rem 2.4rem;
    overflow: auto;
    pointer-events: none;
}

.sidebar.active,
.site-nav__drawer.active {
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.site-nav__close {
    width: 3.4rem;
    height: 3.4rem;
    border: 0;
    background: transparent;
    color: var(--color-text);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    margin: 0 0 1.2rem auto;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 1.1rem 0.8rem;
    border-radius: 0;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 0;
    position: relative;
    pointer-events: auto;
    transition: color 0.15s ease;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-strong));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--color-accent-strong);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
    transform: scaleX(1);
}

.site-nav__link--active {
    color: var(--color-accent-strong);
}

.site-nav__link--active::after {
    transform: scaleX(1);
}

/* Desktop nav */

@media (min-width: 768px) {
    .site-brand {
        order: 1;
    }

    .site-nav {
        order: 2;
    }

    .theme-toggle {
        order: 3;
    }

    .toggle,
    .site-nav__toggle {
        display: none;
    }

    .sidebar,
    .site-nav__drawer {
        position: static;
        transform: none;
        background: transparent;
        border-left: 0;
        padding: 0;
        display: block;
        overflow: visible;
        backdrop-filter: none;
        pointer-events: auto;
    }

    .site-nav__list {
        flex-direction: row;
        gap: 1.4rem;
        margin: 0;
    }

    .site-nav__close {
        display: none;
    }

    .site-nav__link {
        padding: 1rem 0.2rem;
    }

    .site-header__container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1.6rem;
    }

    .site-nav {
        justify-self: center;
    }

    .theme-toggle {
        justify-self: end;
    }
}

@media (min-width: 1440px) {
    .site-header__container {
        padding: 1.9rem 0;
        gap: 2.4rem;
    }

    .site-nav__list {
        gap: 2.2rem;
    }

    .site-nav__link {
        font-size: 1.35rem;
        letter-spacing: 0.15em;
    }

    .site-brand__mark {
        font-size: 3.2rem;
    }

    .site-brand__subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.3em;
    }

    .theme-toggle {
        width: 4.4rem;
        height: 4.4rem;
    }
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
}

.page-shell {
    padding-bottom: 4rem;
}

.page-hero {
    padding: 4.2rem 0 2.4rem;
}

.page-hero__container {
    width: var(--container-width);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 3.2rem 2.4rem;
    border: 1px solid var(--color-border);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--color-accent) 14%, var(--color-surface) 86%), var(--color-surface)),
        var(--color-surface);
    box-shadow: var(--shadow-glass);
}

.page-hero__eyebrow {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.page-hero__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.page-hero__description {
    margin: 1.2rem 0 0;
    max-width: 68ch;
    color: var(--color-text-muted);
}

.hero-inner,
.hero__inner {
    width: var(--container-width);
    margin: 0 auto;
    padding: 4.2rem 0 2.8rem;
}

.hero__content {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 3.2rem 2.4rem;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--color-accent) 16%, var(--color-surface) 84%), var(--color-surface)),
        var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-glass);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    align-items: center;
}

.hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.hero__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.15;
    margin: 0 0 1.2rem;
    letter-spacing: 0.02em;
}

.hero__content p {
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}

.hero .frombtown {
    color: var(--color-text-soft);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero .frombtown i {
    color: var(--color-accent-warm);
    font-size: 1.2rem;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 1.2rem 2.2rem;
    border-radius: var(--radius-pill);
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    width: fit-content;
}

.hero__cta:hover,
.hero__cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(37, 99, 235, 0.35);
    filter: saturate(1.1);
}

.hero__cta--secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.hero__cta--secondary:hover,
.hero__cta--secondary:focus-visible {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border) 55%);
    background: var(--color-accent-soft);
    filter: none;
}

.hero__content img {
    border-radius: var(--radius-md);
    border: 0;
    box-shadow: none;
    width: min(420px, 100%);
    justify-self: center;
}

@media (min-width: 900px) {
    .hero__content {
        grid-template-columns: 1.35fr 1fr;
        padding: 4.0rem 4rem;
    }

    .hero__copy {
        align-items: flex-start;
        text-align: left;
    }

    .hero__content img {
        width: min(440px, 100%);
    }
}

/* Services */

.services {
    padding: 0 0 2.4rem;
}

.services-explained {
    padding: 1.2rem 0 3.2rem;
}

.services-explained__list {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.service-detail {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.6rem;
}

.service-detail__title {
    margin: 0 0 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-detail__description {
    margin: 0 0 0.9rem;
    color: var(--color-text-muted);
}

.service-detail__points {
    margin: 0;
    padding-left: 1.8rem;
    color: var(--color-text-muted);
    display: grid;
    gap: 0.6rem;
}

.services-explained__summary {
    width: var(--container-width);
    margin: 1.4rem auto 0;
    border-left: 3px solid var(--color-accent-strong);
    background: color-mix(in srgb, var(--color-surface) 90%, var(--color-accent-soft) 10%);
    padding: 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services-explained__summary p {
    margin: 0;
    color: var(--color-text-muted);
}

.home-services,
.trust-proof {
    padding: 1.2rem 0 2.8rem;
}

.trust-proof__layout {
    width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
}

.trust-proof__intro,
.trust-proof__evidence {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.6rem;
}

.trust-proof__intro h3 {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
}

.trust-proof__list {
    margin: 0;
    padding-left: 1.8rem;
    display: grid;
    gap: 0.7rem;
    color: var(--color-text-muted);
}

.trust-proof__kicker {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.trust-proof__statement {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.6rem;
    line-height: 1.45;
}

.trust-proof__strip {
    width: var(--container-width);
    margin: 1.2rem auto 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--color-accent-strong);
    background: color-mix(in srgb, var(--color-surface) 90%, var(--color-accent-soft) 10%);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.services__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
    padding-bottom: 1.2rem;
}

.services__card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.services__card::after {
    content: attr(data-icon);
    position: absolute;
    right: -0.8rem;
    bottom: -1.8rem;
    font-size: 10rem;
    line-height: 1;
    opacity: 0.11;
    pointer-events: none;
    filter: saturate(1.1);
}

.services__card:hover,
.services__card:focus-within {
    transform: translateY(-6px) rotate(-0.35deg);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border) 55%);
    filter: saturate(1.12);
}

.services__icon {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-soft), rgba(255, 255, 255, 0));
    color: var(--color-accent-strong);
    border: 0;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.14);
}

.services__card h2,
.services__card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0.2rem 0 0.2rem;
}

.services__card p {
    position: relative;
    z-index: 1;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    margin: 0;
}

.services__card h2,
.services__card h3 {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(3, minmax(24rem, 31rem));
        justify-content: center;
    }

    .services-explained__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-explained__summary {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .trust-proof__layout {
        grid-template-columns: 1.4fr 1fr;
    }

    .trust-proof__strip {
        text-align: center;
    }
}

@media (min-width: 1100px) {
    .services__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* About */

.about {
    padding: 2.4rem 0;
}

.about__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
}

.about__container > h2 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 2rem;
    margin: 0;
    color: var(--color-text);
}

.about__intro,
.about__founder {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.2rem 1.8rem;
}

.about__intro h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 0 0 1rem;
}

.about__intro p {
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
}

.about__intro ul {
    margin: 0;
    padding-left: 1.6rem;
    color: var(--color-text-muted);
}

.about__image {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 360px;
    justify-self: center;
}

.about__founder {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
}

.about__founder img {
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--color-accent) 60%, var(--color-border) 40%);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.about__founder-name {
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    font-weight: 700;
    margin: 0;
}

.about__bio {
    margin: 0;
    color: var(--color-text-muted);
    text-align: left;
}

.about__bio-full {
    display: none;
    padding: 1.4rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface-strong);
    color: var(--color-text-muted);
    box-shadow: var(--shadow-sm);
    margin-top: 0.8rem;
}

.bio.show-full .about__bio-full,
.bio.show-full .full-bio {
    display: inline-block;
}

.bio.show-full .read-more {
    display: none;
}

.about__bio-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent-strong);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.25rem;
}

.about__bio-toggle:hover,
.about__bio-toggle:focus-visible {
    color: var(--color-accent);
}

@media (min-width: 900px) {
    .about__container {
        grid-template-columns: 1.25fr 0.9fr 1fr;
        align-items: start;
    }

    .about__container > h2 {
        grid-column: 1 / -1;
        margin-bottom: 0.4rem;
    }
}

/* Testimonial */

.testimonial__card,
.quote {
    width: var(--container-width);
    margin: 1.2rem auto 0;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.4rem 1.8rem;
    text-align: center;
}

.testimonial__card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.testimonial__card i {
    color: var(--color-accent-strong);
}

.quote-author {
    margin: 1rem 0 0;
    color: var(--color-text-muted);
    font-weight: 700;
}

/* Tech stack/toolbox */

.tech-stack {
    padding: 1.2rem 0 2.4rem;
}

.tech-stack__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
}

.tech-stack__item {
    flex: 1 1 220px;
    max-width: 320px;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.0rem 1.6rem;
    text-align: center;
}

.tech-stack__icon {
    font-size: 3.4rem;
    color: var(--color-accent-strong);
    margin-bottom: 1rem;
}

.tech-stack__title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1rem;
    font-size: 1.6rem;
}

.tech-stack__item p {
    margin: 0;
    color: var(--color-text-muted);
}

/* Projects */

.projects {
    padding: 0 0 3.2rem;
}

.home-projects {
    padding-top: 1.2rem;
}

.project-cards h2,
.section-header__title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 2rem;
    margin: 0 0 1.8rem;
    text-align: center;
}

.projects__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
    width: var(--container-width);
    margin: 0 auto;
}

.projects__card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    max-width: 54rem;
    width: 100%;
    justify-self: center;
}

.projects__card:hover,
.projects__card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border) 55%);
}

.projects__card img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.projects__card-content {
    padding: 2rem;
}

.projects__card h3 {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.7rem;
}

.projects__card p {
    margin: 0 0 1.2rem;
    color: var(--color-text-muted);
}

.projects__tags {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.projects__tag {
    font-size: 1.2rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--color-accent-soft);
    border: 1px solid color-mix(in srgb, var(--color-accent) 30%, var(--color-border) 70%);
    color: var(--color-accent-strong);
    font-weight: 700;
}

.projects__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.0rem 1.8rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    width: fit-content;
}

.projects__link:hover,
.projects__link:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

@media (min-width: 768px) {
    .projects__grid {
        grid-template-columns: repeat(2, minmax(28rem, 48rem));
        justify-content: center;
    }
}

/* Contact */

.contact {
    padding: 1.2rem 0 4.0rem;
}

.forms > h2 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 2rem;
    margin: 0 0 2rem;
    text-align: center;
}

.contact__card {
    width: var(--container-width);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.4rem 1.8rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.contact__card img {
    justify-self: center;
    width: min(220px, 100%);
}

.contact__form {
    width: 100%;
}

.contact__label {
    display: block;
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    margin: 0 0 0.8rem;
}

.contact__input,
.contact__textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 1.1rem 1.2rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-surface-soft);
    outline: none;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact__input:focus-visible,
.contact__textarea:focus-visible {
    border-color: color-mix(in srgb, var(--color-accent) 70%, var(--color-border) 30%);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
    background: var(--color-surface);
}

.contact__textarea {
    min-height: 12rem;
    resize: vertical;
}

.contact__submit {
    width: fit-content;
    border-radius: var(--radius-pill);
    border: none;
    padding: 1.1rem 2.2rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
}

.contact__submit:hover,
.contact__submit:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.1);
    box-shadow: 0 20px 55px rgba(37, 99, 235, 0.28);
}

@media (min-width: 900px) {
    .contact__card {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        padding: 3.2rem 3.2rem;
    }
}

/* Footer */

.site-footer {
    background: color-mix(in srgb, var(--color-bg) 10%, var(--color-accent-soft) 30%);
    border-top: 1px solid var(--color-border);
    padding: 2.4rem 0 2.2rem;
}

.site-footer__container {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__navlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.site-footer__navlist .site-nav__link {
    padding: 0.55rem 0.5rem;
    letter-spacing: 0.06em;
    font-size: 1rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .site-footer__container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__nav {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}

/* Values / Trust */

.values {
    padding: 2.0rem 0 2.8rem;
}

.values__title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 2.0rem;
    margin: 0 0 1.8rem;
    text-align: center;
}

.values__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.values__item {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.0rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.values__item:hover,
.values__item:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-border) 55%);
}

.values__icon {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, var(--color-accent-soft), rgba(255, 255, 255, 0));
    color: var(--color-accent-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.values__icon i {
    font-size: 2.2rem;
}

.values__item-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
    font-size: 1.5rem;
}

.values__item p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    line-height: 1.55;
}

@media (min-width: 768px) {
    .values__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Process */

.process {
    padding: 1.8rem 0 3.2rem;
}

.process__container {
    width: var(--container-width);
}

.process__title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 2.0rem;
    margin: 0 0 1.8rem;
    text-align: center;
}

.section-header {
    width: var(--container-width);
    margin: 0 auto 1.8rem;
    text-align: center;
}

.section-header__eyebrow {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.home-section-action {
    width: var(--container-width);
    margin: 1.4rem auto 0;
    display: flex;
    justify-content: center;
}

.home-cta {
    padding: 1.2rem 0 4.2rem;
}

.home-cta__container {
    width: var(--container-width);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--color-accent-strong) 14%, var(--color-surface) 86%), var(--color-surface));
    box-shadow: var(--shadow-glass);
    padding: 3.2rem 2.2rem;
    text-align: center;
}

.home-cta__container h2 {
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.home-cta__container p {
    margin: 1rem auto 1.8rem;
    max-width: 62ch;
    color: var(--color-text-muted);
}

.process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.process__step {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    padding: 2.0rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.process__step-num {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, var(--color-accent-soft), rgba(255, 255, 255, 0));
    color: var(--color-accent-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.process__step-title {
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.5rem;
}

.process__step p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    line-height: 1.55;
}

.process-wheel {
    position: relative;
    width: min(78rem, 100%);
    min-height: 26rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-wheel__core {
    width: 9.2rem;
    height: 9.2rem;
    border-radius: 999px;
    border: 2px solid var(--color-accent-strong);
    background: var(--color-surface-strong);
    color: var(--color-accent-strong);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    margin-top: 152px;
}

.process-wheel__item {
    position: absolute;
    width: 22rem;
    text-align: center;
    padding: 1rem 0.8rem;
}

.process-wheel__item--one {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.process-wheel__item--two {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-wheel__item--three {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.process-wheel__icon {
    width: 4.6rem;
    height: 4.6rem;
    margin: 0 auto 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-accent-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.process-wheel__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.3rem;
}

.process-wheel__item p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .process__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 899px) {
    .process-wheel {
        min-height: auto;
        display: grid;
        gap: 1.2rem;
        justify-items: center;
    }

    .process-wheel__core {
        order: 0;
        margin-bottom: 0.6rem;
        margin-top: 0;
    }

    .process-wheel__item {
        position: static;
        transform: none;
        width: 100%;
        max-width: 42rem;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-sm);
        border-radius: var(--radius-md);
        padding: 1.4rem 1rem;
    }
}

/* About page composition */
.about-showcase {
    width: var(--container-width);
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
}

.about-showcase__media img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 0;
}

.about-showcase__content h2 {
    margin: 0 0 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.about-showcase__content p,
.about-showcase__content li {
    color: var(--color-text-muted);
}

.about-showcase__founder {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.about-showcase__founder img {
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--color-accent-strong) 55%, var(--color-border) 45%);
}

.about-showcase__founder-name {
    margin: 0 0 0.3rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-showcase__founder-bio {
    margin: 0;
    color: var(--color-text-muted);
}

@media (min-width: 980px) {
    .about-showcase {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        padding: 2.8rem;
    }
}

/* Contact page form */
.contact-panel {
    width: var(--container-width);
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    padding: 2.2rem 1.8rem;
}

.contact-panel__intro {
    margin-bottom: 1.4rem;
}

.contact-panel__title {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-panel__lead {
    margin: 0;
    color: var(--color-text-muted);
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.contact__field-group {
    display: flex;
    flex-direction: column;
}

.contact__status {
    margin-top: 1rem;
    min-height: 2.1rem;
    font-size: 1.35rem;
    color: var(--color-text-muted);
}

.contact__status[data-status='success'] {
    color: #0a7b32;
}

.contact__status[data-status='error'] {
    color: #b0122d;
}

.contact__consent {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.35rem;
}

.contact__consent input {
    width: 1.6rem;
    height: 1.6rem;
}

.contact__hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

@media (min-width: 900px) {
    .contact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact__field-group--full {
        grid-column: 1 / -1;
    }
}

