/* CVStart.ch - Schweizer Lebenslauf Platform CSS */
:root {
    --ink: #0f172a;
    --ink-light: #1e293b;
    --muted: #475569;
    --paper: #f8fafc;
    --surface: #ffffff;
    --surface-alt: #f1f5f9;
    --line: #cbd5e1;
    --line-light: #e2e8f0;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --green: #15803d;
    --green-light: #dcfce7;
    --blue: #2563eb;
    --radius: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background-color: #f8fafc !important;
    color: #0f172a !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.shell { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 50; padding: .75rem 1.25rem; background: #0f172a; color: #fff; border-radius: .5rem; font-weight: bold; }
.skip-link:focus { top: 1rem; }

/* Header & Nav */
.site-header {
    background-color: #ffffff !important;
    border-bottom: 2px solid #e2e8f0 !important;
    position: sticky;
    top: 0;
    z-index: 40;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 4.75rem;
}
.brand {
    display: inline-flex;
    flex-direction: column;
    color: #0f172a !important;
    text-decoration: none;
}
.brand-logo-wrap {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #0f172a !important;
}
.brand-logo-wrap.text-white {
    color: #ffffff !important;
}
.swiss-cross {
    background-color: #dc2626 !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
}
.brand-logo-wrap span { color: #dc2626; }
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155 !important;
}
.desktop-nav > a:hover,
.desktop-nav > .nav-dropdown-wrap > .nav-dropdown-toggle:hover { color: #dc2626 !important; }

/* Ratgeber Dropdown */
.nav-dropdown-wrap {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155 !important;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}
.nav-dropdown-toggle .drop-arrow {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
    display: inline-block;
}
.nav-dropdown-wrap:hover .drop-arrow,
.nav-dropdown-wrap.open .drop-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;            /* köprü boşluk yok — hover sürekli */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    min-width: 220px;
    z-index: 100;
    padding: 0.75rem 0.5rem 0.5rem; /* üstte görsel boşluk padding ile */
    white-space: nowrap;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155 !important;
    transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
    background-color: #f1f5f9 !important;
    color: #dc2626 !important;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0.5rem;
    transition: background 0.15s;
}
.hamburger-btn:hover { background-color: #f1f5f9 !important; }
.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0f172a !important;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    background-color: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    padding: 1rem 0 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner { padding: 0 1rem; }
.mobile-nav-inner a,
.mobile-nav-inner .mobile-nav-group-title {
    display: block;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a !important;
    border-radius: 0.5rem;
    text-decoration: none;
}
.mobile-nav-inner a:hover { background-color: #f1f5f9 !important; color: #dc2626 !important; }
.mobile-nav-group { margin-bottom: 0.25rem; }
.mobile-nav-group-title {
    color: #64748b !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.75rem 0.25rem !important;
}
.mobile-nav-group-links a {
    padding-left: 1.25rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
}
.mobile-nav-divider { height: 1px; background-color: #e2e8f0 !important; margin: 0.5rem 0; }
.mobile-nav-cta {
    display: block;
    margin: 1rem 0.75rem 0;
    padding: 0.75rem 1rem;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    border-radius: 0.5rem;
    font-weight: 800;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .desktop-nav { display: none !important; }
    .hamburger-btn { display: flex !important; }
    .nav-cta { display: none !important; }
}
@media (max-width: 600px) {
    .brand-logo-wrap { font-size: 1.25rem; }
    .lang-switch { display: none; }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.lang-switch {
    display: flex;
    align-items: center;
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.5rem;
    padding: 0.2rem;
    gap: 0.15rem;
}
.lang-btn {
    padding: 0.25rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 0.35rem;
    color: #475569 !important;
    transition: all 0.15s ease;
}
.lang-btn:hover {
    color: #0f172a !important;
}
.lang-btn.active {
    background-color: #dc2626 !important;
    color: #ffffff !important;
}

.nav-cta, .btn-primary {
    border-radius: 0.5rem;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    padding: 0.65rem 1.15rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.25);
}
.nav-cta:hover, .btn-primary:hover {
    background-color: #b91c1c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.35);
}
.btn-secondary {
    border-radius: 0.5rem;
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #cbd5e1 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    padding: 0.65rem 1.15rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: #f1f5f9 !important;
    border-color: #94a3b8 !important;
}

/* HERO SECTION */
.cv-hero {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 3.5rem 0 4.5rem;
}
.cv-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fee2e2 !important;
    color: #b91c1c !important;
    border: 1px solid #fecaca !important;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}
.cv-hero h1 {
    font-size: clamp(2.3rem, 4.5vw, 3.75rem);
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: #0f172a !important;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.hero-highlight {
    color: #dc2626 !important;
}
.hero-lead {
    font-size: 1.18rem;
    color: #334155 !important;
    line-height: 1.6;
    margin: 0 0 2rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-actions .btn-primary {
    font-size: 1.05rem;
    padding: 0.85rem 1.5rem;
}
.hero-actions .btn-secondary {
    font-size: 1.05rem;
    padding: 0.85rem 1.5rem;
}
.proof-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: #15803d !important;
    font-size: 0.92rem;
    font-weight: 750;
}
.proof-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Document Mockup */
.hero-document-card {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
}
.hero-document-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}
.hero-document-stamp {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

/* 3 EDITORS SECTION */
.section-editors {
    padding: 4.5rem 0;
    background-color: #f8fafc !important;
}
.section-header-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}
.section-tag {
    display: inline-block;
    color: #dc2626 !important;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: #0f172a !important;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #475569 !important;
    margin: 0;
}

.editors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.editor-card-box {
    background-color: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.editor-card-box:hover {
    border-color: #dc2626 !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.editor-card-box.highlight {
    border-color: #dc2626 !important;
    background-color: #ffffff !important;
}
.editor-card-num {
    font-size: 0.85rem;
    font-weight: 900;
    color: #dc2626 !important;
    background-color: #fee2e2 !important;
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}
.editor-card-icon {
    font-size: 2.25rem;
    color: #dc2626 !important;
    margin-bottom: 1rem;
}
.editor-card-title {
    font-size: 1.45rem;
    font-weight: 850;
    color: #0f172a !important;
    margin: 0 0 0.75rem;
}
.editor-card-desc {
    font-size: 0.95rem;
    color: #475569 !important;
    margin: 0 0 1.5rem;
    line-height: 1.55;
}
.editor-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}
.editor-card-features li {
    font-size: 0.9rem;
    color: #1e293b !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.editor-card-features li i {
    color: #15803d;
}
.editor-card-btn {
    margin-top: auto;
    width: 100%;
}

/* 30 PROFESSIONS SECTION */
.section-professions {
    padding: 4.5rem 0;
    background-color: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
.professions-wrapper {
    background-color: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 1.25rem;
    padding: 2.5rem;
}
.professions-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: #0f172a !important;
    color: #ffffff !important;
    border-radius: 0.85rem;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}
.professions-banner h3 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    color: #ffffff !important;
}
.professions-banner p {
    margin: 0;
    color: #94a3b8 !important;
    font-size: 0.95rem;
}
.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.75rem;
}
.profession-pill {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.6rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #1e293b !important;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.2s ease;
}
.profession-pill:hover {
    border-color: #dc2626 !important;
    background-color: #fee2e2 !important;
    color: #b91c1c !important;
    transform: translateY(-2px);
}
.profession-pill i {
    color: #dc2626 !important;
    font-size: 1.1rem;
}

/* TEMPLATES SHOWCASE */
.section-templates-showcase {
    padding: 4.5rem 0;
    background-color: #f8fafc !important;
}
.templates-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.template-item-card {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.template-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #dc2626 !important;
}
.template-img-holder {
    width: 100%;
    aspect-ratio: 0.71;
    overflow: hidden;
    background-color: #f1f5f9 !important;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}
.template-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}
.template-item-card:hover .template-img-holder img {
    transform: scale(1.03);
}
.template-badge-free {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #15803d !important;
    color: #ffffff !important;
    padding: 0.25rem 0.65rem;
    border-radius: 0.35rem;
    font-size: 0.75rem;
    font-weight: 800;
}
.template-info-box {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff !important;
}
.template-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a !important;
    margin: 0;
}
.template-meta {
    font-size: 0.8rem;
    color: #64748b !important;
    font-weight: 600;
}

