/* ══════════════════════════════════════════════════════════════
   PARTNER DESIGN STUDIO — Shared Stylesheet
   Premium presentation design agency
   ══════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════
   1. RESET & CSS VARIABLES
   ══════════════════════════════════════════ */

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

:root {
    /* Brand Colors — OFFICIAL */
    --purple: #6F4E9F;
    --purple-dark: #1C1428;
    --purple-light: #8B6BBF;
    --purple-glow: rgba(111, 78, 159, 0.15);

    /* Backgrounds */
    --bg: #141415;
    --bg-surface: #1F1F1F;
    --bg-card: #1C1428;
    --bg-card-hover: #241B33;

    /* Text */
    --white: #FFFFFF;
    --text: #F0EDE6;
    --text-secondary: #8A8A90;
    --text-muted: #4A4A52;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    /* Easings */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-padding: 140px;
    --container-max: 1240px;
    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}


/* ══════════════════════════════════════════
   2. GRAIN OVERLAY
   ══════════════════════════════════════════ */

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
}

.grain::after {
    content: '';
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}


/* ══════════════════════════════════════════
   3. CURSOR GLOW
   ══════════════════════════════════════════ */

.cursor-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(111, 78, 159, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cursor-glow.active {
    opacity: 1;
}


/* ══════════════════════════════════════════
   4. SCROLL REVEAL
   ══════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ══════════════════════════════════════════
   5. LAYOUT UTILITIES
   ══════════════════════════════════════════ */

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--purple-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}


/* ══════════════════════════════════════════
   6. NAVIGATION
   ══════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 48px;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(20, 20, 21, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    white-space: nowrap;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
}

.nav-logo span {
    color: var(--purple-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--purple-light);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--purple-light);
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--purple);
    padding: 10px 28px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    background: var(--purple-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(111, 78, 159, 0.3);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; }
.nav-toggle span:nth-child(3) { width: 100%; }

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

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

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

/* Logged-in user avatar */
.nav-user {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.nav-user:hover {
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.3);
}

/* Nav right wrapper */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Nav sign-in link */
.nav-signin {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-signin:hover {
    color: var(--text);
}

/* Nav avatar button */
.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    position: relative;
    border: none;
    transition: box-shadow 0.3s ease;
}

.nav-avatar:hover {
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.3);
}

/* Nav user dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.nav-dropdown.open {
    display: block;
}

.nav-dropdown-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.nav-dropdown-role {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.nav-dropdown hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

.nav-dropdown a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-dropdown a:hover {
    color: var(--purple-light);
}

/* Nav user wrapper (for relative positioning) */
.nav-user-wrap {
    position: relative;
}


/* ══════════════════════════════════════════
   7. BUTTONS
   ══════════════════════════════════════════ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(111, 78, 159, 0.35);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 10px;
    border: 1px solid var(--border-hover);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111, 78, 159, 0.12);
    color: var(--purple-light);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    border: 1px solid rgba(111, 78, 159, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(111, 78, 159, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(111, 78, 159, 0.2);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.05rem;
}


/* ══════════════════════════════════════════
   8. PAGE HERO (Inner Pages)
   ══════════════════════════════════════════ */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.page-hero .hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(111, 78, 159, 0.1);
    top: -15%;
    right: 15%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.page-hero .hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(59, 40, 100, 0.08);
    bottom: 5%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}

.page-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}

.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════
   9. CARDS (Shared)
   ══════════════════════════════════════════ */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(111, 78, 159, 0.1);
    border: 1px solid rgba(111, 78, 159, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.card:hover .card-icon {
    background: rgba(111, 78, 159, 0.18);
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--purple-light);
}


/* ══════════════════════════════════════════
   10. STATS SECTION
   ══════════════════════════════════════════ */

.stats {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number .counter-suffix {
    color: var(--purple-light);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}


/* ══════════════════════════════════════════
   11. TESTIMONIAL
   ══════════════════════════════════════════ */

.testimonial {
    padding: var(--section-padding) 0;
}

.testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 700;
    color: var(--purple);
    opacity: 0.08;
    line-height: 0.6;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
    pointer-events: none;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #F5A623;
}


/* ══════════════════════════════════════════
   12. CTA SECTION
   ══════════════════════════════════════════ */

.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(111, 78, 159, 0.12) 0%, rgba(28, 20, 40, 0.3) 50%, rgba(111, 78, 159, 0.08) 100%);
    border-top: 1px solid rgba(111, 78, 159, 0.15);
    border-bottom: 1px solid rgba(111, 78, 159, 0.15);
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(111, 78, 159, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-email {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.cta-email a {
    color: var(--purple-light);
    transition: color 0.2s ease;
}

.cta-email a:hover {
    color: var(--text);
}


/* ══════════════════════════════════════════
   13. FOOTER
   ══════════════════════════════════════════ */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-logo span {
    color: var(--purple-light);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--purple-light);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--purple);
    background: rgba(111, 78, 159, 0.1);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}


