/*=================================
    Variablen
=================================*/

:root {

/* Background */
  --bg-0: #FFFFFF;
  --bg-50: #FCFDFF;
  --bg-100: #F8FAFC;
  --bg-200: #F1F5F9;
  --bg-300: #EAF0F6;
  --bg-400: #E2E8F0;
  --bg-500: #CBD5E1;
  --bg-600: #94A3B8;
  --bg-700: #64748B;
  --bg-800: #475569;
  --bg-900: #0F172A;

/* Text */
  --text-900: #0F172A;
  --text-800: #1E293B;
  --text-700: #334155;
  --text-600: #475569;
  --text-500: #64748B;
  --text-400: #94A3B8;
  --text-0: #FFFFFF;

/* Border */
  --border-100: #EEF2F7;
  --border-200: #E2E8F0;
  --border-300: #DCE3EA;
  --border-400: #CBD5E1;
  --border-500: #BFC9D4;
  --border-600: #94A3B8;
  
/* Blue */
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-300: #93C5FD;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;

/* Green */
  --green-50: #ECFDF5;
  --green-100: #D1FAE5;
  --green-300: #A7F3D0;
  --green-400: #6EE7B7;
  --green-500: #34D399;
  --green-600: #10B981;

/* Orange */
  --orange-50: #FFF7ED;
  --orange-100: #FFEDD5;
  --orange-300: #FED7AA;
  --orange-400: #FDBA74;
  --orange-500: #FB923C;
  --orange-600: #F97316;

/* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px; 

/* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 2px 6px rgba(15, 23, 42, 0.05), 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 4px 10px rgba(15, 23, 42, 0.06), 0 24px 60px rgba(15, 23, 42, 0.10);
  --shadow-blue: 0 10px 30px rgba(59, 130, 246, 0.12);
  --shadow-green: 0 10px 30px rgba(16, 185, 129, 0.12);
  --shadow-orange: 0 10px 30px rgba(249, 115, 22, 0.12);
}

/*=================================
    Global
=================================*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(16,185,129,0.06), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #eef4f9 100%);
    color: var(--text-800);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/*=================================
    Header
=================================*/

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 92px;
}

.header-logo {
    height: 64px;
    width: auto;
}

.header-nav-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.header-nav-bar-a {
    padding: 12px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.header-nav-bar-a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-0);
}

.header-nav-bar-a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-0);
}

.header-nav-cta {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    box-shadow: var(--shadow-md);
}

.header-nav-cta:hover {
    transform: translateY(-1px);
    color: white;
}

/*=================================
    Hero
=================================*/

.home-main {
    padding: 32px 0 80px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 64px;
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-xl);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(59,130,246,0.12), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(16,185,129,0.10), transparent 26%),
        radial-gradient(circle at 60% 100%, rgba(249,115,22,0.10), transparent 28%);
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-section h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--text-900);
}

.hero-section p {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: 1.08rem;
    color: var(--text-600);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-800);
    border: 1px solid var(--border-200);
}

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

/*=================================
    Content
=================================*/

.content-section {
    margin-top: 28px;
}

.row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

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

.row-2,
.row-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.row-5 {
    grid-template-columns: 1fr;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-large {
    min-height: 320px;
}

.card-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    color: var(--text-500);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--text-900);
}

.card p {
    margin: 0;
    color: var(--text-600);
    font-size: 1rem;
}

.accent-blue {
    border-top: 4px solid var(--blue-400);
}

.accent-orange {
    border-top: 4px solid var(--orange-400);
}

.accent-green {
    border-top: 4px solid var(--green-500);
}

.card-benefits {
    padding: 34px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.benefit-item {
    padding: 22px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(180deg, rgba(248,250,252,0.95), rgba(241,245,249,0.95));
    border: 1px solid var(--border-200);
}

.benefit-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-900);
}

.benefit-item p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--text-600);
}

/*=================================
    Footer
=================================*/

.footer {
    padding: 10px 0 32px;
}

