/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    opacity: 1;
    transition: opacity .5s ease;
}

section {
    padding: 100px 10%;
}

#about, #services, #process, #projects, #contact {
    scroll-margin-top: 75px;
}

h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}



/* =========================
   HEADER
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid #ebebeb;
}

nav {
    max-width: 1300px;
    margin: auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111;
    transition: .3s;
}

.logo span {
    font-family: "Brush Script MT", cursive;
    font-size: 58px;
    font-weight: normal;
    color: #111;
    margin-right: 4px;
    line-height: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: .3s;
}

nav a:hover { color: #111; }

/* =========================
   LANGUAGE SWITCHER
========================= */

.lang-switcher {
    display: flex;
    gap: 2px;
    background: #f0f0f0;
    border-radius: 9px;
    padding: 3px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: .2s;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: white;
    color: #111;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.lang-btn:hover:not(.active) { color: #444; }

/* =========================
   HR DIVIDER
========================= */

hr {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0;
}



/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background:
        radial-gradient(ellipse at 72% 45%, #ede9fe 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, #dbeafe 0%, transparent 45%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 560px;
    position: relative;
    animation: fadeUp 1s ease;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    background: rgba(109,40,217,0.07);
    color: #6d28d9;
    border: 1px solid rgba(109,40,217,0.15);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    color: #0f0f0f;
}

.hero p {
    max-width: 460px;
    margin-bottom: 34px;
    font-size: 16px;
    color: #666;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tech-chip {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: .25s;
}

.tech-chip:hover {
    color: #6d28d9;
    border-color: rgba(109,40,217,0.25);
    background: rgba(109,40,217,0.05);
}

/* hero visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.hero-card {
    background: white;
    border-radius: 18px;
    width: 460px;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 14px 35px rgba(109,40,217,0.1),
        0 45px 90px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #646464;
    animation: float 5s ease-in-out infinite;
}

.hero-card-header {
    background: #f0f0f0;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.mock-url {
    margin-left: 10px;
    background: rgba(0,0,0,0.06);
    border-radius: 4px;
    font-size: 10px;
    color: #999;
    padding: 3px 12px;
    flex: 1;
    text-align: center;
}

.hero-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fafafa;
}

.mock-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid #eee;
}

.mock-logo-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    flex-shrink: 0;
}

.mock-hero-area {
    display: flex;
    gap: 10px;
    background: white;
    padding: 14px;
    border-radius: 9px;
    border: 1px solid #eee;
    align-items: center;
}

.mock-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-hero-img {
    width: 65px;
    height: 52px;
    border-radius: 7px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    flex-shrink: 0;
}

.mock-bar {
    height: 7px;
    background: #ebebeb;
    border-radius: 4px;
}

.mock-bar.long { width: 85%; }

.mock-btn-small {
    width: 52px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 12px;
    margin-top: 6px;
}

.mock-section-label {
    padding: 0 2px;
}

.mock-cards-row {
    display: flex;
    gap: 8px;
}

.mock-card-small {
    flex: 1;
    padding: 10px 8px;
    background: white;
    border: 1px solid #eee;
    border-radius: 7px;
}

.mock-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #ede9fe;
}

.mock-footer-bar {
    display: flex;
    align-items: center;
    padding: 0 2px;
}

.hero-available {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    opacity: 0.4;
    animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
    0%   { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
}



/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;
    background: #111;
    color: white;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.button:hover {
    transform: translateY(-3px);
    background: #333;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.button-ghost {
    background: transparent;
    color: #333;
    border: 1.5px solid #d0d0d0;
}

.button-ghost:hover {
    background: #f5f5f5;
    border-color: #aaa;
    box-shadow: none;
    color: #111;
}



/* =========================
   ABOUT
========================= */

#about {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.about-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.avatar-wrap {
    position: relative;
    width: 210px;
    height: 210px;
}

.avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(#a78bfa, #818cf8, #60a5fa, #a78bfa);
    animation: spin 8s linear infinite;
    opacity: 0.5;
}

.avatar-ring::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: white;
}

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

.avatar {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f0ff, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

/* Wenn ein echtes Foto eingefügt wird: */
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 4px;
}

.photo-placeholder svg {
    width: 75%;
    height: 75%;
}

.photo-label {
    font-size: 11px;
    color: #bbb;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: absolute;
    bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 14px 14px;
    background: #fafafa;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    min-width: 68px;
}

.stat strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.stat span {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 16px;
}

.about-lead {
    font-size: 16px !important;
    font-weight: 600;
    color: #222 !important;
    margin-bottom: 14px;
}

.about-text p { margin-bottom: 12px; }

.about-text .button { margin-top: 14px; }



/* =========================
   SERVICES
========================= */

#services {
    background: #f3eeff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 14px;
    max-width: 1100px;
    margin: auto;
}

.service-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(167,139,250,0.18);
    transition: transform .3s, box-shadow .3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(109,40,217,0.09);
}

.service-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d28d9;
}

.service-icon svg { width: 20px; height: 20px; }

.service-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.service-item p { font-size: 14px; line-height: 1.55; }



/* =========================
   PROCESS
========================= */

#process {
    background: #ffffff;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

