* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* MOBILE HEADER */
.mobile-header {
    display: none;
    height: 60px;
    background: #0f172a;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
}

.menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
}

.brand {
    font-weight: 600;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #020617, #020617);
    color: #fff;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 30px 20px;
}

.brand-box h1 {
    font-size: 22px;
}

.brand-box span {
    font-size: 13px;
    color: #94a3b8;
}

.menu {
    margin-top: 40px;
}

.menu a {
    display: block;
    padding: 12px;
    color: #cbd5f5;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 6px;
}

.menu a.active,
.menu a:hover {
    background: #1e293b;
    color: #fff;
}

.sidebar-footer {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    color: #64748b;
}

/* CONTENT */
.content {
    margin-left: 260px;
    padding: 60px;
    background: #f8fafc;
    min-height: 100vh;
}

/* HERO */
.hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: #020617;
}

.hero h2 span {
    color: #2563eb;
}

.hero p {
    margin-top: 15px;
    font-size: 18px;
    color: #475569;
    max-width: 600px;
}

.hero-actions {
    margin-top: 30px;
}

.btn {
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
}

.primary {
    background: #2563eb;
    color: #fff;
}

.outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* SERVICES */
.services {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card h3 {
    margin-bottom: 10px;
}
/* ===== ABOUT PAGE (PREMIUM) ===== */

.about-hero {
    max-width: 750px;
    margin-bottom: 80px;
}

.about-hero h2 {
    font-size: 38px;
    color: #020617;
}

.about-hero h3 {
    font-size: 38px;
    margin-top: 5px;
}

.about-hero h3 span {
    color: #2563eb;
}

.about-hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #475569;
}

/* STORY BLOCK */
.about-block {
    max-width: 750px;
    margin-bottom: 70px;
}

.about-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.about-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

/* VALUES GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.about-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.about-card h5 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* PROCESS */
.about-process {
    max-width: 750px;
}

.about-process h4 {
    font-size: 22px;
    margin-bottom: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.process-step span {
    font-size: 22px;
    font-weight: bold;
    color: #2563eb;
}

.process-step h6 {
    font-size: 16px;
    margin-bottom: 4px;
}
/* ===== SERVICES PAGE (CREATIVE AGENCY) ===== */

.services-hero {
    max-width: 800px;
    margin-bottom: 80px;
}

.services-hero h2 {
    font-size: 40px;
    color: #020617;
}

.services-hero h3 {
    font-size: 40px;
}

.services-hero h3 span {
    color: #2563eb;
}

.services-hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #475569;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 90px;
}

.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box span {
    font-size: 32px;
    font-weight: bold;
    color: #e5e7eb;
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-box p {
    color: #475569;
    line-height: 1.6;
}

.service-box.highlight {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
}

.service-box.highlight p {
    color: #e0e7ff;
}

.service-box.highlight span {
    color: rgba(255,255,255,0.3);
}

/* CTA */
.services-cta {
    background: #020617;
    color: #fff;
    padding: 60px;
    border-radius: 18px;
    text-align: center;
}

.services-cta h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.services-cta p {
    color: #cbd5f5;
    margin-bottom: 25px;
}
/* ===== CONTACT PAGE (MOTION & DEPTH) ===== */

.contact-hero {
    max-width: 750px;
    margin-bottom: 80px;
}

.contact-hero h2 {
    font-size: 40px;
}

.contact-hero h3 {
    font-size: 40px;
}

.contact-hero h3 span {
    color: #2563eb;
}

.contact-hero p {
    margin-top: 15px;
    font-size: 18px;
    color: #475569;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.contact-card h4 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

/* FORM */
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-card textarea {
    resize: vertical;
}

/* ===== FOUNDER MINI CARD (PHOTO) ===== */

.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 680px;
    margin-top: 70px;
    padding: 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.founder-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    display: none;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.founder-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.founder-info small {
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

.founder-info p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
}

.founder-brand {
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .mobile-header {
        display: flex;
    }

    .sidebar {
        left: -260px;
        top: 60px;
        height: calc(100vh - 60px);
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .content {
        margin-left: 0;
        padding: 90px 20px;
    }

    .hero h2 {
        font-size: 30px;
    }
}