/* SWISS STANDARDS (RATGEBER) */
.section-swiss-rules {
    padding: 4.5rem 0;
    background-color: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
}
.swiss-rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.swiss-rule-card {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.85rem;
    padding: 1.5rem;
}
.swiss-rule-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    background-color: #dc2626 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.swiss-rule-card h4 {
    font-size: 1.15rem;
    color: #0f172a !important;
    margin: 0 0 0.5rem;
}
.swiss-rule-card p {
    font-size: 0.9rem;
    color: #475569 !important;
    margin: 0;
    line-height: 1.5;
}

/* FAQ SECTION */
.section-faq {
    padding: 4.5rem 0;
    background-color: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-item-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff !important;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a !important;
}
.faq-item-header:hover {
    color: #dc2626 !important;
}
.faq-chevron {
    transition: transform 0.2s ease;
    color: #64748b;
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #dc2626;
}
.faq-item-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.98rem;
    color: #334155 !important;
    line-height: 1.6;
    background-color: #ffffff !important;
    border-top: 1px solid #f1f5f9;
}
.faq-item.active .faq-item-body {
    display: block;
}

/* FOOTER */
.site-footer {
    background-color: #0f172a !important;
    color: #f8fafc !important;
    padding: 4.5rem 0 2rem;
    border-top: 2px solid #1e293b !important;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-desc {
    max-width: 360px;
    line-height: 1.6;
    margin: 1rem 0 0;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.65rem;
}
.footer-col ul li a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cv-hero-grid { grid-template-columns: 1fr; }
    .editors-grid { grid-template-columns: 1fr; }
    .templates-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .swiss-rules-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .desktop-nav { display: none; }
    .templates-preview-grid { grid-template-columns: 1fr; }
    .swiss-rules-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .professions-banner { flex-direction: column; align-items: flex-start; }
}