.footer-inner {
    padding: 24px 0 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer p {
    margin: 0;
    text-align: center;
    color: var(--text-500);
    font-size: 0.95rem;
}

/*=================================
    Responsive
=================================*/

@media (max-width: 1100px) {
    .row-2,
    .row-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .header-nav-bar {
        justify-content: center;
    }

    .hero-section {
        padding: 42px 28px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .hero-section {
        padding: 32px 20px;
        border-radius: var(--radius-2xl);
    }

    .card {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .header-logo {
        height: 54px;
    }

    .header-nav-bar-a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}


/*=================================
    About Me
=================================*/

.about-me-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;

    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 60px;
    align-items: start;
}

.aside-about-me {
    position: sticky;
    top: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    padding: 28px 22px;

    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(14px);
}

.img-about-me-aside {
    width: 160px;
    height: 160px;
    object-fit: cover;

    border-radius: 28px;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.daten-about-me-aside {
    display: flex;
    flex-direction: column;
    gap: 8px;

    text-align: center;
    color: var(--text-700);
    font-size: 0.95rem;
    line-height: 1.55;
}

.daten-about-me-aside span:first-child {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-900);
}

.daten-about-me-aside span:nth-child(2) {
    color: var(--text-600);
    font-weight: 500;
}

/*=================================
    Main About Me
=================================*/

.main-about-me {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-about-me > section {
    position: relative;
    overflow: hidden;

    padding: 30px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-about-me > section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.main-about-me > section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.main-about-me h2 {
    margin: 0 0 14px;
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-900);
}

.main-about-me h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--text-900);
}

.main-about-me p {
    margin: 0;
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.8;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/*=================================
    Section Accents
=================================*/

.main-about-me-section-1 {
    border-top: 4px solid var(--blue-400);
    padding: 42px 34px;
    min-height: 260px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 28%),
        rgba(255,255,255,0.82);
}

.main-about-me-section-1 h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 780px;
}

.main-about-me-section-1 p {
    max-width: 760px;
    font-size: 1.06rem;
}

.main-about-me-section-2 {
    border-top: 4px solid var(--orange-400);
}

.main-about-me-section-3 {
    border-top: 4px solid var(--green-500);
}

.main-about-me-section-4 {
    border-top: 4px solid var(--blue-400);
}

.main-about-me-section-5 {
    border-top: 4px solid var(--orange-400);
}

.main-about-me-section-7 {
    border-top: 4px solid var(--green-500);
}

.main-about-me-section-8 {
    border-top: 4px solid var(--blue-400);
}

.main-about-me-section-9 {
    border-top: 4px solid var(--green-500);
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(236,253,245,0.88));
}

/*=================================
    Value Cards
=================================*/

.main-about-me-section-6 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.main-about-me-section-6::after {
    display: none;
}

.main-about-me-section-6:hover {
    transform: none;
    box-shadow: none;
}

