/* ═══════════════════════════════════════════════════════════════
   RealBehind — Design System v3
   Aesthetic: Documentary Blue — Clean × Real × Modern
   Palette: Pure White · Ink · Brand Blue (#4B82F1)
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Brand Blue (from IG highlights) */
    --blue:         #4B82F1;
    --blue-dark:    #2865D8;
    --blue-mid:     #3D77E8;
    --blue-light:   #EBF1FF;
    --blue-glow:    rgba(75, 130, 241, 0.10);
    --blue-border:  rgba(75, 130, 241, 0.18);

    /* Ink Scale */
    --ink:          #0D0E1A;
    --ink-mid:      #3A3C52;
    --ink-soft:     #6E7086;
    --ink-faint:    #B0B2C8;

    /* Surface */
    --white:        #FFFFFF;
    --off-white:    #F7F9FC;
    --bg:           var(--white);

    /* Borders */
    --border:       #E5E8F4;
    --border-mid:   #CDD1E8;

    /* Glass */
    --glass-bg:     rgba(255, 255, 255, 0.92);
    --glass-border: rgba(75, 130, 241, 0.12);
    --glass-shadow: 0 24px 60px -12px rgba(13, 14, 26, 0.09);

    /* Semantic */
    --text-primary:   var(--ink);
    --text-secondary: var(--ink-soft);
    --accent:         var(--blue);
    --accent-dark:    var(--blue-dark);
    --accent-bg:      var(--blue-light);

    /* Fonts */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;

    /* Radii */
    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-2xl: 40px;
}

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

/* ── Base ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── Grain Texture ──────────────────────────────────── */
.grain-overlay {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.018;
    pointer-events: none;
    z-index: 100;
    animation: grain-drift 8s steps(2) infinite;
}

@keyframes grain-drift {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-2%, -3%); }
    40%  { transform: translate(1%, 2%); }
    60%  { transform: translate(-1%, 1%); }
    80%  { transform: translate(2%, -1%); }
    100% { transform: translate(0, 0); }
}

/* ── Background Atmosphere ──────────────────────────── */
.bg-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(75, 130, 241, 0.08) 0%, transparent 70%);
    top: -280px;
    right: -200px;
    animation: drift 16s ease-in-out infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 130, 241, 0.05) 0%, transparent 70%);
    bottom: -180px;
    left: -160px;
    animation: drift 20s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(40, 101, 216, 0.06) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(28px, 18px) scale(1.07); }
}

/* ── Layout ─────────────────────────────────────────── */
main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem 5rem;
}

/* ── Steps ──────────────────────────────────────────── */
.step {
    display: none;
    width: 100%;
    max-width: 680px;
    animation: reveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Hero step gets extra width for the split portrait layout */
#step-1 {
    max-width: 920px;
}

.step.active { display: flex; flex-direction: column; }

