/* ============================================
   PT. Asta Karya Solusi - Main Stylesheet
   Design: Modern Corporate with Bold Accents
   ============================================ */

:root {
    /* Primary Palette */
    --navy: #0f1b33;
    --navy-light: #1a2d52;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-dark: #1d4ed8;
    
    /* Accent */
    --gold: #FFC107;
    --gold-dark: #e6ac00;
    --gold-light: #ffd54f;
    --orange: #FF6B35;
    --orange-light: #ff8a5c;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-50: #f1f3f8;
    --gray-100: #e2e6ef;
    --gray-200: #c5ccd9;
    --gray-400: #8892a4;
    --gray-600: #4a5568;
    --gray-800: #2d3748;
    --dark: #1a202c;
    
    /* Functional */
    --success: #10b981;
    --shadow-sm: 0 2px 8px rgba(15,27,51,0.06);
    --shadow-md: 0 8px 30px rgba(15,27,51,0.1);
    --shadow-lg: 0 20px 60px rgba(15,27,51,0.15);
    --shadow-xl: 0 30px 80px rgba(15,27,51,0.2);
    --shadow-blue: 0 8px 30px rgba(37,99,235,0.3);
    --shadow-gold: 0 8px 30px rgba(255,193,7,0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-py: 100px;
    --container-width: 1200px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::after { width: 300px; height: 300px; }

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,99,235,0.4); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,193,7,0.4); }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn i { font-size: 0.85rem; transition: transform 0.3s; }
.btn:hover i { transform: translateX(4px); }

/* ============ SECTION UTILITIES ============ */
.section { padding: var(--section-py) 0; position: relative; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(37,99,235,0.08);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(255,193,7,0.15);
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

/* Navbar transparent on dark page headers */
.navbar.navbar-dark .logo-name { color: var(--white); }
.navbar.navbar-dark .logo-sub { color: var(--gold); }
.navbar.navbar-dark .nav-links a { color: rgba(255,255,255,0.8); }
.navbar.navbar-dark .nav-links a:hover,
.navbar.navbar-dark .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.navbar-dark .hamburger span { background: var(--white); }
.navbar.navbar-dark .btn-nav { background: var(--white); color: var(--navy); box-shadow: none; }
.navbar.navbar-dark .btn-nav:hover { background: var(--gold); }

/* When scrolled, revert to normal light navbar */
.navbar.navbar-dark.scrolled .logo-name { color: var(--navy); }
.navbar.navbar-dark.scrolled .logo-sub { color: var(--blue); }
.navbar.navbar-dark.scrolled .nav-links a { color: var(--gray-600); }
.navbar.navbar-dark.scrolled .nav-links a:hover,
.navbar.navbar-dark.scrolled .nav-links a.active { color: var(--blue); background: rgba(37,99,235,0.06); }
.navbar.navbar-dark.scrolled .hamburger span { background: var(--navy); }
.navbar.navbar-dark.scrolled .btn-nav { background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: var(--white); box-shadow: var(--shadow-blue); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-icon svg { width: 44px; height: 44px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: rgba(37,99,235,0.06);
}

.btn-nav { padding: 10px 24px; font-size: 0.85rem; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.hamburger span {
    width: 26px; height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 50%, #fef9e7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge-dot {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.7rem;
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

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

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-stat-num span { color: var(--blue); }

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s 0.3s ease both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: -20px; left: -30px;
    display: flex; align-items: center; gap: 14px;
}

.hero-float-card.card-2 {
    top: 40px; right: -20px;
    text-align: center;
    animation-delay: 1.5s;
}

.float-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.float-icon.blue { background: rgba(37,99,235,0.1); color: var(--blue); }
.float-icon.gold { background: rgba(255,193,7,0.15); color: var(--gold-dark); }

.float-label { font-size: 0.8rem; color: var(--gray-400); }
.float-value { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 1.1rem; }

/* ============ STATS BAR ============ */
.stats-bar {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-bar-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px; top: 10%;
    height: 80%;
    width: 1px;
    background: var(--gray-100);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span { color: var(--gold); }

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ============ ABOUT SECTION ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    width: 75%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-award {
    position: absolute;
    bottom: 60px; left: 10px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.award-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.award-text h5 { font-size: 0.95rem; margin-bottom: 2px; }
.award-text p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }

.about-content .section-badge { margin-bottom: 16px; }

.about-content h2 { margin-bottom: 20px; }

.about-desc {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.3s;
}

.about-feature:hover { background: rgba(37,99,235,0.06); transform: translateX(6px); }

.about-feature i { color: var(--blue); font-size: 1.1rem; }

.about-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.about-author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-author-name { font-weight: 700; color: var(--navy); }
.about-author-role { font-size: 0.85rem; color: var(--gray-400); }

/* ============ SERVICES ============ */
.services-section { background: var(--navy); overflow: hidden; }

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

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    margin-bottom: 20px;
}

.service-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: transform 0.4s;
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-icon.blue { background: rgba(37,99,235,0.2); color: var(--blue-light); }
.service-icon.gold { background: rgba(255,193,7,0.2); color: var(--gold); }
.service-icon.orange { background: rgba(255,107,53,0.2); color: var(--orange-light); }
.service-icon.green { background: rgba(16,185,129,0.2); color: var(--success); }

.service-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover { color: var(--gold-light); }
.service-link:hover i { transform: translateX(5px); }
.service-link i { transition: transform 0.3s; font-size: 0.8rem; }

/* ============ PORTFOLIO / CASE STUDIES ============ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-card:hover .portfolio-card-image img { transform: scale(1.08); }

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,27,51,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.portfolio-overlay-btn {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    transition: all 0.3s;
}

.portfolio-overlay-btn:hover { background: var(--blue); color: var(--white); }

.portfolio-card-body { padding: 24px; }

.portfolio-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(37,99,235,0.08);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.portfolio-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.portfolio-card:hover .portfolio-card-body h3 { color: var(--blue); }

.portfolio-card-body p {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin: 0;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-100);
    background: transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

.testimonial-quote-icon {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 3rem;
    color: rgba(37,99,235,0.06);
    font-family: serif;
    line-height: 1;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 200px; height: 200px;
    background: rgba(255,193,7,0.1);
    border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; flex: 1; }

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin: 0;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============ BLOG SECTION ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--gray-100);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-body { padding: 28px; }

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.blog-meta i { color: var(--blue); }

.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-body h3 { color: var(--blue); }

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 18px;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more:hover { color: var(--blue-dark); }
.blog-read-more:hover i { transform: translateX(5px); }
.blog-read-more i { font-size: 0.8rem; transition: transform 0.3s; }

/* ============ PAGE HEADER (for inner pages) ============ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumbs a:hover { color: var(--gold); }

.breadcrumbs .separator { color: rgba(255,255,255,0.3); }
.breadcrumbs .current { color: var(--gold); }

/* ============ CONTACT FORM ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 200px; height: 200px;
    background: rgba(37,99,235,0.15);
    border-radius: 50%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.contact-social a:hover { background: var(--blue); transform: translateY(-3px); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--gray-400);
    margin-bottom: 30px;
}

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

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

.form-group.full-width { grid-column: span 2; }

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    transition: all 0.3s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.form-group textarea { height: 140px; resize: vertical; }

/* ============ FOOTER ============ */
.footer { position: relative; }

.footer-wave {
    position: relative;
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    background: var(--navy);
    padding: 60px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon svg { width: 40px; height: 40px; }

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links-col ul li { margin-bottom: 12px; }

.footer-links-col ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-links-col ul li a:hover::before { width: 14px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
}

.footer-contact-item span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-blue);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
}

.back-to-top.visible { transform: translateY(0); opacity: 1; }
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; margin: 0 auto; max-width: 500px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 50px 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-py: 70px; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
        gap: 4px;
    }
    
    .nav-links.active { right: 0; }
    .nav-links a { padding: 14px 20px; }
    .hamburger { display: flex; }
    .btn-nav { display: none; }
    
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-image-wrapper img { height: 350px; }
    .hero-float-card.card-1 { left: 10px; }
    .hero-float-card.card-2 { right: 10px; }
    
    .stats-bar-inner { padding: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-box { padding: 40px 24px; }
}

/* ============ ABOUT PAGE EXTRAS ============ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    width: 70px; height: 70px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}

.value-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.value-card p { font-size: 0.9rem; color: var(--gray-400); margin: 0; }

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid var(--gray-100);
}

.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.team-avatar {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-info p { font-size: 0.85rem; color: var(--blue); margin: 0 0 14px; font-weight: 500; }

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.team-social a:hover { background: var(--blue); color: var(--white); }

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

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

/* ============ BLOG PAGE EXTRAS ============ */
.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.blog-featured-img {
    height: 400px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content .blog-meta { margin-bottom: 16px; }
.blog-featured-content h2 { font-size: 1.6rem; margin-bottom: 16px; }
.blog-featured-content p { margin-bottom: 24px; }

@media (max-width: 768px) {
    .blog-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .blog-featured-img { height: 250px; }
    .blog-featured-content { padding: 24px; }
    .blog-page-grid { grid-template-columns: 1fr; }
}

/* ============ BLOG ARTICLE PAGE ============ */
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.article-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.article-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.35;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.article-meta-bar span {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-bar span i { color: var(--blue); }

.article-featured-img {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
}

.article-featured-img img,
.article-featured-img .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body h2 {
    font-size: 1.5rem;
    margin: 36px 0 16px;
    padding-top: 16px;
}

.article-body h3 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px 24px;
    line-height: 1.85;
    color: var(--gray-600);
}

.article-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.article-body ol li { list-style: decimal; }

.article-body a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover { color: var(--blue-dark); }

.article-body blockquote {
    border-left: 4px solid var(--blue);
    background: var(--off-white);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--navy);
}

.article-body .highlight-box {
    background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(255,193,7,0.06));
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 30px 0;
}

