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

:root {
    
    
    --black:    #081018;
--gray-400: #8AAABB;
--gray-600: #5A7A94;
--gray-800: #1a2d3d;
--blue:     #123B67;
--accent:   #20D3E6;
--white:    #FFFFFF;
    
    /* Ana renkler — logodan alındı */
    --navy-deep:  #0B1F3A;
    --navy-mid:   #123B67;
    --turquoise:  #20D3E6;
    --cyan-glow:  #67F2FF;

    /* Light tema zeminler */
    --bg:         #F4F8FB;
    --bg-2:       #EAF2F8;
    --bg-3:       #FFFFFF;
    --surface:    #FFFFFF;

    /* Yazı renkleri */
    --text-1:     #0B1F3A;
    --text-2:     #2D4A63;
    --text-3:     #5A7A94;
    --text-4:     #8AAABB;

    /* Kenarlıklar */
    --border:     rgba(18, 59, 103, 0.1);
    --border-accent: rgba(32, 211, 230, 0.3);

    --white:      #FFFFFF;
    --ff-display: 'Syne', sans-serif;
    --ff-body:    'DM Sans', sans-serif;

    --nav-h:      72px;
    --max-w:      1200px;
    --radius:     8px;
    --radius-lg:  16px;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:   cubic-bezier(0, 0, 0.2, 1);

    --glow-sm:    0 4px 24px rgba(32, 211, 230, 0.18);
    --glow-md:    0 8px 40px rgba(32, 211, 230, 0.25);
    --shadow-sm:  0 2px 12px rgba(11, 31, 58, 0.08);
    --shadow-md:  0 8px 32px rgba(11, 31, 58, 0.12);
    --shadow-lg:  0 16px 48px rgba(11, 31, 58, 0.14);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }

/* -----------------------------------------------
   LAYOUT
----------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }

/* -----------------------------------------------
   TYPOGRAPHY
----------------------------------------------- */
.display-1 {
    font-family: var(--ff-display);
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
}

.display-2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--navy-deep);
}

.heading-3 {
    font-family: var(--ff-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--navy-deep);
}

.label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-2);
}

.label--accent { color: var(--turquoise); }

/* -----------------------------------------------
   NAVIGATION
----------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    background: rgba(244, 248, 251, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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



.nav__logo img {
    height: 36px;
    width: auto;
}

.nav__logo-text { color: var(--navy-deep); }
.nav__logo-text span { color: var(--turquoise); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--turquoise);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav__links a:hover { color: var(--navy-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--turquoise) 100%) !important;
    color: var(--white) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    border: none !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: var(--glow-sm) !important;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
}

.nav__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* -----------------------------------------------
   HERO
----------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #EAF2F8 0%, #F4F8FB 40%, #EDF6F8 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 59, 103, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 59, 103, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__glow {
    position: absolute;
    top: -150px; right: -50px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(32,211,230,0.12) 0%, transparent 70%);
}

.hero__glow-2 {
    position: absolute;
    bottom: -50px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(18,59,103,0.08) 0%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(32, 211, 230, 0.4);
    border-radius: 100px;
    background: rgba(32, 211, 230, 0.08);
    margin-bottom: 32px;
}

.hero__tag-dot {
    width: 6px; height: 6px;
    background: var(--turquoise);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--turquoise);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__headline { margin-bottom: 28px; }

.hero__headline .line-2 {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--turquoise) 60%, var(--cyan-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero__sub {
    font-size: 18px;
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.hero__stat-num {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--navy-deep);
}

.hero__stat-num span {
    background: linear-gradient(135deg, var(--turquoise), var(--cyan-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 6px;
}

/* -----------------------------------------------
   BUTTONS
----------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--turquoise) 100%);
    color: var(--white);
    font-weight: 600;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-md);
}

.btn--outline {
    background: transparent;
    color: var(--navy-mid);
    border-color: var(--border-accent);
}

.btn--outline:hover {
    border-color: var(--turquoise);
    background: rgba(32, 211, 230, 0.06);
}

.btn--ghost {
    background: transparent;
    color: var(--text-3);
    padding: 14px 0;
}

.btn--ghost:hover { color: var(--navy-deep); }

.btn-arrow {
    display: inline-block;
    transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* -----------------------------------------------
   SECTION HEADER
----------------------------------------------- */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
    font-size: 17px;
    color: var(--text-2);
    max-width: 520px;
    font-weight: 300;
}
.section-header--center p { margin: 0 auto; }

/* -----------------------------------------------
   SERVICES
----------------------------------------------- */
.services { background: var(--white); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: background 0.3s var(--ease), box-shadow 0.3s;
}

.service-card:hover {
    background: #F4F8FB;
}

.service-card__num {
    font-family: var(--ff-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-2);
    margin-bottom: 32px;
}

.service-card__icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    background: var(--bg);
}

