:root {
    --purple-deep: #3C2A5F;
    --purple-dark: #2B1B4A;
    --magenta: #D61C6E;
    --magenta-light: #FF3B8B;
    --gray-bg: #F9F8FC;
    --light-purple-bg: #F1EDFA;
    --text-dark: #1E1A2F;
    --text-muted: #5F546F;
    --white: #FFFFFF;
    --border: #E9E5F0;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--magenta);
}

a:hover,
a:focus {
    color: var(--purple-dark);
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60,42,95,0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.site-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--purple-deep);
}

.site-tagline {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.main-navigation {
    flex: 1;
}

.primary-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: var(--magenta);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--purple-deep);
    font-size: 1rem;
}

.menu-toggle-icon {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--purple-deep);
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--purple-deep);
    position: absolute;
    left: 0;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--magenta);
    color: white;
    padding: 0.85rem 1rem;
    border-radius: 999px;
}

.btn-primary,
.button,
button,
input[type="submit"] {
    border-radius: 40px;
    padding: 0.95rem 1.9rem;
    cursor: pointer;
    border: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--magenta);
    color: white;
}

.btn-primary:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1.5px solid var(--purple-deep);
    color: var(--purple-deep);
    background: transparent;
}

.hero-section,
.page-hero {
    padding: 5rem 1.5rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #F4F0FC 0%, #EBE5F8 100%);
}

.hero-copy h1,
.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin: 0 0 1.25rem;
}

.hero-copy p,
.page-hero-content p {
    max-width: 650px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.hero-image {
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: white;
    color: var(--magenta);
    font-size: 4rem;
    box-shadow: var(--shadow);
}

.section {
    padding: 4rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    margin: 0;
}

.service-grid,
.blog-card-grid,
.panel-grid,
.related-grid {
    display: grid;
    gap: 1.75rem;
}

.service-grid,
.related-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.blog-card,
.panel-card,
.service-box,
.contact-card,
.contact-info-card {
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 1.8rem;
}

.service-card-content h3,
.blog-card-title {
    margin: 0 0 0.85rem;
    font-size: 1.3rem;
}

.service-card p,
.blog-card p,
.panel-card p,
.service-box p,
.contact-info-card p {
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.75;
}

.service-card-image,
.blog-card-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-card-meta {
    color: var(--magenta);
    font-weight: 700;
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.read-more-link {
    margin-top: auto;
    font-weight: 700;
}

.panel-card {
    text-align: center;
}

.panel-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--magenta);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
}

.contact-card,
.contact-info-card {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--magenta);
}

.whatsapp a {
    color: var(--purple-deep);
}

.error-404,
.no-results {
    text-align: center;
    padding: 5rem 1rem;
}

.error-404 h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.error-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
}

.archive-main .post-list,
.post-list {
    display: grid;
    gap: 1.75rem;
}

.archive-sidebar .widget,
.footer-widget,
.service-sidebar .service-box {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.post-hero img,
.service-hero-image img {
    width: 100%;
    display: block;
}

.post-inner,
.service-details,
.related-services {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.post-header,
.service-hero-copy {
    margin-bottom: 2rem;
}

.post-header .post-meta,
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.post-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    margin: 1rem 0;
}

.post-content {
    line-height: 1.9;
    color: var(--text-muted);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2.5rem;
}

.post-tags {
    margin-top: 2rem;
}

.post-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 2rem;
}

.post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--magenta);
    color: white;
}

.related-services h2,
.related-posts h2 {
    margin-bottom: 1.5rem;
}

