/* =========================================
   EMA CREATIVE STUDIO - LIGHT ELEGANCE
   ========================================= */

   :root {
    --bg-light: #FAF9F6;
    --bg-surface: #FFFFFF;
    --purple-soft: #8A5A99;
    --purple-deep: #5A356A;
    --text-main: #1A1A1A;
    --text-muted: #6B6B6B;
    --font-base: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-base);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ombre Background */
.light-background {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom, #E6D5F2 0%, var(--bg-light) 65%);
}

/* Typography & Utils */
h1, h2, h3, .accent-serif {
    font-family: var(--font-display);
    font-weight: 600;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.accent-serif { font-style: italic; color: var(--purple-soft); }
.section-pad { padding: 8rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.dual-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.glass-card {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 1rem 2.5rem; border-radius: 0;
    font-family: var(--font-base); font-weight: 500; text-decoration: none;
    transition: all 0.5s ease; cursor: pointer; font-size: 0.95rem;
    letter-spacing: 1px; text-transform: uppercase; border: none;
}
.btn-primary { background: var(--text-main); color: var(--bg-light); border: 1px solid var(--text-main); }
.btn-primary:hover { background: transparent; color: var(--text-main); }
.btn-secondary { background: transparent; color: var(--text-main); border: 1px solid rgba(0,0,0,0.15); }
.btn-secondary:hover { border-color: var(--text-main); }
.full-width { width: 100%; text-align: center; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 4rem; z-index: 100; }

/* Logo */
.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text-main); }
.logo-mark { width: 32px; height: 42px; color: var(--text-main); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 1px; line-height: 1.1; }
.logo-dot { color: var(--purple-soft); font-style: italic; }
.logo-sub { font-family: var(--font-base); font-size: 0.58rem; font-weight: 500; letter-spacing: 4.5px; color: var(--text-muted); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; gap: 3rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.4s; letter-spacing: 0.5px; opacity: 0.8; }
.nav-links a:hover { color: var(--purple-soft); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.lang-btn { background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-family: var(--font-base); font-weight: 600; transition: color 0.3s; font-size: 0.9rem; }
.lang-btn:hover { color: var(--text-main); }

/* Hamburger Button */
.hamburger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 201; position: relative; }
.hamburger-btn span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(255,252,250,0.97); backdrop-filter: blur(12px); z-index: 200; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; text-align: center; }
.mobile-nav-link { font-size: 2rem; font-family: var(--font-serif); color: var(--text-main); text-decoration: none; font-weight: 300; letter-spacing: 2px; transition: color 0.3s; opacity: 0.8; }
.mobile-nav-link:hover, .mobile-nav-link:active { color: var(--purple-soft); opacity: 1; }
.mobile-cta { font-family: var(--font-base); font-size: 0.95rem !important; font-weight: 500; letter-spacing: 1px; background: var(--text-main); color: #fff !important; padding: 0.9rem 2.2rem; border-radius: 50px; opacity: 1 !important; }
.lang-btn-mobile { background: transparent; border: 1px solid var(--text-muted); border-radius: 20px; padding: 0.4rem 1.2rem; color: var(--text-muted); cursor: pointer; font-family: var(--font-base); font-weight: 600; font-size: 0.85rem; transition: all 0.3s; }
.lang-btn-mobile:hover { color: var(--text-main); border-color: var(--text-main); }

/* Hero */
.hero { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-content { max-width: 900px; z-index: 10; margin-top: 5rem; display: flex; flex-direction: column; align-items: center; }
.elegant-badge { display: inline-block; padding: 0.5rem 1rem; border-bottom: 1px solid var(--purple-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); margin-bottom: 3rem; font-weight: 400; }
.hero-title { font-size: 4rem; line-height: 1.2; margin-bottom: 2rem; font-weight: 600; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3rem; font-weight: 400; letter-spacing: 0.5px; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section-title { font-size: 3rem; margin-bottom: 4rem; font-weight: 600; letter-spacing: 1px; color: var(--text-main); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { border-top: 3px solid rgba(138,90,153,0.1); }
.service-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 1rem; font-weight: 400; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.portfolio-item { position: relative; aspect-ratio: 16/10; text-decoration: none; padding: 0; display: flex; align-items: flex-end; background: #e5e5e5; overflow: hidden; border: none; }
.portfolio-content { padding: 2rem; width: 100%; background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0.7)); border-top: 1px solid rgba(0,0,0,0.05); }
.portfolio-item h3 { color: var(--text-main); font-size: 1.6rem; margin-bottom: 0.2rem; font-weight: 600; }
.portfolio-item span { color: var(--purple-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.portfolio-item:hover { transform: scale(1.02); }

/* Newsletter Marquee */
.marquee-section { padding: 6rem 0; overflow: hidden; background: #FFF; border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.marquee-wrapper { position: relative; width: 100vw; max-width: 100%; overflow-x: auto; display: flex; margin-left: calc(-50vw + 50%); cursor: grab; scrollbar-width: none; user-select: none; -webkit-user-select: none; touch-action: pan-x; }
.marquee-wrapper::-webkit-scrollbar { display: none; }
.marquee-wrapper.active { cursor: grabbing; }
.marquee-content { display: flex; gap: 2rem; padding: 0 2rem; flex-wrap: nowrap; pointer-events: none; }
.newsletter-card { display: inline-flex; height: 420px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); overflow: hidden; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.03); transition: transform 0.4s ease, box-shadow 0.4s ease; transform-origin: center; pointer-events: auto; cursor: pointer; flex-shrink: 0; }
.newsletter-card img { height: 100%; width: auto; object-fit: contain; pointer-events: none; display: block; }
.newsletter-card:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.08); z-index: 2; border-color: rgba(138,90,153,0.2); }

/* Lightbox */
.lightbox-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 999; align-items: center; justify-content: center; }
.lightbox-modal.show { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }

/* About */
.about-desc { font-size: 1.1rem; color: var(--text-main); margin-bottom: 1.5rem; font-weight: 400; line-height: 1.8; opacity: 0.8; }
.glow-wrapper { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 12px; background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.05); display: flex; justify-content: center; align-items: center; overflow: hidden; }
.glass-photo-placeholder { font-family: var(--font-display); font-size: 3rem; color: rgba(0,0,0,0.1); font-style: italic; font-weight: 600; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; padding: 4rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%; padding: 1.2rem 0; border-radius: 0; border: none;
    border-bottom: 1px solid rgba(0,0,0,0.15); background: transparent;
    color: var(--text-main); font-family: var(--font-base); font-size: 1rem;
    font-weight: 400; outline: none; transition: border-color 0.4s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--text-main); }