@keyframes reveal {
    from { opacity: 0; transform: translateY(16px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Content Boxes ──────────────────────────────────── */
.content-box {
    position: relative;
    padding: 2.75rem;
    z-index: 2;
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: var(--glass-shadow);
}

.hero-box {
    padding: 0;
}

.centered-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

/* ════════════════════════════════════════════════════
   HERO LAYOUT — Split: Text Left + Portrait Right
   ════════════════════════════════════════════════════ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: start;
}

.hero-body {
    padding-bottom: 2rem;
    padding-top: 0.5rem;
}

/* ── Portrait Panel ─────────────────────────────────── */
.hero-portrait-wrap {
    position: relative;
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-portrait {
    width: 240px;
    height: 340px;
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    background: var(--blue-light);
    box-shadow:
        0 2px 8px rgba(13, 14, 26, 0.06),
        0 12px 40px -8px rgba(75, 130, 241, 0.18);
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ── Image Protection ───────────────────────────────── */
/* Casual-download protection. Cannot block DevTools/Screenshot, but
   blocks right-click save, drag-to-desktop, and selection. */
.hero-portrait img,
.portrait-studios .thumb img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.portrait-studios .thumb {
    position: relative;
}

/* Fallback gradient when no portrait image is set */
.hero-portrait.no-image {
    background: linear-gradient(145deg, var(--blue-light) 0%, #dce8fd 50%, var(--blue-light) 100%);
}

.hero-portrait.no-image::after {
    content: 'P';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.25;
}

/* Badge stays in normal flow so thumbnail rows cannot cover it on desktop. */
.portrait-badge {
    order: 3;
    align-self: center;
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-top: 0.75rem;
    padding: 0.45rem 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px -4px rgba(13, 14, 26, 0.10);
}

/* Studio thumbnails below portrait */
.portrait-studios {
    order: 2;
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.portrait-studios .thumb {
    flex: 1;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--off-white);
    border: 1px solid var(--border);
}

.portrait-studios .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portrait-studios .thumb:hover img {
    transform: scale(1.05);
}

/* ── Step Header (Steps 2/4) ────────────────────────── */
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

/* ── Typography ─────────────────────────────────────── */
h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-bottom: 2rem;
}

h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--blue);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blue);
    margin-bottom: 1.5rem;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--blue-border);
    border-radius: 100px;
    background: var(--blue-light);
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-lead {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 440px;
}

.about-strip {
    border-left: 2px solid var(--blue-border);
    padding: 0.75rem 0 0.75rem 1.25rem;
    margin-bottom: 2.25rem;
    background: linear-gradient(to right, var(--blue-glow), transparent);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.about-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 0;
    max-width: 460px;
}

.optional {
    font-weight: 400;
    color: var(--ink-faint);
    font-size: 0.8em;
}

/* ── Watermark ──────────────────────────────────────── */
.watermark {
    position: fixed;
    bottom: -60px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 700;
    color: rgba(75, 130, 241, 0.025);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -4px;
    user-select: none;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 1.1rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px -4px rgba(75, 130, 241, 0.4);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -6px rgba(75, 130, 241, 0.45);
}

.btn-primary svg {
    transition: transform 0.25s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--border);
    padding: 0.9rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
    border-color: var(--blue-border);
    color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-2px);
}

.btn-ghost svg {
    transition: transform 0.25s ease;
}

.btn-ghost:hover svg {
    transform: translateX(-3px);
}

.btn-ghost--icon {
    padding: 0.75rem 1.4rem;
}

/* ── Form ───────────────────────────────────────────── */
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.input-group label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-mid);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (min-width: 641px) {
    .field-row .input-group label {
        min-height: 2.6rem;
        display: flex;
        align-items: flex-end;
    }
}

.input-group input,
.input-group select,
.input-group textarea {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.input-group textarea {
    min-height: 110px;
    line-height: 1.55;
    resize: vertical;
}

.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7086' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.input-group input::placeholder,
.input-group textarea::placeholder { color: var(--ink-faint); }

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
    background: var(--white);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.form-actions .btn-primary {
    flex: 1;
    justify-content: center;
}

/* ── Loader ─────────────────────────────────────────── */
.loader-ring {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 2s linear infinite;
}

.spinner-arc {
    transform-origin: center;
    stroke-dashoffset: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.loader-sub {
    font-size: 0.98rem;
    color: var(--ink-soft);
    max-width: 320px;
}

/* ── Calendly ───────────────────────────────────────── */
.calendly-box {
    max-width: 920px;
}

#step-4 {
    max-width: 920px;
}

/* ── Consent (Form-Checkbox + Calendly-Gate) ─────────── */
.consent-group {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.consent-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    color: var(--ink-mid) !important;
    line-height: 1.5;
    min-height: auto !important;
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

.consent-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1.5px solid var(--border-mid);
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.consent-label input[type="checkbox"]:checked + .consent-check {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: inset 0 0 0 3px var(--white);
}

.consent-label input[type="checkbox"]:focus-visible + .consent-check {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.consent-text {
    margin: 0;
}

.consent-text a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-text a:hover {
    color: var(--blue-dark);
}

.consent-gate {
    background: var(--blue-light);
    border: 1px solid var(--blue-border);
    border-radius: var(--r-lg);
    padding: 2rem;
    margin-top: 1rem;
}

.consent-gate h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.85rem;
}

.consent-gate p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-mid);
    margin-bottom: 0.75rem;
}

