:root {
    --brand-blue: #3b82f6;
    --brand-blue-hover: #2563eb;
    --brand-blue-light: #eff6ff;
    --brand-blue-border: #bfdbfe;
    --brand-dark: #0f172a;
    --brand-muted: #475569;
    --brand-text: #0f172a;
    --brand-bg: #f8fafc;
    --brand-surface: rgba(255, 255, 255, 0.9);
    --brand-purple-light: #ede9fe;
    --accent: #0ea5e9;
    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #0ea5e9;
    --info-light: #e0f2fe;
    --gray-50: #f8fafc;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-500: #64748b;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --border-radius-full: 9999px;
    --border-radius-sm: 0.375rem;
    --transition-all: all 0.2s ease;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --brand-purple: #9333ea;
    --brand-darker: #0f172a;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
}
.bg-light {
    background-color: var(--brand-bg);
}
.text-brand-text {
    color: var(--brand-text);
}
.bg-brand-blue {
    background-color: var(--brand-blue);
}
.container,
.container-large {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}
.section {
    position: relative;
    padding: 6rem 0;
}
.page-main {
    background-color: var(--brand-bg);
}
.section-overflow {
    overflow: hidden;
}
.section-container {
    position: relative;
    z-index: 1;
}
.section-header-lg {
    margin-bottom: 6rem;
}
.section-pill-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--brand-muted);
    text-transform: uppercase;
}
.pill-status-purple {
    background: rgba(147,51,234,0.06);
    border-color: rgba(233,213,255,0.8);
}
.pill-status-green {
    background: rgba(16,185,129,0.08);
    border-color: rgba(167,243,208,0.8);
}
.pill-status-yellow {
    background: rgba(245,159,11,0.08);
    border-color: rgba(254,243,199,0.9);
}
.status-icon {
    width: 1rem;
    height: 1rem;
    color: var(--brand-purple);
    margin-right: 0.5rem;
}
.text-brand-purple {
    color: var(--brand-purple);
}
.text-brand-blue {
    color: var(--brand-blue);
}
.text-brand-dark {
    color: var(--brand-darker);
}
.text-small-semibold {
    font-size: 0.875rem;
    font-weight: 600;
}
.gtm-noscript-frame {
    display: none;
    visibility: hidden;
}
.min-height-80vh {
    min-height: 80vh;
}
.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    margin-right: 0.5rem;
    display: inline-block;
    flex-shrink: 0;
}
.badge-dot--green { background-color: var(--success); }
.badge-dot--blue { background-color: var(--brand-blue); }
.badge-dot--yellow { background-color: var(--warning); }
.badge-label {
    margin-right: 0.25rem;
}
.section-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand-darker);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}
.section-hero-title-small {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.hero-highlight {
    position: relative;
    display: inline-block;
}
.text-gradient-success {
    background: linear-gradient(135deg, var(--success), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-purple {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glow-svg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -0.75rem;
    height: 12px;
    opacity: 0.8;
}
.glow-svg-green { color: var(--success); }
.glow-svg-yellow { color: #fbbf24; }
.glow-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brand-blue-border), transparent);
    margin: 0 auto;
}
.glow-line-yellow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fcd34d, transparent);
    margin: 0 auto;
}
.section-description-lg {
    font-size: 1.1rem;
    color: var(--brand-muted);
    max-width: 44rem;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}
