/* ===========================
   FRABER - Main Stylesheet
   Colors: #3e65aa (blue), #000, #fff
   Font: Montserrat
   =========================== */

:root {
    --color-primary: #3e65aa;
    --color-primary-dark: #2d4e8a;
    --color-primary-light: #4a7acc;
    --color-black: #111111;
    --color-dark: #1a1a2e;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg-light: #f8f9fb;
    --color-bg-gray: #eef1f5;
    --color-border: #e0e4ea;
    --font-family: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-white-muted { color: rgba(255,255,255,0.7); }

.text-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-title.text-white::after {
    background: rgba(255,255,255,0.4);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    color: var(--color-text-light);
}

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

.btn {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    padding: 12px 32px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.navbar {
    height: var(--header-height);
}

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

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

.logo-img {
    height: 44px;
    width: auto;
    transition: opacity var(--transition);
}

/* Dark background (hero) → bílé logo */
.logo-light { display: block; }
.logo-dark  { display: none; }

/* Po scrollu → barevné logo */
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

/* Obě verze stejná velikost */
.logo-light,
.logo-dark {
    height: 42px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
    position: relative;
}

#header.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

#header.scrolled .nav-link:hover::after,
#header.scrolled .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: 4px;
    margin-left: 8px;
}

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

.nav-cta::after {
    display: none;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

#header.scrolled .lang-switcher {
    border-left-color: var(--color-border);
}

.lang-link {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 3px;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.lang-link:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
}

.lang-link.active {
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
}

#header.scrolled .lang-link {
    color: var(--color-text-light);
}

#header.scrolled .lang-link:hover {
    color: var(--color-primary);
    background: rgba(62,101,170,0.08);
}

#header.scrolled .lang-link.active {
    color: var(--color-primary);
    background: rgba(62,101,170,0.1);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
}

#header.scrolled .nav-toggle span {
    background: var(--color-black);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(62, 101, 170, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-brand {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle-line {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-slogan {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.hero-slogan-de {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    animation: bounce 2s infinite;
}

.hero-scroll a:hover {
    color: var(--color-white);
}

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

/* ===========================
   Sections
   =========================== */

.section {
    padding: 100px 0;
}

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

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

.section-blue {
    background: var(--color-primary);
}

.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

/* ===========================
   Intro
   =========================== */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ===========================
   Services
   =========================== */

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

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.service-card-highlight {
    background: rgba(62, 101, 170, 0.3);
    border-color: var(--color-primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary-light);
}

.service-card h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===========================
   Features / Why Us
   =========================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 32px 24px;
    border-radius: 8px;
    transition: all var(--transition);
}

.feature:hover {
    background: var(--color-bg-light);
}

.feature-check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.feature p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===========================
   Testimonials
   =========================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 36px 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -1rem;
}

.testimonial-text {
    color: var(--color-white);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-name {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.875rem;
}

.testimonial-location {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.testimonial-location::before {
    content: '·';
    margin-right: 8px;
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    transition: transform var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.project-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ===========================
   Contact
   =========================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--color-primary);
}

.contact-item a,
.contact-item span {
    color: var(--color-text);
    font-size: 0.9375rem;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg-light);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(62, 101, 170, 0.1);
}

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

.form-consent {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

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

/* ===========================
   PARTNERS
   =========================== */

.section-intro {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.partner-logo img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

.partner-info p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.partner-link:hover {
    opacity: 0.75;
}

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

.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-company-info {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer h4 {
    color: var(--color-white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer ul a:hover {
    color: var(--color-white);
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

/* ===========================
   Cookie Banner
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.875rem;
    flex: 1;
}

.cookie-content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ===========================
   Legal Pages
   =========================== */

.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p, .legal-page li {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.legal-page ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* ===========================
   Animations
   =========================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@media (max-width: 1024px) {
    h2 { font-size: 1.875rem; }
    .section { padding: 80px 0; }
    .intro-grid, .about-grid { gap: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .lang-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .lang-link { color: rgba(255,255,255,0.5) !important; }
    .lang-link.active { color: #fff !important; background: rgba(255,255,255,0.15) !important; }

    .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-brand {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .hero-subtitle-line {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-slogan { font-size: 1.125rem; }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .section-cta h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 2.25rem;
        letter-spacing: 6px;
    }

    .hero-subtitle-line {
        font-size: 0.875rem;
    }

    h2 { font-size: 1.5rem; }
    .section { padding: 60px 0; }

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