:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ff4d00;
    --accent-light: #ff6b2c;
    --accent-glow: rgba(255, 77, 0, 0.3);
    --font-display: 'Syne', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--accent);
    color: white;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s ease; 
}

img { 
    max-width: 100%; 
    display: block; 
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

address {
    font-style: normal;
}

#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-primary);
    position: relative;
}

.preloader-logo span {
    color: var(--accent);
}

.preloader-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin-top: 20px;
    border-radius: 2px;
    animation: loadLine 2s ease forwards;
}

@keyframes loadLine {
    to { width: 200px; }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 60px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    color: var(--text-secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 30px var(--accent-glow);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 44, 0.15) 0%, transparent 40%);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero-title .outline {
    -webkit-text-stroke: 2px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

.hero-title .accent {
    color: var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 18px 45px;
    background: var(--accent);
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    background: var(--accent);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { left: -20px; }
    100% { left: 60px; }
}

section {
    padding: 150px 60px;
}

.section-header {
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
}

.services {
    background: var(--bg-secondary);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-primary);
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.portfolio {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    height: 600px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 400px;
}

.stats {
    background: var(--accent);
    padding: 100px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.clients {
    background: var(--bg-secondary);
}

.clients-marquee {
    overflow: hidden;
    margin-top: 60px;
}

.clients-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    padding: 0 60px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: color 0.3s ease;
}

.client-logo:hover {
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.process {
    background: var(--bg-primary);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 40px var(--accent-glow);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slogan-banner {
    background: var(--bg-tertiary);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slogan-banner::before {
    content: 'imzza';
    position: absolute;
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.slogan-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.slogan-text span {
    color: var(--accent);
}

.contact {
    background: var(--bg-primary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-text a {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form .btn-primary {
    align-self: flex-start;
}

footer {
    background: var(--bg-secondary);
    padding: 80px 60px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-brand .logo {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-3px);
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Video Showcase Section - DZELTLMď HAL */
.video-showcase {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    /* Videoya daha fazla alan veriyoruz: Yaz 0.8 birim, Video 1.2 birim */
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-content {
    color: white;
}

.video-content .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: inline-flex; /* Hizalama dzelsin diye */
    padding: 8px 16px;
    border-radius: 50px;
}

.video-content .section-title {
    color: white;
    margin-bottom: 30px;
    font-size: 3rem; /* Balŏ biraz byttk */
    line-height: 1.2;
}

.video-content .accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
}

/* Video Player Genel Kapsayc */
.video-player {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video erevesi - NEML KISIM */
.video-wrapper {
    position: relative;
    width: 100%;
    /* max-width snrn kaldrdk ki genilesin */
    padding-bottom: 56.25%; /* 16:9 Oran (Geni Ekran) */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); /* Derinlik */
    border: 1px solid rgba(255,255,255,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .video-showcase {
        padding: 80px 20px;
    }

    .video-container {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        text-align: center;
        gap: 40px;
    }
    
    .video-content .section-tag {
        margin: 0 auto 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    section { padding: 100px 40px; }
    header { padding: 20px 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-timeline { flex-wrap: wrap; gap: 40px; }
    .process-timeline::before { display: none; }
    .process-step { flex: 0 0 45%; }
    
    .video-showcase { padding: 100px 40px; }
    .video-container { gap: 60px; }
    .video-wrapper-single { max-width: 400px; }
}

@media (max-width: 768px) {
    section { padding: 80px 25px; }
    
    /* Header Mobile Düzeltmeleri */
    header { 
        padding: 15px 20px; 
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: -0.5px;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }
    
    .nav-menu { display: none; }
    
    /* Hero Mobile Düzeltmeleri */
    .hero { 
        padding: 0 20px;
        min-height: 90vh;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .hero-tag::before {
        width: 30px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .hero-title .outline {
        -webkit-text-stroke: 1.5px var(--text-primary);
    }
    
    .hero-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 35px;
        font-size: 0.8rem;
    }
    
    .hero-scroll {
        bottom: 30px;
        font-size: 0.75rem;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item.large { grid-column: span 1; height: 400px; }
    .portfolio-item { height: 350px; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { flex-direction: column; gap: 50px; }
    .footer-links { gap: 50px; flex-wrap: wrap; }
    .process-step { flex: 0 0 100%; }
    
    /* Video Showcase Mobile */
    .video-showcase { padding: 80px 25px; }
    .video-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .video-wrapper-single {
        max-width: 100%;
        padding-bottom: 177.78%;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    header { padding: 12px 15px; }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
}