.service-card:hover .service-card__icon {
    border-color: var(--turquoise);
    background: rgba(32, 211, 230, 0.06);
    box-shadow: var(--glow-sm);
}

.service-card__title {
    font-family: var(--ff-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--navy-deep);
}

.service-card__desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}

.service-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.service-card:hover .service-card__link { color: var(--turquoise); }

/* -----------------------------------------------
   PROJECTS
----------------------------------------------- */
.projects { background: var(--bg); }

.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.project-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.project-card__img {
    aspect-ratio: 16/9;
    background: var(--bg-2);
    overflow: hidden;
}

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

.project-card:hover .project-card__img img { transform: scale(1.04); }

.project-card__body { padding: 28px; }

.project-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-2);
    background: var(--bg);
}

.project-card__title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--navy-deep);
}

.project-card__desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
}

.project-card__results {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.project-result__num {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy-mid), var(--turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-result__label {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
}

/* -----------------------------------------------
   APPS
----------------------------------------------- */
.apps { background: var(--white); }

.apps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: var(--bg);
    transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-mid), var(--turquoise));
    opacity: 0;
    transition: opacity 0.3s;
}

.app-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.app-card:hover::before { opacity: 1; }

.app-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.app-card__icon {
    width: 48px; height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.app-card__badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    border: 1px solid var(--border-accent);
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(32, 211, 230, 0.06);
}

.app-card__badge--beta {
    border-color: rgba(18, 59, 103, 0.2);
    color: var(--navy-mid);
    background: rgba(18, 59, 103, 0.06);
}

.app-card__name {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--navy-deep);
}

.app-card__tagline {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.app-card__tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tech-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-3);
    font-family: var(--ff-display);
}

.app-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.app-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.app-card__link:hover { color: var(--turquoise); }

/* -----------------------------------------------
   CTA SECTION
----------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #1a5a7a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(32,211,230,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -50px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(103,242,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn--dark {
    background: var(--white);
    color: var(--navy-deep);
    font-weight: 700;
    border: none;
}

.btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
.footer {
    background: var(--navy-deep);
    padding: 60px 0 40px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer__logo {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--white);
}

.footer__logo span { color: var(--turquoise); }

.footer__tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    max-width: 260px;
    line-height: 1.6;
}

.footer__links { display: flex; gap: 64px; }

.footer__col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer__col ul li { margin-bottom: 10px; }

.footer__col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}

.footer__col ul a:hover { color: var(--turquoise); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

/* -----------------------------------------------
   FORM
----------------------------------------------- */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--navy-deep);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(32, 211, 230, 0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--white); color: var(--navy-deep); }

/* -----------------------------------------------
   ADMIN PANEL
----------------------------------------------- */
.admin-body {
    background: #F0F5F8;
    color: var(--navy-deep);
    font-family: var(--ff-body);
}

.admin-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 240px;
    background: var(--navy-deep);
    padding: 24px 0;
    overflow-y: auto;
    z-index: 50;
}

.admin-sidebar__logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.admin-sidebar__logo span { color: var(--turquoise); }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s, background 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.admin-nav a.active {
    border-left: 2px solid var(--turquoise);
    color: var(--turquoise);
}

.admin-main {
    margin-left: 240px;
    min-height: 100vh;
    background: #F0F5F8;
}

.admin-header {
    padding: 24px 32px;
    background: var(--white);
    border-bottom: 1px solid #D7E1EA;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content { padding: 32px; }

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #D7E1EA;
    box-shadow: var(--shadow-sm);
}

.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    border-bottom: 1px solid #D7E1EA;
}

.admin-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid #F0F5F8;
    color: var(--navy-deep);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.badge--new      { background: #E0F7FA; color: #00838F; }
.badge--read     { background: #E3F2FD; color: #1565C0; }
.badge--archived { background: #F5F5F5; color: #757575; }

/* -----------------------------------------------
   UTILITY
----------------------------------------------- */
.text-accent { color: var(--turquoise); }
.text-muted  { color: var(--text-3); }

.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .apps__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }

    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .services__grid { grid-template-columns: 1fr; }
    .projects__grid { grid-template-columns: 1fr; }
    .apps__grid     { grid-template-columns: 1fr; }

    .hero__stats { gap: 28px; flex-wrap: wrap; }
    .hero__inner { padding-left: 20px; padding-right: 20px; }
    .footer__top { flex-direction: column; gap: 40px; }
    .footer__links { gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section { padding: 64px 0; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

/* -----------------------------------------------
   ANIMATIONS
----------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up      { animation: fadeUp 0.6s var(--ease-out) both; }
.fade-up--d1  { animation-delay: 0.1s; }
.fade-up--d2  { animation-delay: 0.2s; }
.fade-up--d3  { animation-delay: 0.3s; }
.fade-up--d4  { animation-delay: 0.4s; }

/* ── Blog Grid ── */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog__grid { grid-template-columns: 1fr; }
}