.process-intro {
    text-align: center;
    max-width: 520px;
    margin: -30px auto 56px;
    font-size: 16px;
    margin-bottom: 100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* connecting line — center of col 1 to center of col 5 */
.process-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #ede9fe, #dbeafe);
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #6d28d9;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: .3s;
}

.process-step:hover .step-num {
    background: #6d28d9;
    color: white;
    border-color: #6d28d9;
    transform: scale(1.1);
}

/* hide the old connector divs */
.step-connector { display: none; }

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
}



/* =========================
   PROJECTS
========================= */

#projects {
    background: #eff6ff;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: auto;
}

.project {
    background: white;
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.project:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0,0,0,0.13);
}

.project-image {
    height: 175px;
    display: flex;
    align-items: flex-start;
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.project-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    position: relative;
}

.project-link-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    z-index: 2;
    transition: background .2s, transform .2s;
}

.project:hover .project-link-btn {
    background: white;
    transform: scale(1.12);
}

.project-deco {
    position: absolute;
    right: 8px;
    bottom: 6px;
    width: 150px;
    opacity: 0.85;
    z-index: 1;
}

.project-body {
    padding: 22px 24px;
}

.project-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #111;
}

.project-body p { font-size: 14px; color: #666; }

.project-wip { cursor: default; }
.project-wip:hover { transform: translateY(-4px); }



/* =========================
   CONTACT
========================= */

#contact {
    background: #0f0f0f;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
    max-width: 1100px;
    margin: auto;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a78bfa;
    margin-bottom: 18px;
}

#contact h2 {
    color: white;
    text-align: left;
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

#contact p {
    color: #777;
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 360px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 13px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 13px;
    transition: .3s;
}

.contact-link:hover {
    background: rgba(167,139,250,0.08);
    border-color: rgba(167,139,250,0.25);
    transform: translateX(4px);
}

.contact-link-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
}

.contact-link-icon svg { width: 17px; height: 17px; }

/* Contact right stretches + form fills full height */
.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-form {
    flex: 1;
}

.link-label {
    display: block;
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.link-value {
    display: block;
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* textarea group stretches to fill remaining form height */
.form-group-grow {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.form-group-grow textarea {
    flex: 1;
    min-height: 80px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label { font-size: 13px; color: #666; font-weight: 500; }

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    padding: 12px 14px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    resize: none;
    transition: .25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(167,139,250,0.45);
    background: rgba(167,139,250,0.06);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #111;
    margin-top: 4px;
    font-weight: 600;
}

.contact-btn svg { width: 16px; height: 16px; transition: transform .3s; }
.contact-btn:hover:not(:disabled) { background: #e8e8e8; transform: none; box-shadow: none; }
.contact-btn:hover:not(:disabled) svg { transform: translateX(4px); }
.contact-btn:disabled { opacity: .7; cursor: default; }

.input-error { border-color: #ef4444 !important; outline: none; box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }



/* =========================
   FOOTER
========================= */

footer {
    padding: 26px;
    text-align: center;
    background: #080808;
    color: #444;
    font-size: 13px;
}

.footer-sep { margin: 0 8px; }

footer a {
    color: #666;
    text-decoration: none;
    transition: .2s;
}

footer a:hover { color: #aaa; }

/* =========================
   SCROLL TO TOP
========================= */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    transition: opacity .25s, transform .25s;
    opacity: 0;
    pointer-events: none;
}

#scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    #scroll-top { display: flex; }
}



/* =========================
   IMPRESSUM MODAL
========================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: white;
    border-radius: 22px;
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform .3s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: .2s;
}

.modal-close:hover { background: #eee; color: #111; }
.modal-close svg { width: 16px; height: 16px; }

.modal h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.modal-sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.imprint-block h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6d28d9;
    margin-bottom: 8px;
}

.imprint-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.imprint-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef9c3;
    border: 1px solid #fde047;
    border-radius: 10px;
    padding: 12px 16px;
    color: #713f12;
    font-size: 13px;
    font-weight: 500;
}

.imprint-notice svg { flex-shrink: 0; margin-top: 1px; }



/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(35px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.show { opacity: 1; transform: translateY(0); }



/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    nav { padding: 16px 20px; }
    nav ul { display: none; }
    .lang-switcher { margin-left: auto; }

    section { padding: 80px 7%; }
    h2 { font-size: 28px; margin-bottom: 34px; }

    .hero {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding-top: 110px;
    }

    .hero-visual { display: none; }
    .hero h1 { letter-spacing: -1.5px; }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-text h2 { text-align: center; }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .process-steps::before { display: none; }

    .services-grid,
    .projects { grid-template-columns: 1fr; }

    /* Contact: back to stacked, form no longer needs to stretch */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
    .contact-right { display: block; }
    .contact-form { flex: unset; }
    .form-group-grow { flex: unset; }
    .form-group-grow textarea { min-height: 120px; }
    #contact h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 20px; }

    .modal { padding: 28px 22px; }

}

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

@media (max-width: 420px) {
    .process-steps { grid-template-columns: 1fr; }
    .lang-btn { padding: 5px 8px; font-size: 11px; }
}