.contact-form textarea { resize: none; }
.contact-form ::placeholder { color: #aaa; }
.select-wrapper { position: relative; }
.select-wrapper::after { content: '↓'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: #aaa; font-size: 0.85rem; pointer-events: none; }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 1.5rem; }
.contact-form select option[value=""] { color: #aaa; }
.contact-form select:invalid { color: #aaa; }

/* Footer */
footer { text-align: center; padding: 3rem 0; color: var(--text-muted); font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-top: 1px solid rgba(0,0,0,0.05); }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 42px; height: 42px;
    background: var(--text-main); color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background 0.3s;
    z-index: 99; border-radius: 0;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--purple-soft); }

/* ==============================
   RESPONSIVE - MOBILE
   ============================== */
@media (max-width: 900px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-menu { display: flex; }
    .logo-sub { display: none; }
    .logo-name { font-size: 1.3rem; }

    .hero { padding: 2rem 1.5rem; }
    .hero-content { margin-top: 4rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .hero-buttons a { text-align: center; }

    .section-pad { padding: 4rem 0; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }

    .services-grid, .portfolio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .portfolio-item { aspect-ratio: auto; min-height: 280px; }
    .port-img { height: 160px !important; }
    .portfolio-content { flex: 1; }
    .dual-col { grid-template-columns: 1fr; gap: 2.5rem; }

    .marquee-wrapper { cursor: grab; }
    .marquee-content { gap: 1rem; padding: 0 1rem; }
    .newsletter-card { height: 300px; }

    .contact-form { padding: 2rem 1.5rem; }
    .about-visual { aspect-ratio: 3/2; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.75rem; }
    .newsletter-card { height: 240px; }
    .marquee-content { gap: 0.75rem; padding: 0 0.75rem; }
    .back-to-top { bottom: 1.2rem; right: 1.2rem; }
    .contact-form { padding: 1.5rem 1rem; }
    .glass-card { padding: 2rem 1.2rem; }
}

/* ── Footer legal links ── */
.footer-legal {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.footer-legal-btn {
    background: none;
    border: none;
    font-family: var(--font-base);
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.footer-legal-btn:hover { color: var(--purple-soft); border-color: var(--purple-soft); }
.footer-legal-sep { color: var(--text-muted); opacity: 0.4; font-size: 0.78rem; }

/* ── Legal modals ── */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(20, 12, 30, 0.55);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.legal-modal--open { display: flex; }
.legal-modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(90, 53, 106, 0.18);
    animation: legalSlideIn 0.3s ease;
}
@keyframes legalSlideIn {
    from { transform: translateY(18px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.legal-modal-close:hover { color: var(--purple-soft); }
.legal-modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(138, 90, 153, 0.15);
}
.legal-modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--purple-soft);
    margin: 1.4rem 0 0.4rem;
}
.legal-modal-body p,
.legal-modal-body li {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.legal-modal-body ul { padding-left: 1.2rem; margin: 0.4rem 0; }
.legal-modal-body a { color: var(--purple-soft); }
.legal-date { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin: 0.8rem 0;
}
.legal-table th,
.legal-table td {
    border: 1px solid rgba(138, 90, 153, 0.12);
    padding: 7px 10px;
    text-align: left;
    color: var(--text-muted);
}
.legal-table th {
    background: rgba(138, 90, 153, 0.06);
    color: var(--purple-soft);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.legal-table code {
    font-size: 0.8rem;
    background: #f4f0f7;
    padding: 2px 5px;
    border-radius: 4px;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(138, 90, 153, 0.15);
    box-shadow: 0 -4px 24px rgba(90, 53, 106, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.1rem 1.5rem;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-banner-inner p {
    flex: 1;
    min-width: 200px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.cookie-banner-link {
    background: none;
    border: none;
    font-family: var(--font-base);
    font-size: inherit;
    color: var(--purple-soft);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cookie-btn-accept {
    background: var(--purple-soft);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-family: var(--font-base);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #7a4d88; }
.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-family: var(--font-base);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--purple-soft); color: var(--purple-soft); }

@media (max-width: 480px) {
    .legal-modal-box { padding: 2rem 1.2rem 1.5rem; }
    .legal-modal-title { font-size: 1.4rem; }
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ── Section eyebrow & subtitle ── */
.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--purple-soft);
    margin-bottom: 0.6rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: -0.8rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Service icon ── */
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }

/* ── Portfolio goal text ── */
.port-goal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ── Paketi section ── */
.paketi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.paket-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1.8rem 1.8rem;
    position: relative;
}
.paket-featured {
    border: 1.5px solid var(--purple-soft);
    box-shadow: 0 8px 32px rgba(138, 90, 153, 0.12);
}
.paket-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-soft);
    margin-bottom: 0.4rem;
}
.paket-badge--featured {
    display: inline-block;
    background: var(--purple-soft);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
}
.paket-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.7rem;
}
.paket-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.paket-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.paket-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}
.paket-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple-soft);
    font-size: 0.8rem;
}
.paket-ideal {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.4rem;
    opacity: 0.8;
}
.paket-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--purple-soft);
    color: var(--purple-soft);
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}
.paket-cta:hover { background: var(--purple-soft); color: #fff; }
.paket-cta--featured {
    background: var(--purple-soft);
    color: #fff;
}
.paket-cta--featured:hover { background: #7a4d88; border-color: #7a4d88; }

/* ── UX note ── */
.ux-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.8rem;
    margin-top: 0.5rem;
}
.ux-note-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-soft);
    white-space: nowrap;
    padding-top: 0.1rem;
}
.ux-note p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .paketi-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .ux-note { flex-direction: column; gap: 0.5rem; }
}

.portfolio-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; margin-top: -1.5rem; margin-bottom: 2.5rem; font-style: italic; }