.value-card {
    padding: 26px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.value-card-blue {
    border-top: 4px solid var(--blue-400);
}

.value-card-orange {
    border-top: 4px solid var(--orange-400);
}

.value-card-green {
    border-top: 4px solid var(--green-500);
}

/*=================================
    CTA Actions
=================================*/

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/*=================================
    Benefit Cards
=================================*/

.main-about-me-section-10 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;

    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.main-about-me-section-10::after {
    display: none;
}

.main-about-me-section-10:hover {
    transform: none;
    box-shadow: none;
}

.benefit-card {
    padding: 24px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(180deg, rgba(248,250,252,0.96), rgba(241,245,249,0.96));
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benefit-card-blue {
    border-top: 4px solid var(--blue-400);
}

.benefit-card-orange {
    border-top: 4px solid var(--orange-400);
}

.benefit-card-green {
    border-top: 4px solid var(--green-500);
}

.benefit-card-blue-dark {
    border-top: 4px solid var(--blue-500);
}

/*=================================
    Buttons
=================================*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-800);
    border: 1px solid var(--border-200);
}

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

/*=================================
    Responsive
=================================*/

@media (max-width: 1100px) {
    .about-me-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .main-about-me-section-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-me-layout {
        grid-template-columns: 1fr;
    }

    .aside-about-me {
        position: static;
        max-width: 100%;
    }

    .main-about-me-section-10 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-me-layout {
        width: min(100% - 24px, 1180px);
        gap: 20px;
        margin: 20px auto 40px;
    }

    .aside-about-me {
        padding: 22px 18px;
        border-radius: var(--radius-2xl);
    }

    .img-about-me-aside {
        width: 140px;
        height: 140px;
        border-radius: 22px;
    }

    .main-about-me > section {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .main-about-me-section-1 {
        padding: 30px 22px;
    }

    .main-about-me h2 {
        font-size: 1.45rem;
    }

    .main-about-me-section-1 h2 {
        font-size: 2rem;
    }
}


/*=================================
    Career
=================================*/

.career-main {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 60px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.career-main section {
    position: relative;
    overflow: hidden;

    padding: 30px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-main section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.career-main section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.career-main h2 {
    margin: 0 0 14px;
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-900);
}

.career-main p {
    margin: 0;
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.8;
}

/*=================================
    Badge
=================================*/

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/*=================================
    Hero
=================================*/

.career-hero {
    border-top: 4px solid var(--blue-400);
    padding: 42px 34px;
    min-height: 260px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 28%),
        rgba(255,255,255,0.82);
}

.career-hero h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 820px;
}

.career-hero p {
    max-width: 760px;
    font-size: 1.06rem;
}

/*=================================
    Profile
=================================*/

.career-profile {
    border-top: 4px solid var(--orange-400);
}

/*=================================
    Timeline
=================================*/

.career-timeline {
    border-top: 4px solid var(--green-500);
    text-align: center;
}

.career-timeline h2 {
    text-align: left;
    margin-bottom: 20px;
}

.career-timeline-img {
    display: block;
    width: 100%;
    max-width: 1020px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

/*=================================
    Skills
=================================*/

.career-skills {
    border-top: 4px solid var(--blue-400);
}

.career-skills-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.career-skills-list li {
    padding: 18px 20px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(
        180deg,
        rgba(248,250,252,0.96),
        rgba(241,245,249,0.96)
    );
    border: 1px solid var(--border-200);
    color: var(--text-700);
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

/*=================================
    Extra
=================================*/

.career-extra {
    border-top: 4px solid var(--orange-400);
}

/*=================================
    CTA
=================================*/

.career-cta {
    border-top: 4px solid var(--green-500);
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.88),
        rgba(236,253,245,0.88)
    );
}

/*=================================
    Responsive
=================================*/

@media (max-width: 900px) {
    .career-skills-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .career-main {
        width: min(100% - 24px, 1180px);
        margin: 20px auto 40px;
        gap: 20px;
    }

    .career-main section {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .career-hero {
        padding: 30px 22px;
        min-height: auto;
    }

    .career-main h2 {
        font-size: 1.45rem;
    }

    .career-hero h2 {
        font-size: 2rem;
    }

    .career-skills-list li {
        padding: 16px 18px;
    }
}


/*=================================
    Projects
=================================*/

.projects-main {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 60px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*=================================
    Projects Hero
=================================*/

.projects-hero {
    position: relative;
    overflow: hidden;

    padding: 42px 34px;
    min-height: 240px;

    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-top: 4px solid var(--blue-400);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 28%),
        rgba(255,255,255,0.82);
    box-shadow: var(--shadow-xl);
}

.projects-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.projects-hero > * {
    position: relative;
    z-index: 1;
}

.projects-hero h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-900);
    max-width: 820px;
}

.projects-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--text-600);
    font-size: 1.06rem;
    line-height: 1.8;
}

/*=================================
    Grid
=================================*/

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/*=================================
    Project Cards
=================================*/

.project-card,
.project-card-img {
    position: relative;
    overflow: hidden;

    padding: 30px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card::after,
.project-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.project-card:hover,
.project-card-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 4px solid var(--blue-400);
    min-height: 420px;
}

.project-card:nth-of-type(3) {
    border-top-color: var(--orange-400);
}

.project-card:nth-of-type(5) {
    border-top-color: var(--green-500);
}

.project-card h2 {
    position: relative;
    z-index: 1;

    margin: 0 0 14px;
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-900);
}

.project-card p {
    position: relative;
    z-index: 1;

    margin: 0;
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.8;
}