/* ══════════════════════════════════════════
   14. LOGO MARQUEE
   ══════════════════════════════════════════ */

.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.logos-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.logos-set {
    display: flex;
    align-items: center;
    gap: 72px;
    flex-shrink: 0;
    padding-right: 72px;
}

.logo-item {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    user-select: none;
}

.logo-item:hover {
    opacity: 0.8;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════
   15. SERVICES PAGE STYLES
   ══════════════════════════════════════════ */

.services-detail-section {
    padding: var(--section-padding) 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(111, 78, 159, 0.1);
    border: 1px solid rgba(111, 78, 159, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-detail-icon svg {
    width: 26px;
    height: 26px;
    color: var(--purple-light);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text);
}

.service-detail-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-sub-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-sub-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-sub-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
}

.service-tier-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.service-tier-label.foundational {
    background: rgba(111, 78, 159, 0.1);
    color: var(--purple-light);
    border: 1px solid rgba(111, 78, 159, 0.2);
}

.service-tier-label.advanced {
    background: rgba(139, 107, 191, 0.12);
    color: var(--purple-light);
    border: 1px solid rgba(139, 107, 191, 0.25);
}


/* ══════════════════════════════════════════
   16. PORTFOLIO PAGE STYLES
   ══════════════════════════════════════════ */

.portfolio-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.portfolio-filter-btn {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.portfolio-filter-btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.portfolio-showcase-card .portfolio-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease-out);
}

.portfolio-showcase-card:hover .portfolio-gradient {
    transform: scale(1.05);
}

.portfolio-showcase-card .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 21, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.portfolio-showcase-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-showcase-card .portfolio-overlay-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out);
}

.portfolio-showcase-card:hover .portfolio-overlay-text {
    transform: translateY(0);
}

.portfolio-showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(20, 20, 21, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.portfolio-showcase-card:hover .portfolio-showcase-info {
    transform: translateY(0);
}


/* ══════════════════════════════════════════
   17. PRICING PAGE STYLES
   ══════════════════════════════════════════ */

.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.pricing-card.featured {
    border-color: var(--purple);
    box-shadow: 0 0 60px rgba(111, 78, 159, 0.12);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--purple-light), transparent);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 12px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238B6BBF' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234A4A52' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

/* Pricing Comparison Table */
.pricing-table-section {
    padding: 80px 0 var(--section-padding);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.pricing-table thead th {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table tbody td {
    padding: 16px 24px;
    color: var(--text-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-table tbody td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.pricing-table tbody tr:hover {
    background: rgba(111, 78, 159, 0.04);
}

.pricing-table .check-icon {
    color: var(--purple-light);
}

.pricing-table .dash-icon {
    color: var(--text-muted);
    opacity: 0.4;
}


/* ══════════════════════════════════════════
   18. CONTACT PAGE STYLES
   ══════════════════════════════════════════ */

.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 44px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--purple-light);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.15);
}

.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    min-height: 140px;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.15);
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238A8A90' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.15);
}

.form-select option {
    background: var(--bg-surface);
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--purple);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(111, 78, 159, 0.35);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact info sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(111, 78, 159, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--purple-light);
}

.contact-info-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-info-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--purple-light);
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--text);
}


/* ══════════════════════════════════════════
   19. AUTH PAGES
   ══════════════════════════════════════════ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 36px;
}

.auth-logo img {
    height: 32px;
}

.auth-logo span {
    color: var(--purple-light);
}

.auth-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 36px;
}

.auth-input-group {
    position: relative;
    margin-bottom: 20px;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(111, 78, 159, 0.15);
}

.auth-error {
    font-size: 0.82rem;
    color: #E05252;
    margin-top: 6px;
    display: none;
}

.auth-error.visible {
    display: block;
}

.auth-submit {
    width: 100%;
    padding: 14px;
    background: var(--purple);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.auth-submit:hover {
    background: var(--purple-light);
    box-shadow: 0 8px 30px rgba(111, 78, 159, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.auth-link {
    color: var(--purple-light);
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: var(--white);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.auth-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    cursor: pointer;
}

.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--purple);
}


/* ══════════════════════════════════════════
   20. DASHBOARD STYLES
   ══════════════════════════════════════════ */

.dash-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* Sidebar */
.dash-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.dash-sidebar-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
}

.dash-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
}

.dash-sidebar-logo img {
    height: 26px;
}

.dash-sidebar-logo span {
    color: var(--purple-light);
}

.dash-sidebar-nav {
    flex: 1;
    padding: 16px 12px;
}