.section-pill-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}
.section-pill-link {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: white;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-darker);
    text-decoration: none;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
}
.section-pill-link:hover {
    color: var(--success);
    border-color: var(--success);
}
.section-pill-link--blue:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}
.section-pill-link--purple:hover {
    color: var(--brand-purple);
    border-color: var(--brand-purple);
}
.section-pill-link span {
    color: var(--brand-muted);
    font-size: 0.7rem;
    margin-right: 0.5rem;
    font-weight: 800;
}
.section-pill-link svg {
    width: 12px;
    height: 12px;
    margin-left: 0.5rem;
}
.section-browse {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--brand-muted);
    margin-bottom: 3rem;
}
.section-browse span {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-browse .animated-glow-line,
.section-browse .animated-glow-line-yellow {
    margin: 0 auto;
}
.container-small {
    max-width: 48rem;
}
.section-subtitle-block {
    margin-bottom: 2.5rem;
}
.section-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-darker);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.text-muted-sm {
    color: var(--brand-muted);
    font-size: 0.95rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--brand-dark);
}
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background: white;
    outline: none;
    transition: var(--transition-all);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    font-size: 0.95rem;
}
.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.textarea-control {
    resize: vertical;
    min-height: 180px;
}
.form-note {
    position: absolute;
    right: 0;
    bottom: -1.5rem;
    font-size: 0.75rem;
    color: var(--brand-muted);
}
.btn-primary-gradient {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(147, 51, 234, 0.4);
    transition: var(--transition-all);
    transform: translateY(0);
}
.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(147, 51, 234, 0.5);
}
.btn-primary-gradient:disabled {
    opacity: 0.7;
    cursor: wait;
}
.btn-icon {
    width: 1.15rem;
    height: 1.15rem;
    margin-left: 0.5rem;
    transform: rotate(90deg);
}
.btn-spinner {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.section-bg-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.svg-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.blob-purple-top-right {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -40px;
    background: rgba(147,51,234,0.07);
    filter: blur(70px);
}
.blob-blue-bottom-left {
    width: 240px;
    height: 240px;
    bottom: -50px;
    left: -40px;
    background: rgba(59,130,246,0.06);
    filter: blur(70px);
}
.blob-purple-bottom-left {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -60px;
    background: rgba(59,130,246,0.07);
}
.pt-\[88px\] {
    padding-top: 88px;
}
.w-full {
    width: 100%;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.rounded-md {
    border-radius: 0.375rem;
}
.shadow-lg {
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}
.text-white {
    color: white;
}
.font-bold {
    font-weight: 700;
}
.scroll-smooth {
    scroll-behavior: smooth;
}
.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;
}
.focus\:absolute:focus {
    position: absolute;
}
.focus\:left-4:focus {
    left: 1rem;
}
.focus\:top-4:focus {
    top: 1rem;
}
.focus\:outline-none:focus {
    outline: none;
}
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.45);
}
.focus\:ring-brand-blue:focus {
    box-shadow: 0 0 0 2px var(--brand-blue);
}
.focus\:ring-offset-2:focus {
    outline-offset: 2px;
}
.z-\[100\] {
    z-index: 100;
}
.btn-freetool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    color: white;
    background-color: var(--brand-blue);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-all);
    border: none;
    text-decoration: none;
    cursor: pointer;
}
.btn-freetool:hover {
    background-color: #2563eb;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    border-radius: 32px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 255, 255, 1);
}
.gs-feature {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-swiper,
.swiper {
    position: relative;
    width: 100%;
}
.swiper-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}
.swiper-slide {
    flex: 0 0 auto;
    width: min(280px, 100%);
}
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.gallery-pagination-custom {
    margin-top: 1rem;
}
.glightbox {
    display: block;
    color: inherit;
    text-decoration: none;
}
.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.12);
}
.gallery-card .gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    color: white;
}
.gallery-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}
.gallery-caption {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
.animated-glow-line,
.animated-glow-line-yellow,
.animated-glow-svg,
.animated-glow-svg-yellow {
    position: absolute;
    pointer-events: none;
}
.section-desc {
    color: var(--brand-muted);
    max-width: 38rem;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
}
.bg-grid-pattern {
    background-color: var(--brand-bg);
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.text-gradient {
    background: linear-gradient(90deg, #3b82f6, #fb923c);
    -webkit-background-clip: text;
    color: transparent;
}
.gs-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-number {
    font-variant-numeric: tabular-nums;
}
.section-bg-arcs,
.section-bg-diag-lines,
.section-bg-dot-grid,
.section-bg-features,
.section-bg-portfolio,
.section-bg-testimonials,
.section-blob,
.section-blob-amber-bc,
.section-blob-blue-bl,
.section-blob-purple-tr {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.section-bg-arcs {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08), transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.06), transparent 18%);
}
.section-bg-diag-lines {
    background-image: repeating-linear-gradient(45deg, rgba(15, 23, 42, 0.04) 0 1px, transparent 1px 20px);
}
.section-bg-dot-grid {
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}
.section-bg-features {
    background-image:
        linear-gradient(0deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
}
.section-bg-portfolio {
    background-image:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 20%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.08), transparent 25%);
    z-index: 0;
}
.section-bg-portfolio .section-bg-dot-grid,
.section-bg-portfolio .section-blob {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.section-bg-portfolio .section-bg-dot-grid {
    opacity: 0.55;
}
.section-bg-portfolio .section-blob {
    opacity: 0.5;
}
.section-bg-testimonials {
    background-image:
        radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.06), transparent 20%);
}
.section-blob-amber-bc {
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.25), transparent 45%);
}
.section-blob-blue-bl {
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.18), transparent 40%);
}
.section-blob-purple-tr {
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 45%);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.bg-blob {
    position: fixed;
    border-radius: var(--border-radius-full);
    pointer-events: none;
    z-index: -10;
}
.bg-blob-top {
    top: -10%;
    left: -10%;
    width: 384px;
    height: 384px;
    background-color: rgba(109, 158, 235, 0.1);
    filter: blur(100px);
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: var(--transition-all);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #6b9dff, #437cff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(67, 124, 255, 0.4);
}

.desktop-nav {
    display: none;
    gap: 2.25rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-muted);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
.nav-link:hover {
    color: var(--brand-dark);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
    border-radius: var(--border-radius-sm);
}

.header-cta-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .header-cta-wrapper {
        display: flex;
        align-items: center;
    }
}

.btn-primary-dark {
    background-color: var(--brand-darker);
    color: white;
    padding: 10px 28px;
    border-radius: var(--border-radius-full);
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2);
}

.btn-primary-dark:hover {
    background-color: var(--gray-800);
    transform: scale(1.05);
}

.btn-primary-dark:active {
    transform: scale(0.95);
}

.btn-primary-dark:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue), 0 0 0 4px var(--brand-surface);
}

.mobile-menu-btn-wrapper {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-menu-btn-wrapper {
        display: none;
    }
}

.mobile-menu-btn {
    color: var(--brand-muted);
    transition: color 0.2s ease;
    background: none;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
}

.mobile-menu-btn:hover {
    color: var(--brand-text);
}
.mobile-menu-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.mobile-menu-btn svg {
    height: 24px;
    width: 24px;
}

.mobile-nav {
    display: none;
    background-color: white;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.hidden {
    display: none;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-muted);
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--brand-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 1rem 0;
    overflow: hidden;
}

.hero-bg-circle-right {
    position: absolute;
    top: 0;
    right: -10%;
    width: 800px;
    height: 800px;
    pointer-events: none;
    opacity: 0.15;
    display: none;
}
@media (min-width: 768px) { .hero-bg-circle-right { display: block; } }

.hero-bg-circle-left {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 600px;
    height: 600px;
    pointer-events: none;
    opacity: 0.2;
    display: none;
}
@media (min-width: 768px) { .hero-bg-circle-left { display: block; } }

.bg-blob-hero-right {
    position: absolute;
    top: 10%;
    right: 25%;
    width: 384px;
    height: 384px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}
.bg-blob-hero-left {
    position: absolute;
    bottom: 20%;
    left: 25%;
    width: 384px;
    height: 384px;
    background-color: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    text-align: center;
    max-width: 800px; /* 4xl */
    margin: 0 auto;
    z-index: 10;
    position: relative;
    width: 100%;
}

.hero-shape {
    position: absolute;
    display: none;
}
@media (min-width: 1024px) { .hero-shape { display: block; } }

.hero-shape-1 {
    left: -3rem; top: 2.5rem;
    width: 3rem; height: 3rem;
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    transform: rotate(12deg);
}
.hero-shape-2 {
    right: 3rem; top: 8rem;
    width: 26px; height: 26px;
    border: 1.5px solid rgba(249, 115, 22, 0.3);
    border-radius: 0.5rem;
    transform: rotate(-12deg);
}
.hero-shape-3 {
    left: -5rem; bottom: 8rem;
    width: 14px; height: 14px;
    background-color: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
}
.hero-shape-4 {
    right: -4rem; bottom: 2.5rem;
    width: 18px; height: 18px;
    background-color: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 1rem;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
}
.badge-founder {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border-color: var(--brand-blue-border);
}
.badge-dot-blue {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: var(--brand-blue);
}
.badge-wphappybox {
    background-color: var(--warning-light);
    color: #f97316;
    border-color: #fed7aa;
}
.badge-icon {
    width: 14px; height: 14px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .hero-title { font-size: 84px; }
}

