/* ============================================
   AshTech Developer - Complete Theme Stylesheet
   ============================================ */

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
    --background: 220 15% 8%;
    --foreground: 210 40% 98%;
    --card: 220 15% 10%;
    --card-foreground: 210 40% 98%;
    --primary: 174 55% 45%;
    --primary-foreground: 210 40% 98%;
    --secondary: 220 15% 15%;
    --secondary-foreground: 210 40% 98%;
    --muted: 220 15% 15%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 48 89% 57%;
    --accent-foreground: 220 15% 8%;
    --destructive: 0 62.8% 50.6%;
    --border: 220 15% 20%;
    --input: 220 15% 20%;
    --ring: 174 55% 45%;
    --radius: 0.5rem;

    --gradient-primary: linear-gradient(135deg, hsl(174 55% 45%) 0%, hsl(174 55% 35%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(48 89% 57%) 0%, hsl(48 89% 47%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(220 15% 8%) 0%, hsl(220 15% 12%) 100%);

    --shadow-soft: 0 4px 6px -1px hsl(220 15% 5% / 0.2), 0 2px 4px -1px hsl(220 15% 5% / 0.1);
    --shadow-medium: 0 10px 15px -3px hsl(220 15% 5% / 0.3), 0 4px 6px -2px hsl(220 15% 5% / 0.1);
    --shadow-large: 0 20px 25px -5px hsl(220 15% 5% / 0.4), 0 10px 10px -5px hsl(220 15% 5% / 0.2);
    --shadow-glow: 0 0 40px hsl(174 55% 45% / 0.2);
    --shadow-accent-glow: 0 0 40px hsl(48 89% 57% / 0.15);

    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.2; }
p { margin: 0; }
button { font-family: inherit; }

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
.min-h-screen { min-height: 100vh; }

/* --- Keyframes --- */
@keyframes fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(-25%) translateX(-50%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0) translateX(-50%); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.animate-fade-in { animation: fade-in 0.6s ease-out both; }
.animate-fade-in-up { animation: fade-in-up 0.5s ease-out both; }
.animate-scale-in { animation: scale-in 0.3s ease-out both; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }

/* Staggered delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-1000 { animation-delay: 1s; }
.delay-1500 { animation-delay: 1.5s; }
.delay-2000 { animation-delay: 2s; }
.delay-2500 { animation-delay: 2.5s; }

/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    line-height: 1.5;
}
.btn:focus-visible { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; }
.btn svg { width: 1rem; height: 1rem; transition: transform 0.2s; }

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
}
.btn-primary:hover { background-color: hsl(var(--primary) / 0.9); }

.btn-outline {
    background-color: transparent;
    color: hsl(var(--foreground));
    border-color: hsl(var(--border));
}
.btn-outline:hover { background-color: hsl(var(--secondary)); }

.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }

.btn-group:hover svg { transform: translateX(4px); }

/* ======================
   CARDS
   ====================== */
.card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: var(--transition-smooth);
}
.card:hover {
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: var(--shadow-large), 0 0 20px hsl(var(--primary) / 0.1);
}
.card-content { padding: 1.5rem; }

/* ======================
   FORM ELEMENTS
   ====================== */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background-color: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: inherit;
    transition: var(--transition-base);
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}
.form-input::placeholder,
.form-textarea::placeholder { color: hsl(var(--muted-foreground) / 0.6); }
.form-textarea { resize: none; }