.dash-nav-section {
    margin-bottom: 24px;
}

.dash-nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 12px;
    margin-bottom: 8px;
}

.dash-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.dash-nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.dash-nav-link.active {
    color: var(--white);
    background: rgba(111, 78, 159, 0.15);
}

.dash-nav-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dash-nav-link .dash-nav-badge {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--purple);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 100px;
}

.dash-sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.dash-sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-sidebar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.dash-sidebar-username {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.dash-sidebar-email {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Main content */
.dash-main {
    grid-column: 2;
    padding: 32px 40px;
    min-height: 100vh;
    overflow-y: auto;
}

.dash-welcome {
    margin-bottom: 40px;
}

.dash-welcome-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.dash-welcome-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Stat Cards */
.dash-stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s var(--ease-out);
}

.dash-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.dash-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(111, 78, 159, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dash-stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--purple-light);
}

.dash-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.dash-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.dash-stat-change {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.dash-stat-change.positive {
    color: #4ADE80;
}

.dash-stat-change.negative {
    color: #EF4444;
}

/* Dashboard sections */
.dash-section {
    margin-bottom: 40px;
}

.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
}

.dash-section-link {
    font-size: 0.85rem;
    color: var(--purple-light);
    font-weight: 500;
    transition: color 0.2s ease;
}

.dash-section-link:hover {
    color: var(--text);
}

/* Dashboard table */
.dash-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

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