.hero-title-accent {
    color: #84a9e9;
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

.hero-description {
    font-size: 1.125rem;
    color: var(--brand-muted);
    margin: 0 auto 3rem;
    max-width: 800px;
    line-height: 1.625;
}
@media (min-width: 768px) {
    .hero-description { font-size: 19px; }
}
.fw-bold { font-weight: 700; color: var(--brand-text); }

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
}
@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

.hero-btn {
    width: 100%;
    padding: 15px 34px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-all);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
@media (min-width: 640px) {
    .hero-btn { width: auto; }
}

.hero-btn svg { width: 1rem; height: 1rem; }

.btn-primary {
    background-color: var(--brand-blue);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
}
.btn-primary:active {
    transform: translateY(0) scale(0.97);
}
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-dark), 0 0 0 4px white;
}

.btn-outline {
    background-color: white;
    color: var(--brand-dark);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.btn-outline:hover {
    background-color: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(15, 23, 42, 0.08);
}
.btn-outline:active {
    transform: translateY(0) scale(0.97);
}
.btn-outline:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue), 0 0 0 4px white;
}

.stats-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-100);
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    max-width: 850px;
    margin: 0 auto 4rem;
    width: 100%;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
}
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .stat-item:not(:first-child) {
        border-left: 1px solid rgba(243, 244, 246, 0.8);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
}
.bg-blue-light { background-color: var(--brand-blue-light); color: var(--brand-blue); }
.bg-orange-light { background-color: var(--warning-light); color: #f97316; }

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-header {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 1rem;
    border-radius: 9999px;
    border: 1px solid var(--brand-blue-border);
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}
@media (min-width: 768px) {
    .section-title { font-size: 44px; }
}

.section-description {
    color: var(--brand-muted);
    max-width: 36rem;
    margin: 0 auto 2rem auto;
    font-size: 15px;
    line-height: 1.625;
}

.section-header-lg {
    margin-bottom: 6rem;
}

.section-title-xl {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--brand-darker);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient-text-green {
    background: linear-gradient(135deg, var(--success), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient-text-yellow {
    background: linear-gradient(135deg, var(--warning), #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-heading-wrapper {
    position: relative;
    display: inline-block;
}

.animated-glow-svg,
.animated-glow-svg-yellow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -0.75rem;
    height: 12px;
    pointer-events: none;
    opacity: 0.8;
}

.animated-glow-svg-blue {
    color: var(--brand-blue-border);
}

.animated-glow-svg-green {
    color: rgba(16, 185, 129, 0.7);
}

.animated-glow-svg-yellow {
    color: #fbbf24;
}

.nav-pill-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background: white;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-darker);
    text-decoration: none;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
}

.nav-pill:hover,
.nav-pill:focus-visible {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.nav-pill-icon {
    width: 12px;
    height: 12px;
    margin-left: 0.5rem;
}

.pill-text {
    margin-right: 0.25rem;
}

.browse-block-compact {
    margin-bottom: 3rem;
}

.nav-pill-purple:hover,
.nav-pill-purple:focus-visible {
    color: var(--brand-purple);
    border-color: rgba(147, 51, 234, 0.8);
}

.nav-pill-green:hover,
.nav-pill-green:focus-visible {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.85);
}

.nav-pill-yellow:hover,
.nav-pill-yellow:focus-visible {
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.85);
}

.nav-pill-label {
    color: var(--brand-muted);
    font-size: 0.7rem;
    margin-right: 0.5rem;
    font-weight: 800;
}

.section-pill-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-dot-blue {
    background-color: var(--brand-blue);
}

.status-dot-green {
    background-color: var(--success);
}

.status-dot-yellow {
    background-color: var(--warning);
}

.browse-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--brand-muted);
}

.browse-title {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.browse-divider {
    width: 1px;
    height: 40px;
}

.browse-divider-blue {
    background: linear-gradient(to bottom, var(--brand-blue-border), transparent);
}

.browse-divider-green {
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.45), transparent);
}

.browse-divider-yellow {
    background: linear-gradient(to bottom, #fcd34d, transparent);
}

.relative-wrapper {
    position: relative;
}

.page-bg-soft {
    background-color: var(--brand-bg);
}

.section-hero-pad {
    padding: 6rem 0;
}

.section-hero-relative {
    position: relative;
    overflow: hidden;
}

.section-overlay-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-page-section {
    overflow: hidden;
}
.about-page-section > .container,
.about-page-section > .container-large {
    position: relative;
    z-index: 1;
}

.profile-card {
    background-color: white;
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.05);
    border-radius: 32px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 0 auto 5rem;
    max-width: 1200px;
    width: 100%;
    border: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
    .profile-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.profile-image-wrapper {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .profile-image-wrapper {
        width: 45%;
        height: 480px;
    }
}
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.profile-content {
    width: 100%;
    padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
    .profile-content {
        width: 55%;
        padding: 1.5rem 2.5rem 1.5rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.profile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.profile-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-dark);
}
.profile-badges {
    display: flex;
    gap: 0.5rem;
}
.badge-sm {
    padding: 5px 0.75rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    text-transform: uppercase;
}
.badge-sm-blue {
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border-color: var(--brand-blue-border);
}
.badge-sm-orange {
    background-color: var(--warning-light);
    color: #f97316;
    border-color: #fed7aa;
}

.profile-text {
    color: var(--brand-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-right: 0.5rem;
}
.profile-text p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background-color: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: var(--transition-all);
}
.social-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
}
.social-link-fb:hover {
    color: var(--brand-blue);
    border-color: #bfdbfe;
    background-color: #eff6ff;
}
.social-link-tw:hover {
    color: black;
    border-color: var(--gray-300);
    background-color: var(--gray-100);
}
.social-link-ig:hover {
    color: #db2777;
    border-color: #fbcfe8;
    background-color: #fdf2f8;
}
.social-link svg {
    width: 14px;
    height: 14px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}