.site-footer {
    background: #080412;
    color: rgba(255,255,255,0.88);
    padding: 3rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.footer-links .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    color: white;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 960px) {
    .header-inner,
    .hero-section,
    .service-grid,
    .archive-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .primary-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .primary-menu.open {
        display: flex;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-copy h1 {
        font-size: 2.5rem;
    }
}

/* ============= PREMIUM HOMEPAGE STYLES ============= */

/* Logo sizing */
.site-logo {
    max-width: 40px;
    height: auto;
}

.site-logo-small {
    max-width: 40px;
    height: auto;
}

/* ===== 1. PREMIUM HERO SECTION ===== */
.hero-section-premium {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, #3C2A5F 0%, #2B1B4A 50%, #D61C6E 100%);
}

.gradient-blur-1, .gradient-blur-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.gradient-blur-1 {
    width: 400px;
    height: 400px;
    background: #FF3B8B;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.gradient-blur-2 {
    width: 300px;
    height: 300px;
    background: #D61C6E;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease-out;
}

.badge-icon { font-size: 1.2rem; }
.badge-text { font-size: 0.95rem; font-weight: 600; }

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
    font-weight: 800;
    animation: slideInDown 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 0 2rem;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease-out 0.3s both;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #FF3B8B;
    border-radius: 50%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-large { padding: 1.1rem 2.2rem; font-size: 1rem; }

.btn-icon { font-size: 1.2rem; }

.btn-primary {
    background: linear-gradient(135deg, #FF3B8B 0%, #D61C6E 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 28, 110, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-trust {
    font-size: 0.95rem;
    opacity: 0.85;
    animation: slideInDown 0.8s ease-out 0.5s both;
}

.hero-visual {
    position: relative;
    height: 450px;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-1 {
    width: 280px;
    top: 0;
    right: 0;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    width: 220px;
    bottom: 80px;
    left: 0;
    animation: float 5s ease-in-out infinite 0.5s;
}

.card-3 {
    width: 240px;
    bottom: 0;
    right: 60px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-header {
    font-weight: 700;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.card-content {
    font-weight: 600;
}

/* ===== 2. CLIENT PORTAL SECTION ===== */
.client-portal-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, #F1EDFA 100%);
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.portal-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #D61C6E 0%, #FF3B8B 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.portal-header h2 {
    font-size: 2.8rem;
    color: var(--purple-deep);
    margin: 0 0 1rem;
    font-weight: 800;
}

.portal-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.portal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portal-card {
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.portal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portal-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
    color: var(--purple-deep);
    font-weight: 700;
}

.portal-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== 3. SERVICES SECTION ===== */
.services-section {
    padding: 5rem 1.5rem;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--magenta);
    box-shadow: 0 20px 50px rgba(214, 28, 110, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
    color: var(--purple-deep);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    color: var(--magenta);
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* ===== 4. ABOUT SECTION ===== */
.about-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, white 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text .section-tag {
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--purple-deep);
    margin: 0 0 1.5rem;
    font-weight: 800;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 2rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card, .vision-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-card h4, .vision-card h4 {
    color: var(--magenta);
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
}

.mission-card p, .vision-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.illust-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 280px;
    height: 280px;
    background: var(--magenta);
    top: 10px;
    left: 10px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-2 {
    width: 220px;
    height: 220px;
    background: var(--purple-deep);
    top: 40px;
    left: 40px;
}

.circle-3 {
    width: 160px;
    height: 160px;
    background: var(--purple-dark);
    top: 70px;
    left: 70px;
}

.illust-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-deep);
    text-align: center;
    z-index: 1;
}

/* ===== 5. STATISTICS SECTION ===== */
.stats-section {
    padding: 5rem 1.5rem;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #F9F8FC 0%, #F1EDFA 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--magenta);
    margin: 0.5rem 0;
}

.stat-number span {
    font-size: 1.8rem;
    color: var(--purple-deep);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* ===== 6. WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, white 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--magenta);
    box-shadow: 0 15px 40px rgba(214, 28, 110, 0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--purple-deep);
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== 7. INDUSTRIES SECTION ===== */
.industries-section {
    padding: 5rem 1.5rem;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.industry-card {
    background: linear-gradient(135deg, #F9F8FC 0%, #F1EDFA 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta);
    background: linear-gradient(135deg, var(--light-purple-bg) 0%, rgba(214, 28, 110, 0.1) 100%);
}

.industry-icon {
    font-size: 2.5rem;
}

.industry-card span {
    font-weight: 600;
    color: var(--purple-deep);
}

/* ===== 8. PROCESS SECTION ===== */
.process-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, white 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--magenta);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--purple-deep);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 0;
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .process-connector {
        display: block;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--magenta), var(--purple-deep));
        margin: 0 -50%;
    }
}

/* ===== 9. TECHNOLOGY STACK ===== */
.tech-stack-section {
    padding: 5rem 1.5rem;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.tech-card {
    background: linear-gradient(135deg, var(--light-purple-bg) 0%, rgba(214, 28, 110, 0.08) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta);
    background: linear-gradient(135deg, var(--magenta), var(--purple-deep));
}

.tech-badge {
    font-weight: 700;
    color: var(--purple-deep);
    font-size: 1rem;
}

.tech-card:hover .tech-badge {
    color: white;
}

/* ===== 10. TESTIMONIALS ===== */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, white 100%);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--light-purple-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--purple-deep);
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-rating {
    color: #FFA500;
    font-size: 1rem;
}

/* ===== 11. BLOG SECTION ===== */
.blog-section {
    padding: 5rem 1.5rem;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-image {
    overflow: hidden;
    min-height: 200px;
    background: var(--light-purple-bg);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    color: var(--purple-deep);
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.blog-card p {
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

.read-more {
    color: var(--magenta);
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    transform: translateX(5px);
}

.no-posts {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

.blog-cta {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== 12. GLOBAL OPERATIONS ===== */
.global-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #F9F8FC 0%, white 100%);
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.global-text h2 {
    font-size: 2.5rem;
    color: var(--purple-deep);
    margin: 0 0 1.5rem;
    font-weight: 800;
}

.global-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 2rem;
}

.global-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.global-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.8rem;
}

.global-feature span {
    color: var(--purple-deep);
    font-weight: 600;
}

.world-map {
    position: relative;
    width: 100%;
    height: 300px;
}

.map-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.dot-1 { top: 30%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 50%; right: 15%; animation-delay: 0.3s; }
.dot-3 { bottom: 20%; left: 60%; animation-delay: 0.6s; }

.map-line {
    position: absolute;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--purple-deep));
    top: 50%;
    left: 15%;
    opacity: 0.3;
}

/* ===== 13. FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--magenta) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before,
.final-cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.final-cta-section::before {
    top: -100px;
    right: -100px;
}

.final-cta-section::after {
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin: 0 0 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.final-cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0 0 2.5rem;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--purple-deep);
    font-weight: 700;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .global-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 350px;
    }

    .final-cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-premium {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .portal-features-grid,
    .stats-grid,
    .why-choose-grid,
    .industries-grid,
    .tech-grid,
    .testimonials-carousel,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-connector {
        display: none;
    }

    .floating-card {
        position: static;
        margin: 1rem auto;
        max-width: 100%;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .portal-actions,
    .hero-features {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .portal-header h2,
    .about-text h2,
    .global-text h2 {
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .final-cta-section {
        padding: 3rem 1rem;
    }

    .final-cta-section h2 {
        font-size: 1.3rem;
    }

    .card-1, .card-2, .card-3 {
        width: 100%;
    }
}
