@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* --- Reset & Variables --- */
:root {
    --bg-dark: #080b0e;
    --bg-card: #0e1217;
    --bg-card-hover: #151b22;
    --primary-gold: #d4af37;
    --primary-gold-hover: #f1c40f;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-border: rgba(212, 175, 55, 0.25);
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #111827;
    --text-dark-muted: #4b5563;
    --bg-light: #f9fafb;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --container-width: 1200px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

/* --- Layout Components --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: -1rem auto 4rem;
}

/* --- Header / Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 11, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-light);
}

.logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--primary-gold);
    font-weight: 400;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

.site-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.site-nav a:hover {
    color: var(--text-light);
}

.site-nav .nav-cta {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.site-nav .nav-cta:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
}

/* --- 1. HERO SECTION --- */
.hero-section {
    padding-top: 13rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.hero-verbs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-verbs .verb {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-gold);
    position: relative;
}

@media (min-width: 769px) {
    .hero-verbs {
        flex-wrap: nowrap;
    }

    .hero-verbs .verb {
        font-size: clamp(1.1rem, 2.4vw, 1.8rem);
        white-space: nowrap;
    }
}

.hero-verbs .verb:not(:last-child)::after {
    content: "•";
    font-style: normal;
    color: rgba(255, 255, 255, 0.2);
    margin-left: 1.2rem;
}

.hero-lead {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-lead .highlight {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin: 0.75rem 0;
}

.hero-lead .sub-points {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, transparent 20%, var(--bg-dark) 95%);
    pointer-events: none;
}

/* --- 2. PROBLÉMAFELISMERÉS --- */
.problem-section {
    background: radial-gradient(circle at 10% 20%, #0d1218 0%, var(--bg-dark) 70%);
}

.section-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.question-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--primary-gold);
    border-radius: 0 4px 4px 0;
    transition: var(--transition-smooth);
}

.question-item:hover {
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(10px);
}

.question-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.question-text {
    font-size: 1.15rem;
    font-weight: 350;
    color: var(--text-light);
}

.problem-outro {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-top: 4rem;
}

/* --- 3. MI AZ INTÉZŐ? --- */
.about-section {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background-color: var(--bg-dark);
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.identity-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.identity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-muted);
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.identity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.identity-card.negative:hover::before {
    background: var(--primary-gold);
    opacity: 1;
}

.card-inner .prefix {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.card-inner h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-statement {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: radial-gradient(circle at 50% 50%, #0e1218, var(--bg-dark));
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.statement-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: -150px;
    left: calc(50% - 150px);
    pointer-events: none;
}

.statement-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.statement-details p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- 4. HOGYAN DOLGOZUNK (Process Flow) --- */
.process-section {
    background: radial-gradient(circle at 90% 80%, #0c1014 0%, var(--bg-dark) 80%);
    overflow: hidden;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 6rem;
    position: relative;
}

.process-progress-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), var(--primary-gold), rgba(212, 175, 55, 0.05));
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid var(--gold-border);
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--gold-glow);
    transition: var(--transition-smooth);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 5. MIKOR TUDUNK SEGÍTENI? (Élethelyzetek) --- */
.scenarios-section {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
}

.scenario-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 2.2rem;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.scenario-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.scenario-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
}

.scenario-cta {
    text-align: center;
    margin-top: 5rem;
}