.gallery-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0;
}
.gallery-nav {
    display: flex;
    gap: 0.5rem;
}
.gallery-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background-color: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.2s, background-color 0.2s;
    cursor: pointer;
}
.gallery-nav-btn:hover {
    color: var(--brand-dark);
    background-color: var(--gray-50);
}
.gallery-nav-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
}
.gallery-nav-btn svg {
    width: 1rem;
    height: 1rem;
}

.gallery-btn-next,
.gallery-btn-prev {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background-color: white;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-all);
    cursor: pointer;
}

.gallery-btn-next:hover,
.gallery-btn-prev:hover {
    background-color: var(--brand-blue-light);
    border-color: var(--brand-blue-border);
}

.gallery-swiper {
    overflow: hidden;
    padding-bottom: 0.5rem;
}

.gallery-swiper .swiper-wrapper {
    gap: 0;
}

.gallery-swiper .swiper-slide {
    width: auto;
}

.gallery-card {
    height: 320px;
}

.gallery-card .gallery-img {
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.pagination-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-300);
    transition: background-color 0.2s;
    cursor: pointer;
    border: none;
    padding: 0;
}
.pagination-dot:hover {
    background-color: #9ca3af;
}
.pagination-dot.active {
    width: 18px;
    background-color: var(--brand-blue);
    border-radius: 9999px;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}
@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

.feature-card-accent {
    position: absolute;
    left: 0;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 3px;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--brand-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-right: 1rem;
}

.feature-card-line {
    width: 24px;
    height: 2px;
    border-radius: 9999px;
}

/* Specific Feature Colors */
.fc-1 .feature-card-accent, .fc-1 .feature-card-line { background-color: var(--accent); }
.fc-1 .feature-icon-wrapper { background-color: var(--brand-blue-light); color: var(--accent); }

.fc-2 .feature-card-accent, .fc-2 .feature-card-line { background-color: var(--success); }
.fc-2 .feature-icon-wrapper { background-color: var(--success-light); color: var(--success); }

.fc-3 .feature-card-accent, .fc-3 .feature-card-line { background-color: var(--warning); }
.fc-3 .feature-icon-wrapper { background-color: var(--warning-light); color: var(--warning); }

.fc-4 .feature-card-accent, .fc-4 .feature-card-line { background-color: #a78bfa; }
.fc-4 .feature-icon-wrapper { background-color: var(--brand-purple-light); color: #a78bfa; }

.fc-5 .feature-card-accent, .fc-5 .feature-card-line { background-color: var(--danger); }
.fc-5 .feature-icon-wrapper { background-color: var(--danger-light); color: var(--danger); }

.fc-6 .feature-card-accent, .fc-6 .feature-card-line { background-color: var(--info); }
.fc-6 .feature-icon-wrapper { background-color: var(--info-light); color: var(--info); }

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.project-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    background-color: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
}
@media (min-width: 768px) {
    .project-card { flex-direction: row; }
    .project-card.reverse { flex-direction: row-reverse; }
}

.project-content {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
@media (min-width: 768px) {
    .project-content {
        width: 50%;
        padding: 3rem 2.5rem;
    }
}
@media (min-width: 1024px) {
    .project-content { padding: 3.5rem 3rem; }
}

.project-arrow-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    background-color: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
}
@media (min-width: 768px) {
    .project-arrow-btn {
        top: 2.5rem;
        right: 2.5rem;
    }
}
.project-arrow-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.project-number-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: var(--gray-300);
}
.project-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.project-line {
    height: 1px;
    background-color: var(--gray-100);
    flex-grow: 1;
}

.project-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
    .project-title { font-size: 2.25rem; }
}

.project-subtitle {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
    color: var(--brand-muted);
}

.project-description {
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    padding-right: 0;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
    column-gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 13px;
    color: var(--brand-muted);
    font-weight: 500;
}
@media (min-width: 640px) {
    .project-features { grid-template-columns: repeat(2, 1fr); }
}

.project-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.project-feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}
.project-feature-icon svg {
    width: 10px;
    height: 10px;
}

.project-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
@media (min-width: 640px) {
    .project-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

.btn-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-all);
    border: none;
    cursor: pointer;
    text-decoration: none;
    min-width: 220px;
}
.btn-project:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--brand-blue);
}
.btn-project:active {
    transform: scale(0.95);
}
.btn-project svg {
    width: 1rem;
    height: 1rem;
}

.project-trust-badge {
    display: inline-flex;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    border: 1px solid;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.project-image-side {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 350px;
    background-color: transparent;
}
@media (min-width: 768px) {
    .project-image-side {
        width: 50%;
        padding: 2.5rem;
    }
}
.project-img {
    width: 100%;
    height: auto;
    min-height: 260px;
    max-height: 420px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.mac-dots {
    position: absolute;
    top: 1.5rem;
    display: flex;
    gap: 0.375rem;
}
.mac-dots.right { right: 1.5rem; }
.mac-dots.left { left: 1.5rem; }

.mac-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-300);
}