.consent-gate .consent-detail {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.consent-gate .consent-detail a,
.consent-gate p a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.consent-actions .btn-primary {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    position: fixed;
    bottom: 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.65;
    z-index: 1;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    pointer-events: auto;
}

.site-footer a:hover {
    color: var(--blue);
}

.footer-sep {
    margin: 0 0.75rem;
    opacity: 0.4;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */

/* Portrait goes stacked on smaller screens */
@media (max-width: 720px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-portrait-wrap {
        width: 100%;
    }

    .hero-portrait {
        width: 100%;
        height: 320px;
        border-radius: var(--r-lg);
    }

    .hero-portrait img {
        object-position: center 20%;
    }

    /* Studio thumbnails on mobile: bigger, more prominent */
    .portrait-studios {
        margin-top: 1.75rem;
        margin-bottom: 3rem;
        gap: 0.6rem;
    }

    .portrait-studios .thumb {
        height: 110px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    main {
        min-height: auto;
        padding: 1.5rem 1rem 2rem;
        align-items: flex-start;
    }

    .content-box.glass-box {
        padding: 1.75rem 1.35rem;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    h1 { font-size: 2.75rem; letter-spacing: -0.5px; }
    h2 { font-size: 1.85rem; margin-bottom: 1.35rem; }

    .step-header {
        margin-bottom: 1.25rem;
    }

    .step-label {
        font-size: 0.66rem;
        line-height: 1.45;
        letter-spacing: 1.8px;
    }

    .input-group {
        gap: 0.38rem;
        margin-bottom: 1.05rem;
    }

    .input-group label {
        font-size: 0.72rem;
        line-height: 1.45;
        letter-spacing: 0.7px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        border-radius: 14px;
        padding: 0.82rem 1rem;
        font-size: 0.95rem;
    }

    .input-group textarea {
        min-height: 96px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
        padding-top: 0.85rem;
    }

    .form-actions .btn-ghost,
    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .site-footer {
        position: relative;
        bottom: auto;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem 0;
        width: auto;
        padding: 0 1rem calc(1.5rem + env(safe-area-inset-bottom));
        font-size: 0.62rem;
        line-height: 1.6;
    }

    .watermark {
        display: none;
    }

    .footer-sep {
        margin: 0 0.55rem;
    }
}

@media (max-width: 400px) {
    h1 { font-size: 2.25rem; }
    .content-box.glass-box { padding: 1.5rem 1.05rem; }
}

/* ════════════════════════════════════════════════════
   LANGUAGE SWITCH (DE / EN)
   ════════════════════════════════════════════════════ */
.lang-switch {
    position: fixed;
    top: calc(1.25rem + env(safe-area-inset-top));
    right: calc(1.25rem + env(safe-area-inset-right));
    z-index: 200;
    display: inline-flex;
    gap: 2px;
    padding: 4px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px -10px rgba(13, 14, 26, 0.18);
}

.lang-btn {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding: 0.42rem 0.85rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
    color: var(--blue);
}

.lang-btn[aria-pressed="true"] {
    background: var(--blue);
    color: var(--white);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .lang-switch {
        top: calc(0.85rem + env(safe-area-inset-top));
        right: calc(0.85rem + env(safe-area-inset-right));
    }

    .lang-btn {
        padding: 0.38rem 0.72rem;
        font-size: 0.68rem;
    }
}