/* ======================
   HEADER / NAVIGATION
   ====================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
    background-color: transparent;
}
.site-header.scrolled {
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-medium);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}
.header-logo { transition: transform 0.2s; display: flex; align-items: center; }
.header-logo:hover { transform: scale(1.05); }
.header-logo img { height: 2rem; }

.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--primary));
    transition: width 0.3s;
}
.nav-link:hover { color: hsl(var(--foreground)); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: hsl(var(--primary)); }
.nav-link.active::after { width: 100%; }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: block; } }

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
    display: none;
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    animation: fade-in 0.3s ease-out;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu.open { display: none; } }
.mobile-menu-inner { padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    transition: color 0.2s;
    padding: 0.25rem 0;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: hsl(var(--primary)); }

/* ======================
   HERO SECTION
   ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--background)), hsl(var(--primary) / 0.05));
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4rem 4rem;
}
.hero-particle {
    position: absolute;
    border-radius: 9999px;
    animation: float 3s ease-in-out infinite;
}
.hero-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(120px);
    animation: float 3s ease-in-out infinite;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}
.hero-content > * + * { margin-top: 2rem; }
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid hsl(var(--primary) / 0.2);
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: hsl(var(--foreground));
    line-height: 1.1;
}
.gradient-text {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    max-width: 48rem;
    margin: 0 auto;
}
.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
}
.hero-stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}
.scroll-pill {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid hsl(var(--primary) / 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}
.scroll-dot {
    width: 0.25rem;
    height: 0.5rem;
    background-color: hsl(var(--primary));
    border-radius: 9999px;
}

/* ======================
   SECTIONS (General)
   ====================== */
.section { padding: 6rem 0; }
.section-gradient-down { background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary) / 0.2)); }
.section-gradient-up { background: linear-gradient(to bottom, hsl(var(--secondary) / 0.2), hsl(var(--background))); }
.section-gradient-primary { background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--primary) / 0.05)); }
.section-bg { background-color: hsl(var(--background)); }

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
.section-header > * + * { margin-top: 1rem; }
.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}
.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

/* ======================
   SERVICES GRID (Home)
   ====================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card .card-content { display: flex; flex-direction: column; gap: 1rem; }
.service-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.service-icon-box svg { color: hsl(var(--primary)); width: 1.5rem; height: 1.5rem; }
.service-card:hover .service-icon-box { background-color: hsl(var(--primary) / 0.2); }
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.3s;
}
.service-card:hover h3 { color: hsl(var(--primary)); }
.service-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* ======================
   PROJECTS / PORTFOLIO
   ====================== */
.projects-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .projects-header { flex-direction: row; justify-content: space-between; align-items: center; }
}
.projects-header-text > * + * { margin-top: 0.5rem; }
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card { overflow: hidden; }
.project-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.project-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-card:hover .project-image-wrap img { transform: scale(1.1); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay .btn { border-color: hsl(var(--primary) / 0.5); }
.project-overlay .btn:hover { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.project-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 500;
}
.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    transition: color 0.3s;
}
.project-card:hover h3 { color: hsl(var(--primary)); }
.project-card .project-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.75rem;
}
.project-metrics {
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--accent));
    margin-top: 0.5rem;
}
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.project-tag {
    padding: 0.25rem 0.5rem;
    border-radius: calc(var(--radius) - 2px);
    background-color: hsl(var(--secondary));
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* Portfolio Filter */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

/* ======================
   TESTIMONIALS
   ====================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}
.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--accent));
    fill: hsl(var(--accent));
}
.testimonial-quote {
    font-style: italic;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin-top: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
}
.testimonial-name { font-weight: 600; color: hsl(var(--foreground)); }
.testimonial-role { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ======================
   CONTACT CTA SECTION
   ====================== */
.contact-cta {
    position: relative;
    overflow: hidden;
}
.contact-cta-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    filter: blur(120px);
}
.contact-cta-blob-1 { top: 0; right: 0; background-color: hsl(var(--primary) / 0.1); }
.contact-cta-blob-2 { bottom: 0; left: 0; background-color: hsl(var(--accent) / 0.1); }

.contact-card {
    background-color: hsl(var(--card) / 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.contact-card .card-content { padding: 2rem; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.form-group > * + * { margin-top: 0.5rem; }

.form-note {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-top: 1rem;
}
.form-note a { color: hsl(var(--primary)); }
.form-note a:hover { text-decoration: underline; }

/* ======================
   FOOTER
   ====================== */
.site-footer {
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 1rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}
.footer-social a:hover { color: hsl(var(--primary)); }
.footer-col h3 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li,
.footer-col a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}
.footer-col a:hover { color: hsl(var(--primary)); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
.footer-contact-item svg { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover { color: hsl(var(--primary)); }
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: hsl(var(--primary)); }

/* ======================
   SERVICES PAGE
   ====================== */
.page-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}
.page-hero-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.page-hero-inner > * + * { margin-top: 1.5rem; }
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}
.page-hero p {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .service-detail { flex-direction: row; }
    .service-detail.reversed { flex-direction: row-reverse; }
}
.service-detail-content { flex: 1; }
.service-detail-content > * + * { margin-top: 1.5rem; }
.service-detail-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-icon svg { width: 2rem; height: 2rem; color: hsl(var(--primary)); }
.service-detail h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}
.service-detail > p,
.service-detail-content > p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}
.features-list { display: flex; flex-direction: column; gap: 0.5rem; }
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.features-list li svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.features-list li span { color: hsl(var(--muted-foreground)); }
.features-heading { font-size: 1.25rem; font-weight: 600; color: hsl(var(--foreground)); }