.project-card-label {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    margin-bottom: 16px;

    border-radius: var(--radius-full);
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-tags {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.project-tags span {
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.08);
    color: var(--text-700);
    font-size: 0.85rem;
    font-weight: 500;
}

.project-link {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    width: fit-content;
    text-decoration: none;
}

/*=================================
    Project Image Cards
=================================*/

.project-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 20px;
}

.project-image {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;

    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    background: var(--bg-200);
}

/*=================================
    Reusable Badge / Buttons
=================================*/

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/*=================================
    Responsive
=================================*/

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card,
    .project-card-img {
        min-height: auto;
    }

    .project-image {
        height: auto;
        max-height: 420px;
    }
}

@media (max-width: 640px) {
    .projects-main {
        width: min(100% - 24px, 1180px);
        margin: 20px auto 40px;
        gap: 20px;
    }

    .projects-hero {
        padding: 30px 22px;
        min-height: auto;
        border-radius: var(--radius-2xl);
    }

    .project-card,
    .project-card-img {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .projects-hero h2 {
        font-size: 2rem;
    }

    .project-card h2 {
        font-size: 1.45rem;
    }

    .project-image {
        border-radius: var(--radius-xl);
    }
}


/*=================================
    Blog
=================================*/

.blog-main {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 60px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*=================================
    Blog Hero
=================================*/

.blog-hero {
    position: relative;
    overflow: hidden;

    padding: 42px 34px;
    min-height: 260px;

    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-top: 4px solid var(--blue-400);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 28%),
        rgba(255,255,255,0.82);
    box-shadow: var(--shadow-xl);
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.blog-hero > * {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-900);
    max-width: 820px;
}

.blog-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--text-600);
    font-size: 1.06rem;
    line-height: 1.8;
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/*=================================
    Blog Overview Layout
=================================*/

.blog-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    
}

/*=================================
    Featured Post
=================================*/

.blog-featured {
    position: relative;
    overflow: hidden;
    width: 180%;

    text-align: center;

    padding: 30px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255,255,255,0.88);
    border-top: 4px solid var(--blue-400);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-meta {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    color: var(--text-500);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-dot {
    color: var(--text-400);
}

.blog-featured-visual {
    position: relative;
    z-index: 1;

    height: 260px;
    margin-bottom: 24px;
    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-200);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.10), transparent 30%),
        linear-gradient(180deg, rgba(248,250,252,0.95), rgba(241,245,249,0.92));
    box-shadow: var(--shadow-md);
}

.blog-post-1-img {
    height: 250px;
    border-radius: var(--radius-2xl);
}

.blog-featured-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line {
    display: block;
    height: 8px;
    border-radius: var(--radius-full);
}

.line-blue {
    width: 72px;
    background: var(--blue-500);
}

.line-light {
    width: 120px;
    background: rgba(59,130,246,0.28);
}

.line-soft {
    width: 88px;
    background: rgba(15,23,42,0.12);
}

.blog-featured h2 {
    position: relative;
    z-index: 1;

    margin: 0 0 14px;
    font-size: 1.95rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-900);
    max-width: 760px;
}

.blog-featured p {
    position: relative;
    z-index: 1;

    margin: 0;
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 720px;
}

.blog-read-btn {
    margin-top: 24px;
}

/*=================================
    Blog Grid
=================================*/

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card {
    position: relative;
    overflow: hidden;

    padding: 26px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-card-blue {
    border-top: 4px solid var(--blue-400);
}

.blog-card-orange {
    border-top: 4px solid var(--orange-400);
}

.blog-card-green {
    border-top: 4px solid var(--green-500);
}

.blog-card h3 {
    position: relative;
    z-index: 1;

    margin: 0 0 12px;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-900);
}

.blog-card p {
    position: relative;
    z-index: 1;

    margin: 0;
    color: var(--text-600);
    font-size: 0.98rem;
    line-height: 1.75;
}

.blog-card-link {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    margin-top: 18px;

    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
}

.blog-card-link:hover {
    transform: translateX(2px);
    color: var(--green-600);
}

/*=================================
    Blog Responsive
=================================*/