/* Specific Project Styles */
/* Project 1: Blue */
.proj-1 .project-arrow-btn { color: var(--brand-blue); }
.proj-1 .project-arrow-btn:hover { background-color: var(--brand-blue-light); border-color: var(--brand-blue-border); }
.proj-1 .project-subtitle { color: var(--brand-blue); }
.proj-1 .project-feature-icon { border-color: var(--brand-blue-border); color: var(--brand-blue); }
.proj-1 .btn-project { background-color: var(--brand-blue); box-shadow: 0 8px 20px rgba(59,130,246,0.25); }
.proj-1 .btn-project:hover { background-color: #2563eb; box-shadow: 0 8px 25px rgba(59,130,246,0.35); }
.proj-1 .project-trust-badge { border-color: var(--brand-blue-border); background-color: var(--brand-blue-light); color: var(--brand-blue); }
.proj-1 .project-image-side { background-color: #f0f9ff; }
.proj-1 .project-img { box-shadow: 0 15px 50px rgba(59,130,246,0.15); }

/* Project 2: Dark Gray (#202020) */
.proj-2 .project-arrow-btn { color: #202020; }
.proj-2 .project-arrow-btn:hover { background-color: #f3f4f6; border-color: #e5e7eb; }
.proj-2 .project-subtitle { color: #202020; }
.proj-2 .project-feature-icon { border-color: #e5e7eb; color: #202020; }
.proj-2 .btn-project { background-color: #202020; box-shadow: 0 8px 20px rgba(32,32,32,0.25); }
.proj-2 .btn-project:hover { background-color: #111111; box-shadow: 0 8px 25px rgba(32,32,32,0.35); }
.proj-2 .project-trust-badge { border-color: #e5e7eb; background-color: #f9fafb; color: #202020; }
.proj-2 .project-image-side { background-color: #f4f4f5; }
.proj-2 .project-img { box-shadow: 0 15px 50px rgba(32,32,32,0.15); }

/* ==========================================================================
   Free Tools Section
   ========================================================================== */
.freetools-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--brand-bg);
    position: relative;
    border-top: 1px solid var(--gray-100);
}

.freetools-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.freetools-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}
@media (min-width: 768px) {
    .freetools-title { font-size: 2.75rem; }
}

.freetools-desc {
    color: var(--brand-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto;
}

.freetools-stack {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;
}

.freetool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 48rem;
    width: 100%;
}

.freetool-header {
    margin-bottom: 2rem;
}

.freetool-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.freetool-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--brand-blue);
}

.freetool-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    border: 1px solid var(--brand-blue-border);
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.freetool-subtitle {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.freetool-description {
    color: var(--gray-500);
    font-size: 0.9375rem; /* 15px */
    line-height: 1.7;
    max-width: 40rem;
    margin: 0 auto;
}

.freetool-mockup-container {
    width: 100%;
    margin-bottom: 2rem;
}

.mockup-browser {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
}

.mockup-topbar {
    background-color: #f8fafc;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-dots {
    display: flex;
    gap: 0.375rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.mockup-addressbar {
    width: 40%;
    max-width: 250px;
    height: 1rem;
    background-color: white;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

.freetool-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.freetool-feature {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    background-color: white;
    color: var(--gray-500);
    font-size: 0.6875rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: var(--transition-all);
}
.freetool-feature:hover {
    border-color: var(--gray-300);
    color: var(--brand-dark);
}

/* Reusing .btn-project for the Visit button */

/* ==========================================================================
   New Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f8fafc; /* light background just in case, but using bg-grid-pattern */
    position: relative;
    overflow: hidden;
}

.testi-header-area {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .testi-title { font-size: 2.75rem; }
}

.testi-desc {
    color: var(--brand-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

.testi-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
    max-width: 56rem;
    margin: 0 auto;
}

/* Faint connecting line behind cards */
.testi-stack::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.testi-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 40rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.testi-card.left-align {
    align-self: flex-start;
}

.testi-card.right-align {
    align-self: flex-end;
}

.testi-floating-icon {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testi-floating-icon svg {
    width: 12px;
    height: 12px;
}

/* Floating positions */
.testi-card.left-align .testi-floating-icon {
    top: -14px;
    left: -14px;
}
.testi-card.right-align .testi-floating-icon {
    top: -14px;
    right: -14px;
}

/* Colors */
.testi-floating-icon.blue, .testi-avatar.blue { background-color: #3b82f6; }
.testi-floating-icon.purple, .testi-avatar.purple { background-color: #a855f7; }
.testi-floating-icon.red, .testi-avatar.red { background-color: #ef4444; }
.testi-floating-icon.green, .testi-avatar.green { background-color: #10b981; }

.testi-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.testi-stars .star {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.testi-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--brand-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testi-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
}

.testi-author-info {
    display: flex;
    flex-direction: column;
}

.testi-name {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.testi-role {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.testi-action {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.testi-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background-color: transparent;
    color: var(--brand-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-all);
    border: 1px solid var(--gray-200);
}
.testi-action-btn:hover {
    background-color: var(--gray-100);
    color: var(--brand-dark);
}
.testi-action-btn svg {
    width: 16px;
    height: 16px;
    color: var(--brand-blue);
}

/* ==========================================================================
   New Footer Section
   ========================================================================== */
.site-footer {
    background-color: #f8fafc; /* Very light gray */
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand-col {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-all);
    border: 1px solid var(--gray-200);
}

.social-circle:hover {
    background-color: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

.social-circle svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-all);
}

.footer-links a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copy {
    color: var(--gray-400);
    font-size: 0.8125rem;
}

.footer-copy span.heart {
    color: #ef4444;
}

.scroll-top-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition-all);
    text-decoration: none;
}

.scroll-top-btn:hover {
    background-color: var(--gray-200);
    color: var(--brand-dark);
}

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

/* ==========================================================================
   Noise Overlay (Premium Tactile Feel)
   ========================================================================== */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Replaced Tailwind Utility Classes */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.pill-status-blue {
    background: rgba(59,130,246,0.08);
    border-color: rgba(191,219,254,0.8);
}

.nav-pill-blue {
    color: var(--brand-blue);
    background-color: rgba(59,130,246,0.1);
}


.section-description.section-description-lg { margin-bottom: 3rem; }


/* ==========================================================================
   ✦ POLISH LAYER — UI/UX Refinements
   All improvements are additive overrides. No layout changes.
   Sections: Typography · Colors · Navbar · Hero · Stats · About
             Features · Portfolio · Free Tools · Testimonials · Footer · Utility
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLE UPGRADES
   Better shadow scale, refined transition, smoother easing
   -------------------------------------------------------------------------- */
:root {
    /* Refined shadow scale */
    --shadow-xs:  0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm:  0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md:  0 4px 12px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg:  0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-xl:  0 24px 48px rgba(15, 23, 42, 0.10), 0 8px 16px rgba(15, 23, 42, 0.05);
    --shadow-blue: 0 4px 16px rgba(59, 130, 246, 0.30);
    --shadow-blue-lg: 0 8px 28px rgba(59, 130, 246, 0.38);

    /* Smoother easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

    /* Refined transitions */
    --transition-fast:   all 0.15s var(--ease-in-out);
    --transition-all:    all 0.22s var(--ease-in-out);
    --transition-slow:   all 0.40s var(--ease-out-expo);

    /* Typography scale — clamp-based */
    --text-xs:   clamp(0.6875rem, 1.2vw, 0.75rem);
    --text-sm:   clamp(0.8125rem, 1.5vw, 0.875rem);
    --text-base: clamp(0.9375rem, 1.8vw, 1rem);
    --text-lg:   clamp(1rem, 2vw, 1.125rem);
    --text-xl:   clamp(1.125rem, 2.2vw, 1.25rem);
    --text-2xl:  clamp(1.375rem, 3vw, 1.75rem);
    --text-3xl:  clamp(1.75rem, 4vw, 2.25rem);
    --text-4xl:  clamp(2rem, 5vw, 2.75rem);

    /* Spacing scale */
    --space-1: clamp(0.375rem, 1vw, 0.5rem);
    --space-2: clamp(0.625rem, 1.5vw, 0.875rem);
    --space-3: clamp(0.875rem, 2vw, 1.25rem);
    --space-4: clamp(1.25rem, 3vw, 2rem);
    --space-5: clamp(2rem, 5vw, 3.5rem);
    --space-6: clamp(3rem, 7vw, 5.5rem);

    /* Border radius scale */
    --radius-sm:  0.375rem;
    --radius-md:  0.75rem;
    --radius-lg:  1rem;
    --radius-xl:  1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. BODY & BASE TYPOGRAPHY
   Better antialiasing, refined line heights
   -------------------------------------------------------------------------- */
body {
    font-size: var(--text-base);
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* --------------------------------------------------------------------------
   3. NAVBAR POLISH
   Tighter border, better blur, refined link states
   -------------------------------------------------------------------------- */
.site-header {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom-color: rgba(226, 232, 240, 0.6);
    transition: box-shadow 0.3s var(--ease-in-out),
                background-color 0.3s var(--ease-in-out);
}

.site-header.shadow-sm {
    box-shadow: 0 1px 0 rgba(15,23,42,0.06), 0 4px 16px rgba(15,23,42,0.04);
}

.logo-link {
    letter-spacing: -0.03em;
    transition: opacity 0.2s ease;
}
.logo-link:hover { opacity: 0.85; }

.logo-icon {
    background: linear-gradient(135deg, #5a8ef5 0%, #3b6ff0 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35),
                inset 0 1px 0 rgba(255,255,255,0.18);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.nav-link {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: #64748b;
    letter-spacing: -0.01em;
}
.nav-link:hover { color: #0f172a; }
.nav-link::after {
    height: 1.5px;
    background: linear-gradient(90deg, var(--brand-blue), #60a5fa);
    border-radius: 2px;
    transition: width 0.28s var(--ease-out-expo);
}

.mobile-nav-link {
    font-size: clamp(15px, 3vw, 16px);
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { padding-left: 0.5rem; }

/* --------------------------------------------------------------------------
   4. HERO SECTION
   Refined typography, smoother badge styles, better button hierarchy
   -------------------------------------------------------------------------- */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 84px);
    letter-spacing: -0.04em;
    line-height: 1.04;
    font-weight: 800;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 19px);
    color: #64748b;
    line-height: 1.7;
    letter-spacing: -0.01em;
    max-width: 680px;
}

.hero-badges {
    gap: 0.625rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.badge {
    font-size: clamp(11px, 1.3vw, 13px);
    letter-spacing: 0.005em;
    font-weight: 700;
    padding: 5px 14px;
    transition: var(--transition-fast);
}

.badge-founder {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 1px 3px rgba(59,130,246,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.badge-wphappybox {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    box-shadow: 0 1px 3px rgba(249,115,22,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Hero CTA Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.18);
    font-size: clamp(14px, 1.5vw, 15px);
    letter-spacing: -0.01em;
    padding: 14px clamp(24px, 3vw, 34px);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: var(--shadow-blue-lg);
    transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
    border-color: rgba(203, 213, 225, 0.8);
    color: #1e293b;
    font-size: clamp(14px, 1.5vw, 15px);
    letter-spacing: -0.01em;
    padding: 14px clamp(24px, 3vw, 34px);
    box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0) scale(0.98); }

.hero-actions {
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

/* Hero floating shapes — more refined */
.hero-shape-1 {
    border-color: rgba(59, 130, 246, 0.18);
    backdrop-filter: blur(1px);
}
.hero-shape-2 {
    border-color: rgba(249, 115, 22, 0.22);
}

/* --------------------------------------------------------------------------
   5. STATS CARD
   More refined glassmorphism, better number styling
   -------------------------------------------------------------------------- */
.stats-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: clamp(20px, 3vw, 28px);
    box-shadow: 0 8px 32px rgba(15,23,42,0.06),
                0 2px 8px rgba(15,23,42,0.04),
                inset 0 1px 0 rgba(255,255,255,0.9);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}

.stat-icon-wrapper {
    width: clamp(42px, 6vw, 50px);
    height: clamp(42px, 6vw, 50px);
    border-radius: 12px;
    transition: transform 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-xs);
}
.stat-item:hover .stat-icon-wrapper { transform: scale(1.08); }

.stat-value {
    font-size: clamp(26px, 4vw, 32px);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-label {
    font-size: clamp(9px, 1.2vw, 10px);
    letter-spacing: 0.18em;
    font-weight: 800;
    color: #94a3b8;
}

/* Divider refinement on desktop */
@media (min-width: 768px) {
    .stat-item:not(:first-child) {
        border-left: 1px solid rgba(226, 232, 240, 0.6);
    }
}

/* --------------------------------------------------------------------------
   6. SECTION HEADERS & BADGES
   Clamp-based type, better section badge
   -------------------------------------------------------------------------- */
.section-badge {
    font-size: clamp(11px, 1.3vw, 12px);
    letter-spacing: 0.04em;
    font-weight: 700;
    padding: 5px 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(191, 219, 254, 0.8);
    box-shadow: 0 1px 3px rgba(59,130,246,0.10),
                inset 0 1px 0 rgba(255,255,255,0.85);
    transition: var(--transition-fast);
}

.section-title {
    font-size: clamp(1.875rem, 4.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.18;
    font-weight: 800;
}

.section-description {
    font-size: clamp(14px, 1.7vw, 15px);
    line-height: 1.7;
    color: #64748b;
    max-width: 38rem;
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* --------------------------------------------------------------------------
   7. ABOUT / PROFILE CARD
   Better radius, shadow layering, social link polish
   -------------------------------------------------------------------------- */
.profile-card {
    border-radius: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(226, 232, 240, 0.6);
    transition: box-shadow 0.4s var(--ease-out-expo);
}
.profile-card:hover {
    box-shadow: var(--shadow-xl);
}

.profile-img {
    border-radius: clamp(16px, 2.5vw, 24px);
    transition: transform 0.5s var(--ease-out-expo);
}
.profile-card:hover .profile-img {
    transform: scale(1.01);
}

.profile-name {
    font-size: clamp(22px, 3vw, 26px);
    letter-spacing: -0.03em;
    font-weight: 800;
}

.profile-text {
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.85;
    color: #64748b;
}

.badge-sm {
    font-size: clamp(9px, 1.2vw, 10px);
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.badge-sm-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.badge-sm-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Social links — refined icons */
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-all);
}
.social-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.social-link svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   8. GALLERY
   Better nav buttons, smoother card hover
   -------------------------------------------------------------------------- */
.gallery-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    letter-spacing: -0.02em;
}

.gallery-nav-btn {
    width: 34px;
    height: 34px;
    border-color: rgba(203, 213, 225, 0.7);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-all);
}
.gallery-nav-btn:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.gallery-card {
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.08);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.gallery-card:hover {
    box-shadow: 0 16px 48px rgba(15,23,42,0.12);
    transform: translateY(-3px);
}
.gallery-card .gallery-img {
    transition: transform 0.55s var(--ease-out-expo);
}
.gallery-card:hover .gallery-img { transform: scale(1.04); }

.pagination-dot.active {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

/* --------------------------------------------------------------------------
   9. FEATURES GRID
   Better card shadows, accent bar, hover lift
   -------------------------------------------------------------------------- */
.feature-card {
    border-radius: clamp(16px, 2vw, 24px);
    border-color: rgba(226, 232, 240, 0.5);
    box-shadow: var(--shadow-sm);
    transition: transform 0.38s var(--ease-out-expo),
                box-shadow 0.38s var(--ease-out-expo),
                border-color 0.22s ease;
    padding: clamp(1.5rem, 3vw, 2rem);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(203, 213, 225, 0.7);
}

.feature-icon-wrapper {
    width: clamp(38px, 5vw, 44px);
    height: clamp(38px, 5vw, 44px);
    border-radius: 12px;
    transition: transform 0.3s var(--ease-out-expo);
    box-shadow: var(--shadow-xs);
}
.feature-card:hover .feature-icon-wrapper { transform: scale(1.1) rotate(-3deg); }

.feature-title {
    font-size: clamp(1rem, 1.8vw, 1.0625rem);
    letter-spacing: -0.02em;
    font-weight: 800;
    margin-bottom: 0.625rem;
}

.feature-description {
    font-size: clamp(12.5px, 1.5vw, 13px);
    line-height: 1.8;
    color: #64748b;
}

.feature-card-accent {
    width: 2.5px;
    border-radius: 2px;
    top: 2rem;
    bottom: 2rem;
}

/* --------------------------------------------------------------------------
   10. PORTFOLIO / PROJECT CARDS
   Better image hover, refined CTA buttons, trust badge polish
   -------------------------------------------------------------------------- */
.project-card {
    border-radius: clamp(20px, 3vw, 32px);
    border-color: rgba(226, 232, 240, 0.5);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
    overflow: hidden;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.project-content {
    padding: clamp(1.75rem, 3vw, 2rem);
}
@media (min-width: 768px) {
    .project-content { padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 3vw, 2.5rem); }
}
@media (min-width: 1024px) {
    .project-content { padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3.5vw, 3rem); }
}

.project-title {
    font-size: clamp(1.625rem, 3.5vw, 2.25rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.project-subtitle {
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.project-description {
    font-size: clamp(14px, 1.6vw, 15px);
    line-height: 1.78;
    color: #64748b;
}

.project-number {
    font-size: clamp(10px, 1.3vw, 12px);
    letter-spacing: 0.12em;
}

.project-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-all);
}
.project-arrow-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px) scale(1.05);
}

/* Project images */
.project-img {
    border-radius: clamp(8px, 1.5vw, 12px);
    transition: transform 0.5s var(--ease-out-expo);
}
.project-card:hover .project-img { transform: scale(1.015); }

/* Project action buttons */
.btn-project {
    font-size: clamp(13px, 1.4vw, 14px);
    padding: 0.8125rem clamp(1.25rem, 2.5vw, 1.5rem);
    border-radius: var(--radius-full);
    letter-spacing: -0.005em;
    transition: var(--transition-all);
    min-width: unset;
    box-shadow: var(--shadow-sm);
}
.btn-project:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-project:active { transform: scale(0.97); }

.project-trust-badge {
    font-size: clamp(10px, 1.2vw, 11px);
    letter-spacing: 0.02em;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
}

/* mac dots refinement */
.mac-dot {
    width: 8px;
    height: 8px;
}
.mac-dots .mac-dot:nth-child(1) { background-color: #ff5f57; }
.mac-dots .mac-dot:nth-child(2) { background-color: #ffbd2e; }
.mac-dots .mac-dot:nth-child(3) { background-color: #28c840; }

/* --------------------------------------------------------------------------
   11. FREE TOOLS SECTION
   Better mockup browser chrome, refined badges
   -------------------------------------------------------------------------- */
.freetools-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}
.freetools-desc {
    font-size: clamp(14px, 1.7vw, 15px);
    line-height: 1.7;
}

.freetool-card {
    padding: 0 clamp(0.5rem, 2vw, 0);
}

.freetool-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    letter-spacing: -0.03em;
}

.freetool-subtitle {
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 0;
}

.freetool-description {
    font-size: clamp(14px, 1.6vw, 15px);
    line-height: 1.72;
    color: #64748b;
}

.freetool-badge {
    font-size: clamp(9px, 1.1vw, 10px);
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.freetool-feature {
    font-size: clamp(11px, 1.3vw, 11px);
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 4px 12px;
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-fast);
}
.freetool-feature:hover {
    border-color: #94a3b8;
    color: #1e293b;
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

/* Browser mockup — refined chrome */
.mockup-browser {
    border-radius: clamp(10px, 2vw, 16px);
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(226, 232, 240, 0.8);
    border: none;
    transition: box-shadow 0.4s var(--ease-out-expo);
}
.freetool-card:hover .mockup-browser {
    box-shadow: var(--shadow-xl),
                0 0 0 1px rgba(203, 213, 225, 0.8);
}

.mockup-topbar {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom-color: rgba(226, 232, 240, 0.6);
    padding: 0.5rem 1rem;
}

.mockup-addressbar {
    height: 18px;
    width: 42%;
    background: white;
    border-radius: var(--radius-full);
    border-color: rgba(226, 232, 240, 0.7);
    box-shadow: inset 0 1px 2px rgba(15,23,42,0.04);
}

.mockup-dots {
    gap: 5px;
}
.mockup-topbar .mac-dot { width: 8px; height: 8px; }
.mockup-topbar .mac-dot:nth-child(1) { background-color: #ff5f57; }
.mockup-topbar .mac-dot:nth-child(2) { background-color: #ffbd2e; }
.mockup-topbar .mac-dot:nth-child(3) { background-color: #28c840; }

.btn-freetool {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.15);
    font-size: clamp(13px, 1.5vw, 14px);
    letter-spacing: -0.005em;
    padding: 0.875rem clamp(1.25rem, 2.5vw, 1.5rem);
    transition: var(--transition-all);
}
.btn-freetool:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: var(--shadow-blue-lg);
    transform: translateY(-2px);
}
.btn-freetool:active { transform: scale(0.97); }

/* --------------------------------------------------------------------------
   12. TESTIMONIALS SECTION
   Better card depth, refined author styling
   -------------------------------------------------------------------------- */
.testi-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
}
.testi-desc {
    font-size: clamp(14px, 1.7vw, 15px);
    line-height: 1.7;
}

.testi-card {
    border-radius: clamp(14px, 2vw, 18px);
    border-color: rgba(226, 232, 240, 0.5);
    box-shadow: var(--shadow-md);
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: transform 0.38s var(--ease-out-expo),
                box-shadow 0.38s var(--ease-out-expo);
}
.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testi-text {
    font-size: clamp(14px, 1.7vw, 15px);
    line-height: 1.75;
    color: #334155;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.testi-name {
    font-size: clamp(13px, 1.5vw, 14px);
    letter-spacing: -0.02em;
    font-weight: 800;
}

.testi-role {
    font-size: clamp(11px, 1.3vw, 12px);
    color: #94a3b8;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.testi-floating-icon {
    width: 26px;
    height: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.testi-stars {
    gap: 0.2rem;
    margin-bottom: 0.875rem;
}
.testi-stars .star {
    width: 14px;
    height: 14px;
    color: #f59e0b;
    filter: drop-shadow(0 1px 2px rgba(245,158,11,0.3));
}

.testi-action-btn {
    font-size: clamp(12px, 1.5vw, 13px);
    letter-spacing: -0.01em;
    padding: 0.75rem 1.375rem;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-all);
}
.testi-action-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    border-color: #94a3b8;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   Refined link hover, better copy text
   -------------------------------------------------------------------------- */
.site-footer {
    border-top-color: rgba(226, 232, 240, 0.6);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-logo {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    letter-spacing: -0.025em;
    transition: var(--transition-fast);
}
.footer-logo:hover { opacity: 0.8; }

.footer-logo-icon {
    background: linear-gradient(135deg, #5a8ef5, #3b6ff0);
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.footer-desc {
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.7;
    color: #94a3b8;
}

.footer-heading {
    font-size: clamp(10px, 1.2vw, 11px);
    letter-spacing: 0.08em;
    color: #0f172a;
}

.footer-links a {
    font-size: clamp(13px, 1.5vw, 14px);
    color: #94a3b8;
    transition: color 0.18s ease;
}
.footer-links a:hover { color: #3b82f6; }

.footer-copy {
    font-size: clamp(12px, 1.4vw, 13px);
    color: #cbd5e1;
    letter-spacing: -0.01em;
}

.scroll-top-btn {
    width: 36px;
    height: 36px;
    border-color: rgba(226, 232, 240, 0.7);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-all);
}
.scroll-top-btn:hover {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   14. GLOBAL SECTION SPACING
   Consistent vertical rhythm via clamp
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.freetools-section,
.testimonials-section {
    padding-top: clamp(3.5rem, 8vw, 6rem);
    padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.hero-section {
    padding: clamp(4rem, 8vw, 6rem) 1rem 0;
}

/* --------------------------------------------------------------------------
   15. TEXT GRADIENT — more refined direction
   -------------------------------------------------------------------------- */
.text-gradient {
    background: linear-gradient(100deg, #3b82f6 15%, #f97316 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --------------------------------------------------------------------------
   16. SCROLL REVEAL — prevent FOUC (Flash of Unstyled Content)
   Keep base opacity:1 so content is visible without JS
   -------------------------------------------------------------------------- */
.gs-reveal,
.gs-feature {
    will-change: opacity, transform;
}

/* --------------------------------------------------------------------------
   17. MOBILE REFINEMENTS (< 640px)
   Tighter spacing, better tap targets
   -------------------------------------------------------------------------- */
@media (max-width: 639px) {
    .hero-actions {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn {
        padding: 14px 28px;
    }
    .stats-card {
        padding: 1.5rem 1rem;
    }
    .stats-grid {
        gap: 1.75rem 0.75rem;
    }
    .profile-card {
        padding: 8px;
    }
    .testi-card {
        padding: 1.375rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .btn-project {
        width: 100%;
    }
    .project-actions {
        gap: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   18. TABLET REFINEMENTS (640px – 1023px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) and (max-width: 1023px) {
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 60px);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   19. LARGE DESKTOP (≥ 1440px)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
    .container,
    .container-large {
        max-width: 1280px;
    }
    .hero-title {
        font-size: clamp(84px, 6vw, 96px);
    }
}

/* --------------------------------------------------------------------------
   20. FOCUS STATES — Accessible & Styled
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   21. SELECTION COLOR
   -------------------------------------------------------------------------- */
::selection {
    background: rgba(59, 130, 246, 0.18);
    color: #1e40af;
}

/* --------------------------------------------------------------------------
   END POLISH LAYER
   ========================================================================== */
