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

/* Variables */
:root {
    /* Colores de marca */
    --orange: #EF7D00;
    --orange-dark: #C96A00;
    --orange-light: #FF9A2E;
    --orange-muted: rgba(239, 125, 0, .12);

    /* Escala de grises */
    --ink: #1A1A1A;
    --ink-2: #54565A;
    --ink-3: #888B8F;
    --ink-4: #C2C4C7;
    --bg-light: #F7F7F7;
    --white: #FFFFFF;

    /* Semánticos */
    --bg: var(--white);
    --bg-2: var(--bg-light);
    --bg-3: #EFEFEF;
    --border: #E4E5E7;
    --border-2: var(--ink-4);
    --text: var(--ink);
    --text-muted: var(--ink-2);
    --text-hint: var(--ink-3);
    --accent: var(--orange);
    --accent-hover: var(--orange-dark);

    /* Tipografía */
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Radios */
    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 40px;

    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .05);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .07);

    /* Transiciones */
    --t-fast: .15s ease;
    --t-base: .22s ease;
    --t-slow: .38s ease;

    /* Layout */
    --container: 1140px;
    --nav-h: 72px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font-family: var(--font-body);
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

/* ScrollBar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--ink-4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ink-3);
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}

h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
}

h2 {
    font-size: clamp(28px, 3.5vw, 46px);
}

h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

h5 {
    font-size: 15px;
    font-weight: 600;
}

p {
    line-height: 1.7;
}

.lead {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.75;
    max-width: 560px;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 13px 26px;
    border-radius: var(--r-2xl);
    cursor: pointer;
    transition: all var(--t-base);
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primario — naranja sólido */
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 125, 0, .30);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secundario — outline oscuro */
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-2);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* Ghost — outline naranja */
.btn-ghost {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-ghost:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 125, 0, .25);
}

/* Dark */
.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.btn-dark:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

/* Tamaños */
.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--r-2xl);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}

.tag-default {
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--ink-2);
}

.tag-orange {
    background: var(--orange-muted);
    border: 1px solid rgba(239, 125, 0, .20);
    color: var(--orange-dark);
}

.tag-dark {
    background: var(--ink);
    color: var(--white);
}

.tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
}

.tag .dot-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* Reveal animaciones */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 {
    transition-delay: .08s;
}

.reveal-d2 {
    transition-delay: .16s;
}

.reveal-d3 {
    transition-delay: .24s;
}

.reveal-d4 {
    transition-delay: .32s;
}

.reveal-d5 {
    transition-delay: .40s;
}

/* Variante desde abajo menos agresiva */
.reveal-fade {
    opacity: 0;
    transition: opacity .7s ease;
}

.reveal-fade.visible {
    opacity: 1;
}

/* Divider */
.divider {
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin: 16px 0 24px;
}

.divider-center {
    margin: 16px auto 24px;
}

/* Utilidades */
.text-orange {
    color: var(--orange);
}

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

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

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

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

.text-left {
    text-align: left;
}

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

.bg-light {
    background: var(--bg-2);
}

.bg-white {
    background: var(--white);
}

.bg-orange {
    background: var(--orange);
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

/* Grid Helpers */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

/* Separador de secciones */
.section-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* Whatsapp flotante */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 997;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    transition: transform var(--t-base), box-shadow var(--t-base);
    animation: wa-ring 3.5s infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.float-wa svg {
    width: 28px;
    height: 28px;
}

@keyframes wa-ring {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .3);
    }

    60% {
        box-shadow: 0 4px 18px rgba(37, 211, 102, .45), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* Mediaqueries 1 */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .btn-lg {
        padding: 14px 26px;
        font-size: 14px;
    }
}


/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--nav-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background var(--t-base), box-shadow var(--t-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}


/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-mark img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Links desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    border-radius: var(--r-2xl);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--ink);
    background: var(--bg-2);
}

.nav-link.active {
    color: var(--ink);
    font-weight: 600;
    background: var(--bg-2);
}

.nav-link.active::after {
    display: none;
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

/* Acciones derecha */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: var(--r-2xl);
    transition: color var(--t-fast), background var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-phone:hover {
    color: var(--orange);
    background: var(--orange-muted);
}

.nav-phone svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    cursor: pointer;
    gap: 5px;
    transition: border-color var(--t-fast), background var(--t-fast);
    flex-shrink: 0;
}

.nav-hamburger:hover {
    border-color: var(--orange);
    background: var(--orange-muted);
}

.nav-hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Menú mobile */
.nav-mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    z-index: 998;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .38s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
}

.nav-mobile.open {
    max-height: 560px;
    opacity: 1;
}

.nav-mobile-inner {
    padding: 20px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-radius: var(--r-md);
    transition: background var(--t-fast), color var(--t-fast);
    border-bottom: 1px solid var(--border);
}

.nav-mobile-link:last-of-type {
    border-bottom: none;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: var(--orange-muted);
    color: var(--orange);
}

.nav-mobile-link svg {
    width: 16px;
    height: 16px;
    color: var(--ink-4);
}

.nav-mobile-cta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-mobile-cta .btn {
    justify-content: center;
    width: 100%;
}

.nav-mobile-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0 0;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.nav-actions .btn-primary svg {
    display: none;
}

.nav-actions .btn-primary::after {
    content: ' →';
}

/* Responsive navbar */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0 20px;
    }

    .nav-logo-text {
        display: none;
    }
}



/* Footer */

.footer {
    background: var(--ink);
    color: var(--white);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 125, 0, .06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 1;
}

/* Logo footer */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-mark img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.01em;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .50);
    line-height: 1.75;
    max-width: 270px;
    margin-bottom: 28px;
}

/* Redes sociales */
.footer-socials {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .50);
    text-decoration: none;
    transition: all var(--t-fast);
}

.social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(239, 125, 0, .10);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* Columnas links */
.footer-col-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .60);
    text-decoration: none;
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--orange);
}

/* Columna contacto */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(239, 125, 0, .12);
    border: 1px solid rgba(239, 125, 0, .20);
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* margin-top: 1px; */
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .30);
    margin-bottom: 2px;
}

.footer-contact-val {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .70);
    font-weight: 400;
    line-height: 1.4;
}

.footer-contact-val a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    transition: color var(--t-fast);
}

.footer-contact-val a:hover {
    color: var(--orange);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .30);
}

.footer-copy a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color var(--t-fast);
}

.footer-copy a:hover {
    color: var(--orange);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .30);
    text-decoration: none;
    transition: color var(--t-fast);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .60);
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer {
        padding-top: 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    
}

/* WhatsApp botón */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    border-radius: var(--r-2xl);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #25D366;
    border: 1.5px solid #25D366;
    text-decoration: none;
    transition: all var(--t-base);
    background: transparent;
}

.btn-wa:hover {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .30);
    transform: translateY(-2px);
}

.btn-wa svg {
    width: 16px;
    height: 16px;
}

/* Formulario */
/* Formulario */
.contact-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-2);
    border-radius: 0;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color var(--t-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--orange);
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-4);
    font-size: 14px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Fallback  */
.reveal,
.reveal-fade {
    opacity: 1;
    transform: none;
}