.service-detail-sidebar { flex: 1; width: 100%; }
.process-list { display: flex; flex-direction: column; gap: 1rem; }
.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.process-number {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary) / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
    font-weight: 600;
    flex-shrink: 0;
}
.process-label { color: hsl(var(--foreground)); font-weight: 500; }

.cta-card {
    background-color: hsl(var(--card) / 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 56rem;
    margin: 0 auto;
}
.cta-card .card-content {
    padding: 3rem;
    text-align: center;
}
.cta-card .card-content > * + * { margin-top: 1.5rem; }
.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}
.cta-card p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ======================
   ABOUT PAGE
   ====================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-story > * + * { margin-top: 1.5rem; }
.about-story h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: hsl(var(--foreground));
}
.about-story p { color: hsl(var(--muted-foreground)); line-height: 1.7; }
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.stat-card .card-content { padding: 1.5rem; }
.stat-number { font-size: 2.25rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.stat-label { color: hsl(var(--muted-foreground)); }

.founder-card { max-width: 56rem; margin: 0 auto; }
.founder-card .card-content { padding: 2rem; }
.founder-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) { .founder-inner { flex-direction: row; align-items: flex-start; } }
.founder-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}
.founder-info { flex: 1; text-align: center; }
@media (min-width: 768px) { .founder-info { text-align: left; } }
.founder-info > * + * { margin-top: 1rem; }
.founder-name { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); }
.founder-role { color: hsl(var(--primary)); font-weight: 500; margin-top: 0.25rem; }
.founder-info p { color: hsl(var(--muted-foreground)); line-height: 1.7; }
.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary));
    transition: color 0.2s;
}
.founder-linkedin:hover { color: hsl(var(--primary) / 0.8); }

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card .card-content { padding: 1.5rem; }
.value-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.value-inner svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 4px; }
.value-inner h3 { font-size: 1.25rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.value-inner p { color: hsl(var(--muted-foreground)); }

/* ======================
   CONTACT PAGE
   ====================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info > * + * { margin-top: 2rem; }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
.contact-info > div > p { color: hsl(var(--muted-foreground)); }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }
.contact-item-label { font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
.contact-item-value { color: hsl(var(--muted-foreground)); transition: color 0.2s; }
a.contact-item-value:hover { color: hsl(var(--primary)); }

/* ======================
   404 PAGE
   ====================== */
.page-404 {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--muted));
    text-align: center;
}
.page-404 h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.page-404 p { font-size: 1.25rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.page-404 a { color: hsl(var(--primary)); text-decoration: underline; }
.page-404 a:hover { color: hsl(var(--primary) / 0.9); }

/* ======================
   TOAST NOTIFICATION
   ====================== */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}
.toast {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-large);
    animation: fade-in-up 0.3s ease-out;
    min-width: 280px;
}
.toast-title { font-weight: 600; color: hsl(var(--foreground)); font-size: 0.875rem; }
.toast-desc { color: hsl(var(--muted-foreground)); font-size: 0.8125rem; margin-top: 0.25rem; }
.toast.toast-success { border-left: 3px solid hsl(var(--primary)); }
.toast.toast-error { border-left: 3px solid hsl(var(--destructive)); }

/* ======================
   WORDPRESS OVERRIDES
   ====================== */
.wp-block-image img { border-radius: var(--radius); }
.entry-content p { color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { color: hsl(var(--foreground)); margin-bottom: 1rem; margin-top: 2rem; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