.scenario-cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* --- 6. MIBEN TUDUNK SEGÍTENI? (Megoldási területek - 8 cards) --- */
.areas-section {
    background-color: var(--bg-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.area-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    height: 320px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.area-card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.area-content {
    padding: 3rem 2.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.area-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.area-card h3 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    opacity: 0.85;
    transition: var(--transition-smooth);
}


/* --- 7. MIT JELENT A FAMILY OFFICE SZEMLÉLET? (Light Theme) --- */
.philosophy-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.philosophy-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
}

.philosophy-quote {
    max-width: 750px;
    margin: 0 auto 3.5rem;
    position: relative;
}

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1.55;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.philosophy-quote::before {
    content: "“";
    position: absolute;
    top: -50px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: 10rem;
    color: #e5e7eb;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.philosophy-outro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-dark-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- 8. MIÉRT AZ INTÉZŐ? --- */
.values-section {
    background-color: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.value-item {
    display: flex;
    flex-direction: column;
}

.value-icon {
    color: var(--primary-gold);
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 8b. SZAKÉRTŐK --- */
.experts-section {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.expert-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.expert-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.expert-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.expert-card:hover .expert-image-wrapper {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.expert-role {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-weight: 400;
}

/* --- 9. ZÁRÓ GONDOLAT --- */
.editorial-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 100%);
    border-top: 1px solid rgba(255,255,255,0.02);
    padding: 10rem 0;
}

.editorial-quote {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .editorial-quote .quote-line-1 {
        display: inline-block;
        white-space: nowrap;
    }
}

.editorial-quote span {
    color: var(--primary-gold);
    font-style: italic;
}

.editorial-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- 10. CTA (Dark Contrast) --- */
.cta-section {
    background-color: #05070a;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.cta-button-wrapper {
    margin-bottom: 4rem;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* --- Footer --- */
.site-footer {
    background-color: #030406;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo-tagline {
    font-size: 0.6rem;
}

.footer-brand .logo-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-container a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-container a:hover {
    color: var(--text-light);
}

.credits {
    letter-spacing: 0.05em;
}

/* --- Scroll Animations --- */
.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.question-item:nth-child(2) { transition-delay: 0.1s; }
.question-item:nth-child(3) { transition-delay: 0.2s; }
.question-item:nth-child(4) { transition-delay: 0.3s; }
.question-item:nth-child(5) { transition-delay: 0.4s; }

.identity-card:nth-child(2) { transition-delay: 0.1s; }
.identity-card:nth-child(3) { transition-delay: 0.2s; }
.identity-card:nth-child(4) { transition-delay: 0.3s; }

.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }

.scenario-card:nth-child(2) { transition-delay: 0.1s; }
.scenario-card:nth-child(3) { transition-delay: 0.2s; }
.scenario-card:nth-child(4) { transition-delay: 0.3s; }
.scenario-card:nth-child(5) { transition-delay: 0.4s; }
.scenario-card:nth-child(6) { transition-delay: 0.5s; }
.scenario-card:nth-child(7) { transition-delay: 0.6s; }

.area-card:nth-child(2) { transition-delay: 0.1s; }
.area-card:nth-child(3) { transition-delay: 0.2s; }
.area-card:nth-child(4) { transition-delay: 0.3s; }
.area-card:nth-child(5) { transition-delay: 0.4s; }
.area-card:nth-child(6) { transition-delay: 0.5s; }
.area-card:nth-child(7) { transition-delay: 0.6s; }
.area-card:nth-child(8) { transition-delay: 0.7s; }

.value-item:nth-child(2) { transition-delay: 0.1s; }
.value-item:nth-child(3) { transition-delay: 0.2s; }
.value-item:nth-child(4) { transition-delay: 0.3s; }

.expert-card:nth-child(2) { transition-delay: 0.1s; }
.expert-card:nth-child(3) { transition-delay: 0.2s; }
.expert-card:nth-child(4) { transition-delay: 0.3s; }


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-verbs {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-progress-line {
        left: 30px;
        top: 10%;
        width: 1px;
        height: 80%;
        background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--primary-gold), rgba(212, 175, 55, 0.05));
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }
    
    .step-num {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .site-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 3rem 2rem;
        display: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    
    .site-nav.active {
        display: block;
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .site-nav ul li {
        width: 100%;
    }
    
    .site-nav .nav-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .editorial-quote {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .philosophy-title {
        font-size: 2.2rem;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.4rem;
    }
}

/* --- Kapcsolati űrlap Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: auto;
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.modal-box h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 1.75rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: var(--transition-smooth);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form .btn {
    width: 100%;
    border: none;
    font-size: 1rem;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    min-height: 1.2em;
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

.form-status.success {
    color: #4ade80;
}

.form-status.error {
    color: #f87171;
}

.recaptcha-note {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.recaptcha-note a {
    color: var(--text-muted);
    text-decoration: underline;
}

.recaptcha-note a:hover {
    color: var(--primary-gold);
}

@media (max-width: 480px) {
    .modal-box {
        padding: 2rem 1.25rem 1.5rem;
    }
}
