/* ============================================
   ERKÖZ — Design System
   "Refined Professional Trust" aesthetic
   Navy + Gold, Playfair Display + DM Sans
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --navy:        #0f1628;
    --navy-light:  #1a2238;
    --warm-white:  #faf9f6;
    --gold:        #c9a96e;
    --gold-light:  #d4b87a;
    --gold-dark:   #b8964f;
    --slate:       #3d4654;
    --slate-light: #5a6475;
    --gray-light:  #e8e6e1;
    --white:       #ffffff;
    --black:       #000000;
    --error:       #c0392b;
    --success:     #27ae60;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --navbar-height: 80px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate);
    background-color: var(--warm-white);
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

a:hover {
    color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- Section ---------- */
.section {
    padding: var(--space-4xl) 0;
}

.section--warm {
    background-color: var(--warm-white);
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-2xl);
    color: var(--navy);
}

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

.section__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn--gold {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}

.btn--outline:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ---------- Tags ---------- */
.tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background-color: var(--gray-light);
    color: var(--slate);
    border-radius: var(--radius-xl);
    margin-right: var(--space-xs);
    margin-bottom: var(--space-xs);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy);
    color: var(--white);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-banner__text p {
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--gray-light);
}

.cookie-banner__text p:first-child {
    color: var(--white);
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-banner .btn--outline {
    color: var(--gray-light);
    border-color: var(--slate-light);
}

.cookie-banner .btn--outline:hover {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all var(--duration) var(--ease);
    background: transparent;
}

.navbar.is-scrolled {
    background: rgba(15, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.navbar__logo {
    height: 56px;
    width: auto;
    border-radius: 4px;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.navbar__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--duration) var(--ease);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
}

.navbar__link:hover {
    color: var(--white);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__cta {
    z-index: 1001;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
    transform-origin: center;
}

.navbar__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.navbar__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.navbar__overlay.is-open {
    opacity: 1;
}

.navbar__overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-2xl);
}

.navbar__overlay-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 600;
}

.navbar__overlay-link:hover {
    color: var(--gold);
}

.navbar__overlay-cta {
    margin-top: var(--space-xl);
    font-size: 1.1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: calc(100vh - var(--navbar-height));
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
    line-height: 1.6;
}

.hero__visual {
    position: relative;
    height: 400px;
    z-index: 1;
}

.hero__deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.15;
}

.hero__deco::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-lg);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero__badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero__badge--1 { top: 15%; right: 10%; }
.hero__badge--2 { bottom: 30%; left: 5%; }
.hero__badge--3 { bottom: 10%; right: 15%; }

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about__text h2 {
    margin-bottom: var(--space-xl);
}

.about__text p {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: var(--space-md);
}

.about__quote {
    position: relative;
}

.about__quote blockquote {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    position: relative;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}

.about__photo {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.about__photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}


.quote-en {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.quote-author {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: right;
}

.quote-hu {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
}
.about__quote blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline__item {
    position: relative;
    padding-left: 72px;
    padding-bottom: var(--space-2xl);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--navy);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline__icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.timeline__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-light);
    transition: box-shadow var(--duration) var(--ease);
}

.timeline__card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.timeline__phase-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.timeline__phase-desc {
    color: var(--slate-light);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.timeline__services {
    margin-bottom: var(--space-lg);
}

/* ============================================
   QUIZ
   ============================================ */
.quiz {
    border-top: 1px solid var(--gray-light);
    padding-top: var(--space-lg);
    margin-top: var(--space-md);
}

.quiz[hidden] {
    display: none;
}

.quiz__question {
    margin-bottom: var(--space-lg);
}

.quiz__question[hidden] {
    display: none;
}

.quiz__q-text {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.quiz__options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quiz__option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-size: 0.9rem;
}

.quiz__option:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.quiz__option input[type="radio"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.quiz__option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.quiz__next[hidden] {
    display: none;
}

.quiz__result {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.quiz__result[hidden] {
    display: none;
}

.quiz__result-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    color: var(--gray-light);
}

.quiz__cta {
    margin-top: var(--space-md);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-light);
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card--featured {
    grid-column: 1 / -1;
    display: flex;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card__accent {
    width: 6px;
    background: var(--gold);
    flex-shrink: 0;
}

.service-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    background: rgba(201, 169, 110, 0.12);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-card__title i {
    color: var(--gold);
    font-size: 1.3rem;
}

.service-card__desc {
    color: var(--slate-light);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-card__list li {
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.9rem;
    color: var(--slate);
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.service-card--accent {
    border-left: 3px solid var(--gold);
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    padding: var(--space-xl);
}

.partners__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
}

.partners__item i {
    font-size: 2rem;
    color: var(--gold);
}

.partners__item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
}

.partners__item span {
    display: block;
    font-size: 0.85rem;
    color: var(--slate-light);
}

.partners__divider {
    width: 1px;
    height: 60px;
    background: var(--gray-light);
}

/* ============================================
   VALUES (MIÉRT ÉN?)
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-light);
    transition: all var(--duration) var(--ease);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    font-size: 1.4rem;
    color: var(--gold-dark);
}

.value-card__title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.value-card__desc {
    font-size: 0.9rem;
    color: var(--slate-light);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-light);
    transition: all var(--duration) var(--ease);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    width: 100%;
    height: 180px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.5rem;
}

.blog-card__body {
    padding: var(--space-lg);
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-bottom: var(--space-sm);
}

.blog-card__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-card__title a {
    color: var(--navy);
}

.blog-card__title a:hover {
    color: var(--gold-dark);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--slate-light);
    margin-bottom: var(--space-md);
}

.blog-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.blog-card__link:hover {
    color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--slate);
    transition: border-color var(--duration) var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group--checkbox label {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--slate);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group--checkbox input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__status {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.contact__status--success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.contact__status--error {
    background: rgba(192, 57, 43, 0.1);
    color: var(--error);
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.contact__info-card {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contact__info-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
}

.contact__detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact__detail:last-child {
    margin-bottom: 0;
}

.contact__detail i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-light);
    margin-bottom: var(--space-xs);
}

.contact__detail a,
.contact__detail span {
    color: var(--white);
    font-size: 0.95rem;
}

.contact__detail a:hover {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding-top: var(--space-3xl);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 36px;
    border-radius: 3px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all var(--duration) var(--ease);
}

.footer__social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.footer__bottom {
    padding: var(--space-lg) 0;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__visual {
        display: none;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --navbar-height: 64px;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .navbar__nav {
        display: none;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__overlay {
        display: block;
    }

    .hero {
        min-height: calc(100vh - 64px);
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

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

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

    .timeline::before {
        left: 16px;
    }

    .timeline__item {
        padding-left: 56px;
    }

    .timeline__marker {
        width: 34px;
        height: 34px;
    }

    .timeline__icon {
        font-size: 0.9rem;
    }

    .partners {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .partners__divider {
        width: 60px;
        height: 1px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .service-card--featured {
        flex-direction: column;
    }

    .service-card__accent {
        width: 100%;
        height: 4px;
    }
}