.dash-table thead th {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.dash-table tbody td {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.dash-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.dash-table tbody tr:hover {
    background: rgba(111, 78, 159, 0.04);
}

.dash-table .project-name {
    color: var(--text);
    font-weight: 500;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.status-active,
.status-in-progress {
    background: rgba(74, 222, 128, 0.1);
    color: #4ADE80;
}

.status-pending,
.status-review {
    background: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
}

.status-completed,
.status-delivered {
    background: rgba(139, 107, 191, 0.12);
    color: var(--purple-light);
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Dashboard announcements */
.dash-announcement {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.dash-announcement:hover {
    border-color: var(--border-hover);
}

.dash-announcement-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dash-announcement-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.dash-announcement-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dashboard mobile toggle */
.dash-mobile-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dash-mobile-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text);
}


/* ══════════════════════════════════════════
   21. RESPONSIVE
   ══════════════════════════════════════════ */

/* ── Tablet (1024px) ── */
@media (max-width: 1024px) {
    .nav {
        padding: 0 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .deck-mockup {
        width: 320px;
        height: 220px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(5) {
        grid-column: auto;
    }

    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .dash-stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* Nav mobile */
    .nav-links {
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(20, 20, 21, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open a {
        font-size: 1.5rem;
        color: var(--text);
    }

    .nav-links.open a::after {
        display: none;
    }

    /* Hero mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    /* Page hero mobile */
    .page-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .page-hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    /* Sections mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

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

    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .pricing-card:last-child {
        max-width: 100%;
    }

    .pricing-table-section {
        overflow-x: auto;
    }

    .pricing-table {
        min-width: 600px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Auth mobile */
    .auth-card {
        padding: 36px 28px;
    }

    /* Dashboard mobile */
    .dash-layout {
        grid-template-columns: 1fr;
    }

    .dash-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s var(--ease-out);
    }

    .dash-sidebar.open {
        transform: translateX(0);
    }

    .dash-main {
        grid-column: 1;
        padding: 24px 20px;
        padding-top: 72px;
    }

    .dash-stat-cards {
        grid-template-columns: 1fr;
    }

    .dash-mobile-toggle {
        display: flex;
    }

    .dash-table-wrapper {
        overflow-x: auto;
    }

    .dash-table {
        min-width: 500px;
    }
}

/* ── Small mobile (480px) ── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .card {
        padding: 28px 24px;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .auth-card {
        padding: 28px 20px;
    }
}


/* ══════════════════════════════════════════
   22. HOME HERO SECTION
   ══════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(111, 78, 159, 0.12);
    top: -10%;
    right: 10%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 40, 100, 0.1);
    bottom: 10%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(111, 78, 159, 0.06);
    top: 40%;
    left: 40%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 40px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111, 78, 159, 0.12);
    border: 1px solid rgba(111, 78, 159, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple-light);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--purple-light);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Deck Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.deck-mockup {
    position: relative;
    width: 380px;
    height: 260px;
    perspective: 1200px;
    animation: deckFloat 6s ease-in-out infinite;
}

@keyframes deckFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.deck-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--ease-out);
    overflow: hidden;
}

.deck-slide-3 {
    transform: rotate(-4deg) translate(-25px, 15px) scale(0.92);
    opacity: 0.4;
    background: #F3F0EB;
}

.deck-slide-2 {
    transform: rotate(-1.5deg) translate(-10px, 6px) scale(0.96);
    opacity: 0.7;
    background: #FAF9F7;
}

.deck-slide-1 {
    transform: rotate(1deg);
    z-index: 3;
}

.deck-mockup:hover .deck-slide-3 {
    transform: rotate(-7deg) translate(-35px, 20px) scale(0.9);
}

.deck-mockup:hover .deck-slide-2 {
    transform: rotate(-3deg) translate(-18px, 10px) scale(0.94);
}

.deck-mockup:hover .deck-slide-1 {
    transform: rotate(0deg) translateY(-5px);
}

/* Slide inner content */
.slide-inner {
    padding: 20px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.slide-logo-pill {
    background: var(--purple);
    border-radius: 4px;
    width: 60px;
    height: 8px;
}

.slide-dots {
    display: flex;
    gap: 4px;
}

.slide-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
}

.slide-title-line {
    background: #222;
    height: 10px;
    width: 65%;
    border-radius: 3px;
    margin-bottom: 6px;
}

.slide-subtitle-line {
    background: #ccc;
    height: 6px;
    width: 45%;
    border-radius: 3px;
    margin-bottom: 20px;
}

.slide-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.slide-chart-area {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-top: 10px;
}

.slide-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: height 0.5s ease;
}

.slide-bar-1 { height: 55%; background: var(--purple); }
.slide-bar-2 { height: 80%; background: var(--purple-light); }
.slide-bar-3 { height: 45%; background: #C4B5DC; }
.slide-bar-4 { height: 95%; background: var(--purple); }
.slide-bar-5 { height: 65%; background: var(--purple-light); }

.slide-donut-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-donut {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        var(--purple) 0deg 130deg,
        var(--purple-light) 130deg 220deg,
        #C4B5DC 220deg 290deg,
        #E8E0F0 290deg 360deg
    );
    position: relative;
}

.slide-donut::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
}

.slide-text-lines {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}

.slide-text-line {
    height: 5px;
    border-radius: 2px;
    background: #eee;
}

.slide-text-line:nth-child(1) { width: 100%; }
.slide-text-line:nth-child(2) { width: 85%; }
.slide-text-line:nth-child(3) { width: 60%; }


/* ══════════════════════════════════════════
   HOME PAGE SECTIONS (from index.html)
   ══════════════════════════════════════════ */

/* Services (home) */
.services {
    padding: var(--section-padding) 0;
}

.services-header {
    margin-bottom: 64px;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

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

.service-card:nth-child(4) {
    grid-column: 1 / 2;
}

.service-card:nth-child(5) {
    grid-column: 2 / 3;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(111, 78, 159, 0.1);
    border: 1px solid rgba(111, 78, 159, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(111, 78, 159, 0.18);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--purple-light);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Portfolio (home) */
.portfolio {
    padding: var(--section-padding) 0;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

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

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-thumb {
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}

.portfolio-gradient {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-gradient {
    transform: scale(1.05);
}

.portfolio-gradient-1 {
    background: linear-gradient(135deg, #2D1B4E 0%, #6F4E9F 50%, #9B7FC7 100%);
}

.portfolio-gradient-2 {
    background: linear-gradient(135deg, #0F3D3E 0%, #1A6B6C 50%, #2DD4BF 100%);
}

.portfolio-gradient-3 {
    background: linear-gradient(135deg, #3D1B0F 0%, #9F6F4E 50%, #D4A574 100%);
}

.portfolio-gradient-4 {
    background: linear-gradient(135deg, #0F1B3D 0%, #2B4A8E 50%, #5B7FC7 100%);
}

/* Mini slide mockup inside portfolio */
.portfolio-mini-slide {
    width: 55%;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pms-bar {
    height: 5px;
    border-radius: 2px;
}

.pms-bar-1 { width: 50%; background: #333; }
.pms-bar-2 { width: 35%; background: #ccc; }

.pms-row {
    display: flex;
    gap: 8px;
    flex: 1;
    margin-top: 4px;
}

.pms-block {
    flex: 1;
    border-radius: 4px;
    background: #f0f0f0;
}

.pms-block-accent {
    background: var(--purple);
    opacity: 0.3;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 21, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out);
}

.portfolio-card:hover .portfolio-overlay-text {
    transform: translateY(0);
}

.portfolio-info {
    padding: 20px 4px;
}

.portfolio-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.portfolio-type {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Process (home) */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-header {
    margin-bottom: 72px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover) 20%, var(--border-hover) 80%, transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--purple-light);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-num {
    border-color: var(--purple);
    background: rgba(111, 78, 159, 0.08);
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
}

.process-step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════
   UTILITIES & HELPERS
   ══════════════════════════════════════════ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.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; }

.hidden { display: none; }
.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .grain::after {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
