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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 14px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-image {
    display: block;
    width: auto;
    height: 48px;
    max-width: 220px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1.35rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #334155;
    transition: color 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #63b45f;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e293b;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #63b45f;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #124877;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: #1e293b;
}

.btn-outline:hover {
    border-color: #63b45f;
    background: rgba(37, 99, 235, 0.05);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    color: #1e40af;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0F172A 0%, #63b45f 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: #0F172A;
    font-weight: 800;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-image {
    background: linear-gradient(145deg, #63b45f10, #3b82f620);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 52%, #ffffff 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
    pointer-events: none;
}

.page-hero .hero-grid {
    position: relative;
    z-index: 1;
    gap: 3rem;
    align-items: stretch;
}

.hero-copy {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px -36px rgba(15, 23, 42, 0.35);
}

.hero-copy p:last-of-type {
    margin-bottom: 0;
}

.hero-badge {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #124877;
    border: 1px solid #bfdbfe;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.82rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    min-height: 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe5f4;
    border-radius: 22px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-item h3 {
    font-size: 15px;
    line-height: 1;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.stat-item p {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0;
}

.hero-panel {
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    color: #e2e8f0;
    border-radius: 32px;
    padding: 2rem;
    min-height: 100%;
    box-shadow: 0 28px 60px -38px rgba(15, 23, 42, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 68%);
}

.hero-panel::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
}

.hero-panel-top,
.hero-panel-metrics,
.hero-panel-bottom {
    position: relative;
    z-index: 1;
}

.hero-panel-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.24), rgba(191, 219, 254, 0.12));
    border: 1px solid rgba(191, 219, 254, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #bfdbfe;
    font-size: 2rem;
}

.hero-panel-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.hero-panel h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.hero-panel p {
    color: #cbd5e1;
    margin-bottom: 0;
    font-size: 1rem;
}

.hero-panel-metrics {
    display: grid;
    gap: 0.9rem;
    margin: 2rem 0;
}

.hero-metric {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-metric i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(96, 165, 250, 0.14);
    color: #93c5fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-metric strong {
    display: block;
    font-size: 0.98rem;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

.hero-metric span {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-panel-bottom {
    padding-top: 1.35rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    font-size: 0.95rem;
    color: #bfdbfe;
    font-weight: 600;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 54%, #ffffff 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
    pointer-events: none;
}

.home-hero .hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
    gap: 3.5rem;
    align-items: center;
}

.home-hero-copy {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 34px;
    padding: 2.4rem 2.5rem;
    box-shadow: 0 24px 60px -38px rgba(15, 23, 42, 0.35);
}

.home-hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.home-hero-copy p {
    max-width: 590px;
    font-size: 1.08rem;
}

.home-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.home-type-strip {
    padding: 0 0 72px;
}

.home-type-shell {
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    border-radius: 30px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 24px 50px -38px rgba(15, 23, 42, 0.55);
    display: grid;
    gap: 0.85rem;
}

.home-type-code {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    color: #e2e8f0;
    font-size: 1.15rem;
}

.home-type-prompt {
    color: #93c5fd;
    font-weight: 700;
}

.home-type-label {
    color: #cbd5e1;
    font-weight: 600;
}

.home-type-value {
    color: #ffffff;
    font-weight: 700;
    min-width: 220px;
}

.home-type-cursor {
    width: 10px;
    height: 1.2rem;
    border-radius: 999px;
    background: #63b45f;
    animation: typeCursorBlink 0.9s steps(1) infinite;
}

.home-type-text {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

.home-proof-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.home-proof-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: #334155;
}

.home-proof-item i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #63b45f;
    flex-shrink: 0;
}

.home-proof-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.home-hero-visual {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 246, 255, 0.96) 100%);
    border: 1px solid rgba(191, 219, 254, 0.7);
    border-radius: 34px;
    padding: 1.5rem;
    box-shadow: 0 24px 60px -40px rgba(37, 99, 235, 0.22);
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.home-hero-visual::before {
    content: "";
    position: absolute;
    top: 46px;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 64%);
    filter: blur(22px);
    animation: heroGlow 5.5s ease-in-out infinite;
    pointer-events: none;
}