@media (max-width: 900px) {
    .blog-overview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .blog-main {
        width: min(100% - 24px, 1180px);
        margin: 20px auto 40px;
        gap: 20px;
    }

    .blog-hero {
        padding: 30px 22px;
        min-height: auto;
        border-radius: var(--radius-2xl);
    }

    .blog-featured,
    .blog-card {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-featured h2 {
        font-size: 1.55rem;
    }

    .blog-card h3 {
        font-size: 1.15rem;
    }

    .blog-featured-visual {
        height: 200px;
        border-radius: var(--radius-xl);
    }
}


/*=================================
    Blog Post
=================================*/

.blog-post-main {
    width: min(980px, calc(100% - 40px));
    margin: 28px auto 60px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*=================================
    Blog Post Hero
=================================*/

.blog-post-hero {
    position: relative;
    overflow: hidden;

    padding: 42px 34px;
    min-height: 260px;

    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-top: 4px solid var(--blue-400);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 28%),
        rgba(255,255,255,0.82);
    box-shadow: var(--shadow-xl);
}

.blog-post-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 35%);
    pointer-events: none;
}

.blog-post-hero > * {
    position: relative;
    z-index: 1;
}

.blog-post-title {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-900);
}

.blog-post-subtitle {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-600);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;

    color: var(--text-500);
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-post-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-100);
    border: 1px solid var(--border-200);
    color: var(--text-600);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-post-meta-dot {
    color: var(--text-400);
}

/*=================================
    Blog Post Cover
=================================*/

.blog-post-cover {
    position: relative;
    overflow: hidden;

    min-height: 320px;
    padding: 24px;

    border-radius: var(--radius-3xl);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.10), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(241,245,249,0.94));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
}

.blog-post-cover img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.blog-post-cover-placeholder {
    display: flex;
    align-items: flex-end;
    min-height: 320px;
    padding: 28px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-200);
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.10), transparent 34%),
        radial-gradient(circle at bottom right, rgba(16,185,129,0.08), transparent 30%),
        linear-gradient(180deg, rgba(248,250,252,0.96), rgba(241,245,249,0.96));
}

.blog-post-cover-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-post-cover-line {
    display: block;
    height: 8px;
    border-radius: var(--radius-full);
}

.blog-post-cover-line-1 {
    width: 72px;
    background: var(--blue-500);
}

.blog-post-cover-line-2 {
    width: 120px;
    background: rgba(59,130,246,0.28);
}

.blog-post-cover-line-3 {
    width: 88px;
    background: rgba(15,23,42,0.12);
}

/*=================================
    Blog Post Content
=================================*/

.blog-post-content {
    position: relative;
    overflow: hidden;

    padding: 34px;
    border-radius: var(--radius-3xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: var(--shadow-lg);
}

.blog-post-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 35%);
    pointer-events: none;
}

.blog-post-content > * {
    position: relative;
    z-index: 1;
}

.blog-post-content h2 {
    margin: 38px 0 14px;
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-900);
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content h3 {
    margin: 28px 0 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text-900);
}

.blog-post-content p {
    margin: 0 0 18px;
    color: var(--text-600);
    font-size: 1rem;
    line-height: 1.9;
}

.blog-post-content strong {
    color: var(--text-800);
}

.blog-post-content a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
}

.blog-post-content a:hover {
    color: var(--green-600);
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
    color: var(--text-600);
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.blog-post-content blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 4px solid var(--blue-400);
    border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
    background: linear-gradient(180deg, rgba(239,246,255,0.95), rgba(248,250,252,0.95));
    color: var(--text-700);
    box-shadow: var(--shadow-sm);
}

.blog-post-content hr {
    margin: 32px 0;
    border: none;
    border-top: 1px solid var(--border-200);
}

/*=================================
    Blog Highlight Box
=================================*/

.blog-post-highlight {
    margin: 28px 0;
    padding: 22px 24px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(180deg, rgba(248,250,252,0.96), rgba(241,245,249,0.96));
    border: 1px solid var(--border-200);
    box-shadow: var(--shadow-md);
}

.blog-post-highlight-blue {
    border-top: 4px solid var(--blue-400);
}

.blog-post-highlight-orange {
    border-top: 4px solid var(--orange-400);
}

.blog-post-highlight-green {
    border-top: 4px solid var(--green-500);
}