.article-body .highlight-box h3 {
    margin-top: 0;
    color: var(--blue);
}

.article-cta-box {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.article-cta-box h3 {
    color: var(--white);
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.article-cta-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.article-cta-box .btn { position: relative; z-index: 1; }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.article-tags a {
    padding: 6px 16px;
    background: var(--off-white);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.3s;
}

.article-tags a:hover { background: var(--blue); color: var(--white); }

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 40px; height: 2px;
    background: var(--blue);
}

.sidebar-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-50);
}

.sidebar-post-item:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }

.sidebar-post-thumb {
    width: 70px; height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb .placeholder-img {
    font-size: 1rem;
}

.sidebar-post-info h5 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.sidebar-post-info h5:hover { color: var(--blue); }

.sidebar-post-info span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.sidebar-service-list { display: flex; flex-direction: column; gap: 10px; }

.sidebar-service-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.3s;
}

.sidebar-service-link:hover { background: rgba(37,99,235,0.06); color: var(--blue); transform: translateX(4px); }
.sidebar-service-link i { color: var(--blue); width: 18px; text-align: center; }

.sidebar-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    border: none;
}

.sidebar-cta h4 { color: var(--white); border: none; padding: 0; margin-bottom: 10px; }
.sidebar-cta h4::after { display: none; }
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 1024px) {
    .article-wrapper { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    .article-content { padding: 28px 20px; }
    .article-featured-img { height: 250px; }
}

/* ============ PLACEHOLDER IMAGES ============ */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-200);
    font-size: 2.5rem;
}