.home-hero-image-wrap {
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 10px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.32), rgba(147, 197, 253, 0.16)),
        rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(147, 197, 253, 0.55);
    box-shadow:
        0 24px 60px -34px rgba(37, 99, 235, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
    animation: heroFloat 6s ease-in-out infinite;
}

.home-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
    background: #dbeafe;
}

.home-hero-visual-note {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.home-hero-note {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 1rem;
    color: #475569;
    box-shadow: 0 18px 34px -28px rgba(37, 99, 235, 0.16);
}

.home-hero-note strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes typeCursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0F172A;
}

.section-header p {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-vision {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mv-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 4px solid #63b45f;
}

.mv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.mv-card p {
    color: #475569;
}

.skills {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 24px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.skill-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #63b45f;
    border: 1px solid #e2e8f0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid #eef2ff;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
    border-color: #63b45f30;
}

.service-icon {
    font-size: 2.5rem;
    color: #63b45f;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #63b45f;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #63b45f;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-content p {
    color: #64748b;
    margin-bottom: 1rem;
}

.read-more {
    color: #63b45f;
    text-decoration: none;
    font-weight: 600;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 24px;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #334155;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63b45f;
    font-size: 1.25rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #63b45f;
    box-shadow: 0 0 0 3px #63b45f20;
}

.directory-shell {
    display: grid;
    gap: 2rem;
}

.directory-search {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.35);
}

.directory-search-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.directory-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.45rem;
}

.directory-field input,
.directory-field select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid #dbe2ea;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    color: #0f172a;
    background: #fff;
}

.directory-field input:focus,
.directory-field select:focus {
    outline: none;
    border-color: #63b45f;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.directory-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.directory-helper {
    color: #64748b;
    font-size: 0.95rem;
}

.directory-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.directory-kpi {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 1.4rem;
}

.directory-kpi strong {
    display: block;
    font-size: 1.9rem;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.directory-kpi span {
    color: #64748b;
    font-weight: 600;
}

.directory-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.35);
}

.directory-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.directory-panel-header p {
    margin: 0;
    color: #64748b;
}

.directory-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.directory-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #124877;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.directory-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.directory-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.directory-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.directory-card-code {
    background: #0f172a;
    color: #f8fafc;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.directory-card h3,
.directory-card h4 {
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.directory-card p {
    color: #64748b;
    margin-bottom: 0;
}

.directory-meta {
    display: grid;
    gap: 0.75rem;
}

.directory-meta-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #334155;
    font-size: 0.95rem;
}

.directory-meta-row i {
    width: 18px;
    color: #63b45f;
    margin-top: 3px;
}

.directory-empty {
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
}

.directory-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 1.5rem;
}

.directory-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.75rem;
}

.directory-detail-list {
    display: grid;
    gap: 1rem;
}

.directory-detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.directory-detail-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.directory-detail-row strong {
    color: #0f172a;
}

.directory-detail-row span {
    color: #475569;
}

.directory-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.directory-pagination-info {
    color: #64748b;
    font-size: 0.95rem;
}

.directory-pagination-links {
    display: flex;
    gap: 0.75rem;
}

.directory-pagination-links a,
.directory-pagination-links span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #dbe2ea;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    background: #fff;
}

.directory-pagination-links span {
    color: #94a3b8;
    background: #f8fafc;
}

.blog-shell {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
    gap: 2rem;
}

.blog-stack {
    display: grid;
    gap: 1.5rem;
}

.blog-sidebar {
    display: grid;
    gap: 1.5rem;
}

.blog-card,
.blog-sidebar-card,
.blog-empty,
.blog-article,
.blog-featured-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.35);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.blog-featured-card,
.blog-card {
    overflow: hidden;
}