.blog-post-highlight h3,
.blog-post-highlight h4 {
    margin: 0 0 10px;
    color: var(--text-900);
}

.blog-post-highlight p:last-child {
    margin-bottom: 0;
}

/*=================================
    Blog CTA
=================================*/

.blog-post-cta {
    position: relative;
    overflow: hidden;

    padding: 30px;
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(255,255,255,0.88);
    border-top: 4px solid var(--green-500);
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.88),
        rgba(236,253,245,0.88)
    );
    box-shadow: var(--shadow-lg);
}

.blog-post-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 35%);
    pointer-events: none;
}

.blog-post-cta > * {
    position: relative;
    z-index: 1;
}

.blog-post-cta h2 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-900);
}

.blog-post-cta p {
    margin: 0;
    color: var(--text-600);
    line-height: 1.8;
}

.blog-post-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}



/*=================================
    Blog Backlink
=================================*/

.blog-post-backlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    text-decoration: none;
    font-weight: 600;
    color: var(--text-600);
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-post-backlink:hover {
    color: var(--blue-600);
    transform: translateX(-2px);
}

/*=================================
    Blog Post Responsive
=================================*/

@media (max-width: 640px) {
    .blog-post-main {
        width: min(100% - 24px, 980px);
        margin: 20px auto 40px;
        gap: 20px;
    }

    .blog-post-hero,
    .blog-post-cover,
    .blog-post-content,
    .blog-post-cta {
        padding: 22px;
        border-radius: var(--radius-2xl);
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-subtitle,
    .blog-post-content p,
    .blog-post-content li {
        font-size: 0.98rem;
    }

    .blog-post-content h2 {
        font-size: 1.45rem;
    }

    .blog-post-content h3 {
        font-size: 1.08rem;
    }

    .blog-post-cover,
    .blog-post-cover-placeholder {
        min-height: 220px;
    }

    .blog-post-cover-placeholder {
        padding: 20px;
        border-radius: var(--radius-xl);
    }
}


/* =========================
   Kontaktbereich
   ========================= */

.jp-contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  color: #1a1a1a;
}

.jp-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jp-contact-header {
  max-width: 760px;
  margin-bottom: 50px;
}

.jp-contact-kicker {
  display: flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(73, 163, 255, 0.10);
  color: #49a3ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.jp-contact-header h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
}

.jp-contact-header p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

.jp-contact-card,
.jp-contact-form-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.jp-contact-card {
  padding: 32px;
  margin-bottom: 24px;
}

.jp-contact-card h2,
.jp-contact-card h3 {
  margin: 0 0 14px;
  color: #0f172a;
  line-height: 1.3;
}

.jp-contact-card h2 {
  font-size: 1.5rem;
}

.jp-contact-card h3 {
  font-size: 1.2rem;
}

.jp-contact-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.jp-contact-card-accent {
  background: linear-gradient(135deg, #49a3ff 0%, #2563eb 100%);
  border: none;
}

.jp-contact-card-accent h3,
.jp-contact-card-accent p {
  color: #ffffff;
}

.jp-contact-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.jp-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.jp-contact-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.jp-contact-list strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.jp-contact-list span,
.jp-contact-list a {
  font-size: 1rem;
  color: #475569;
  text-decoration: none;
}

.jp-contact-list a:hover {
  color: #2563eb;
}

.jp-contact-form-wrap {
  padding: 32px;
}

.jp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.jp-form-group {
  display: flex;
  flex-direction: column;
}

.jp-form-group label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.jp-form-group input,
.jp-form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  background: #f8fafc;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.jp-form-group input:focus,
.jp-form-group textarea:focus {
  outline: none;
  border-color: #49a3ff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(73, 163, 255, 0.12);
}

.jp-form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.jp-contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #49a3ff 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.jp-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.28);
}

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

@media (max-width: 900px) {
  .jp-contact-grid {
    grid-template-columns: 1fr;
  }

  .jp-form-row {
    grid-template-columns: 1fr;
  }

  .jp-contact-section {
    padding: 70px 20px;
  }

  .jp-contact-card,
  .jp-contact-form-wrap {
    padding: 24px;
  }
}