.blog-card-media {
    display: block;
    width: 100%;
    /* aspect-ratio: 16 / 9;
    object-fit: cover; */
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.blog-card-body,
.blog-sidebar-card,
.blog-empty,
.blog-article-body {
    padding: 1.5rem;
}

.blog-card-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.blog-card-copy {
    padding: 1.5rem;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #124877;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.6rem;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-title a:hover {
    color: #63b45f;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.blog-excerpt {
    color: #475569;
    margin-bottom: 1rem;
}

.blog-taxonomy {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #dbe2ea;
    color: #334155;
}

.blog-chip:hover {
    border-color: #93c5fd;
    color: #63b45f;
}

.blog-chip.active {
    background: #63b45f;
    border-color: #63b45f;
    color: #ffffff;
}

.blog-sidebar-title {
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.blog-sidebar-list {
    display: grid;
    gap: 0.8rem;
}

.blog-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #334155;
    text-decoration: none;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: #f8fafc;
}

.blog-sidebar-link:hover {
    background: #eff6ff;
    color: #63b45f;
}

.blog-sidebar-link.active {
    background: #eff6ff;
    color: #63b45f;
    border: 1px solid #bfdbfe;
}

.blog-sidebar-count {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    font-size: 0.75rem;
    color: #64748b;
}

.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.blog-pagination-links {
    display: flex;
    gap: 0.75rem;
}

.blog-pagination-links a,
.blog-pagination-links span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #dbe2ea;
    text-decoration: none;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

.blog-pagination-links span {
    background: #f8fafc;
    color: #94a3b8;
}

.blog-article-hero {
    padding: 2rem;
    border-bottom: 1px solid #eef2f7;
}

.blog-article-content {
    color: #334155;
    line-height: 1.8;
}

.blog-article-content>*+* {
    margin-top: 1rem;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #0f172a;
    line-height: 1.3;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.blog-feature-banner {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    color: #e2e8f0;
    box-shadow: 0 24px 50px -40px rgba(15, 23, 42, 0.6);
}

.blog-feature-banner h1,
.blog-feature-banner p,
.blog-feature-banner .blog-meta {
    color: inherit;
}

.blog-feature-banner .blog-meta {
    opacity: 0.86;
}

/* Footer */
.footer {
    background: #124877;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #bfdbfe);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dbeafe;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #ffffff;
    color: #124877;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(191, 219, 254, 0.22);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: whatsappFloat 3s ease-in-out infinite;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

.whatsapp-float:active {
    transform: scale(0.95) translateY(0px);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
    animation: whatsappGlow 2s ease-in-out infinite alternate;
}

@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes whatsappGlow {
    0% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    }

    100% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    @keyframes whatsappFloat {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-3px);
        }
    }
}

/* Cursor interaction effect */
.whatsapp-float {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    animation: none;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .home-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-hero-copy h1 {
        max-width: none;
    }

    .home-hero-visual {
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 18px;
    }

    .logo-image {
        height: 40px;
        max-width: 170px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .directory-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-panel {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .home-hero-copy,
    .home-hero-visual {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .home-hero-copy h1 {
        max-width: none;
        font-size: 2.4rem;
    }

    .home-hero-image-wrap {
        width: min(220px, 100%);
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .home-type-strip {
        padding: 0 0 56px;
    }

    .home-type-shell {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .home-type-code {
        align-items: flex-start;
        font-size: 1rem;
    }

    .home-type-value {
        min-width: 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .blog-featured-grid,
    .blog-related-grid,
    .directory-results,
    .directory-search-grid,
    .directory-kpis {
        grid-template-columns: 1fr;
    }

    .blog-shell,
    .blog-card-layout {
        grid-template-columns: 1fr;
    }

    .home-hero-visual-note {
        grid-template-columns: 1fr;
    }

    .blog-card-media {
        aspect-ratio: 16 / 10;
    }

    .directory-detail-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
}