/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Typography System (Big Tech Style) */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Dark Mode Colors */
    --bg-primary: #0B0D10;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #9AA0A6;
    --accent: #4285F4;
    --accent-hover: #3367D6;
    --card-bg: rgba(26, 26, 26, 0.6);
    --card-shadow: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    /* New Colors */
    --primary: #2563EB;
    --bg-dark: #0B0D10;
    /* Assuming this is the intended background color */
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    min-height: 100vh;
}

/* Typography Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

p,
span,
li,
a {
    letter-spacing: -0.01em;
    /* Modern look for body text too */
}

/* Skip to Main Content - Accessibility */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Focus Indicators - WCAG Compliance */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.content-card:focus {
    outline: none;
}

/* Focus para navegação com teclado (só mostra quando usa Tab) */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Clickable Card - Remove inline styles */
.clickable-card {
    text-decoration: none;
    color: inherit;
}

/* Animated Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shrinking Header Animation */
/* Shrinking Header Animation */
.header.scrolled {
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav {
    min-height: 60px;
    padding: 0.25rem 4rem;
}

/* Scroll Logo Animation REMOVED as requested */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    /* overflow: hidden; Removed to allow wide logo to show */
}

/* Efeito hover premium - slide + blur + rotation */
.logo:hover .logo-full {
    opacity: 0;
    transform: translateX(-20px) rotate(-5deg) scale(0.95);
    filter: blur(4px);
}

.logo:hover .logo-icon {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(0deg) scale(1);
    filter: blur(0);
}

/* Logo completo (com nome) - visível no topo */
.logo-full {
    height: 45px;
    /* Icon size slightly smaller */
    width: auto;
    display: block;
    opacity: 1;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: blur(0);
}

/* Logo ícone (sem nome) - escondido no topo */
.logo-icon {
    height: 50px;
    /* Full logo size restored */
    width: auto;
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(20px) rotate(5deg) scale(0.9);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    filter: blur(4px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links>li>a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    /* Inter */
    font-weight: 500;
    /* Medium */
    font-size: 0.875rem;
    /* 14px */
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links>li>a:hover {
    color: var(--text-primary);
}

.nav-links>li>a:hover::after {
    width: 100%;
}

/* Header CTA Button */
.nav-cta {
    margin-left: 1rem;
}

.header-cta-btn {
    background: var(--accent);
    color: white !important;
    padding: 0.5rem 1rem 0.6rem 1rem;
    /* Adjusted: slightly more bottom padding to push text up visually */
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    /* Tighter line height */
}

.header-cta-btn::after {
    display: none !important;
}

.header-cta-btn:hover {
    background: #3367D6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.25);
}

/* Nav Arrow */
.nav-arrow {
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Seta gira quando o dropdown está ativo */
.nav-dropdown.active .nav-arrow {
    transform: rotate(180deg);
    color: var(--text-primary);
}

/* Megamenu - Accenture Style */
.nav-dropdown {
    position: static;
}

.megamenu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.megamenu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-container {
    background: #0d0d0d;
    border-top: 3px solid var(--accent);
    padding: 30px;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.megamenu-header {
    margin-bottom: 1.25rem;
}

.megamenu-header h2.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.megamenu-icon {
    height: 22px;
    width: auto;
    vertical-align: middle;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

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

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

.megamenu-grid {
    display: flex;
    gap: 40px;
}

.megamenu-column {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
}

.megamenu-column:last-child {
    border: none;
}

.megamenu-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.megamenu-section-subtitle {
    font-size: 12px;
    color: #888;
    font-style: italic;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: block;
}

.sub-menu,
.megamenu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu li,
.megamenu-links li {
    margin-bottom: 10px;
}

.sub-menu li a,
.megamenu-links li a {
    font-size: 14px;
    color: #B8B8B8;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.sub-menu li a:hover,
.megamenu-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.sub-menu li a i,
.megamenu-links li a i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    font-size: 0;
    line-height: 0;
}

.hamburger-line {
    width: 2rem;
    height: 0.2rem;
    background: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero Section - Premium Consultancy Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
    text-align: left;
}

.hero-right {
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 200;
    line-height: 1.08;
    margin-bottom: 3rem;
    letter-spacing: -2px;
    width: 100%;
    /* Ensure title doesn't overflow to push grid */
    min-width: 0;
}

.hero-title .highlight {
    font-weight: 500;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation Cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #4285F4;
    margin-left: 4px;
    animation: blink 0.7s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.65;
    max-width: 680px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

@keyframes scroll {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
}

/* Novo Estilo: Card Marquee Carousel */
.logos-carousel-section {
    padding: 3rem 0;
    background: var(--bg-primary);
    /* Mantém fundo escuro */
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-carousel-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    width: fit-content;
    gap: 2rem;
    animation: scrollLogos 60s linear infinite;
    padding: 1rem 0;
}

.logos-track.reverse {
    animation-direction: reverse;
}

/* Logo Carousel Spacing and Mask */
.logos-carousel-container.first-row {
    margin-top: 3rem;
}

.logos-carousel-container.second-row {
    margin-top: 1.5rem;
}

.logos-carousel-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
    /* Button Font */
    letter-spacing: -0.01em;
    text-transform: none;
    /* Avoid uppercase */
}

/* Novo Ajuste: Largura Variável com TETO MÁXIMO (Evita gigantes) */
.logo-item {
    flex-shrink: 0;
    width: auto !important;
    height: 80px;
    /* Reduzi levemente */

    /* Limite máximo de largura para logos compridos não dominarem */
    max-width: 160px;
    min-width: 80px;

    background: rgba(255, 255, 255, 0.02);
    /* Mais sutil */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 1.5rem;
    margin: 0;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    /* C-Level: Grayscale por padrão */
    filter: grayscale(100%) opacity(0.5);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-body);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);

    /* Reveal color on hover */
    filter: grayscale(0%) opacity(1);
}

/* A imagem tenta ocupar o espaço mas obedece o limite do container */
.logo-item img,
.logo-item svg {
    height: auto !important;
    width: auto !important;

    max-height: 50%;
    /* Reduzi levemente */
    /* Nunca mais que 55% da altura do card (aprox 50px) */
    max-width: 100%;
    /* Nunca mais que a largura disponível (que é max 180px - padding) */

    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    display: block;
    border-radius: 0;
}

.logo-item:hover img,
.logo-item:hover svg {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Nome escondido/removido visualmente ou sobreposto, pois a imagem já pode conter o nome ou ser auto-explicativa */
.logo-name {
    display: none;
    /* Imagens padronizadas geralmente dispensam texto secundário, ou posicionar overlay */
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Atenção: Com larguras variáveis, o calculo de -50% pode falhar se o track não for duplicado exatamente. 
           Mas como é um carrossel infinito CSS, geralmente assume-se que o conteúdo é duplicado. 
           Se não for, vai dar um "pulo". O ideal é garantir conteúdo duplicado no HTML ou JS. */
        transform: translateX(calc(-50% - 1rem));
    }
}

.btn-primary-link {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary-link:hover {
    background: var(--accent-hover);
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.4);
}

.btn-primary-link:hover::before {
    left: 100%;
}

.btn-secondary-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.btn-secondary-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.btn-secondary-link:hover::after {
    width: 100%;
}

.btn-secondary-link:hover {
    transform: translateX(5px);
}

/* Content Grid Section - Premium Consultancy Style */
.content-section {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 8rem;
}

/* Max width for ultra-wide screens */
@media (min-width: 1920px) {
    .container-wide {
        max-width: 1600px;
    }

    .hero-container {
        max-width: 1600px;
    }

    .container {
        max-width: 1400px;
    }
}

.content-header {
    margin-bottom: 5rem;
}

.content-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.content-section-title {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -2px;
    max-width: 800px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Dark Premium Glass Cards */
.content-card {
    background: rgba(23, 23, 23, 0.4);
    /* Base escura translúcida */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    border-radius: 16px;
    /* Bordas mais arredondadas */
}

/* Backgrounds Premium Abstratos (Substituem os lineares simples) */
.card-bg-security {
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(29, 78, 216, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-infra {
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(3, 105, 161, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-cloud {
    background: radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-ia {
    background: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(67, 56, 202, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-n8n {
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(234, 76, 137, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-whatsapp {
    background: radial-gradient(circle at 20% 20%, rgba(37, 211, 102, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(18, 140, 126, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.card-bg-tech {
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.3) 0%, rgba(13, 17, 23, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.15) 0%, rgba(13, 17, 23, 0) 60%);
    background-color: #0b0d10;
}

.content-card.visible {
    opacity: 1;
    transform: translateY(0);
}



.content-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    /* Glow interno sutil */
}

.content-card:hover .card-image-overlay {
    transform: scale(1.1);
    /* Zoom suave mais pronunciado */
}

.card-image {
    height: 220px;
    /* Um pouco mais alto */
    position: relative;
    overflow: hidden;
    /* Background definido pelas classes auxiliares acima */
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    z-index: 1;
}



.card-image-overlay svg {
    opacity: 0.6;
    /* Mais visível */
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Sombra no ícone */
}

.content-card:hover .card-image-overlay svg {
    opacity: 1;
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-category {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.375rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: -0.75px;
}

.card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.card-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.card-link:hover::after {
    width: calc(100% - 20px);
}

/* Statement Section - Large Impact Text with Parallax */
.statement-section {
    padding: 1rem 0 6rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.statement-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6rem;
    text-align: center;
}

.statement-text {
    font-size: clamp(1.5rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
    display: block;
    white-space: normal;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.statement-word {
    display: inline;
    margin: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    transform: translateY(30px);
}

.highlight-statement {
    position: relative;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-left: 0.3em;
}


/* About Section - Accenture Style Card */
.about-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, #34A853 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(66, 133, 244, 0.3);
    transform: translateX(10px);
}

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

.about-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.about-link svg {
    transition: transform 0.3s ease;
}

.about-link:hover {
    color: var(--accent);
}

.about-link:hover svg {
    transform: translateX(5px);
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.about-link:hover::after {
    width: calc(100% - 30px);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid - Premium Consultancy Style */
.features {
    background: transparent;
    padding: 7rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Card Design Refinado - Estilo Enterprise */
/* Card Design Refinado - Estilo Enterprise (Visual Rico igual Content Card, mas Estático) */
.feature-card {
    background: rgba(23, 23, 23, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.feature-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.feature-link:hover::after {
    width: calc(100% - 20px);
}

/* Showcase Grid - Accenture Style */
.showcase {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    padding: 5rem 0;
    overflow: hidden;
    /* Garante que o full-width não quebre layout horizontal */
}

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

.showcase-item {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    display: block;
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.showcase-item:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 3;
    transition: all 0.4s ease;
}

.showcase-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.showcase-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.showcase-logo svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.showcase-item:hover .showcase-logo {
    opacity: 0.4;
    transform: translate(-50%, -60%);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 3rem 2rem 2rem 2rem;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-title {
    margin-bottom: 0.75rem;
}

.showcase-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-subtitle {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-link {
    max-height: 50px;
    opacity: 1;
}

.showcase-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.showcase-link:hover::after {
    width: calc(100% - 20px);
}

/* Stats Section */
.stats {
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Contact Section - New Form Design */
.contact {
    background: transparent;
    padding: 7rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Checkbox rows - reduced spacing and fixed height */
.checkbox-row {
    gap: 0;
    margin-bottom: -0.5rem;
}

.checkbox-row:last-of-type {
    margin-bottom: 0;
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    display: none;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 48px;
    /* Mobile touch target */
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:hover {
    border-color: rgba(66, 133, 244, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-input.error {
    border-color: #EA4335;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    border-radius: 25px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 2px 0 0 0;
    cursor: pointer;
    accent-color: var(--accent);
}

.form-checkbox-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.form-error {
    font-size: 0.8125rem;
    color: #EA4335;
    display: block;
    margin-top: 0.25rem;
}

/* Honeypot field - hidden from users but not from bots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 0;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
}

.btn-primary-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.3px;
    min-height: 54px;
    /* Mobile touch target */
    position: relative;
}

.btn-primary-submit:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.btn-primary-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary-submit.invalid {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-primary-submit.invalid:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

.spinner-circle {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 50;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -50;
    }
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -0.5rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid rgba(52, 168, 83, 0.3);
    border-radius: 8px;
}

.form-success svg {
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #34A853;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-success button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-success button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

/* Contact Info Card */
.contact-info-card {
    background: transparent;
    border: none;
    padding: 2.5rem;
    position: sticky;
    top: 120px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-info-card>p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(4px);
}

.contact-method i {
    font-size: 1.125rem;
    color: var(--accent);
    width: 20px;
    text-align: center;
    margin-top: 1.05rem;
    flex-shrink: 0;
}

.contact-method>div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method strong {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.contact-method a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.contact-method a:hover {
    color: var(--accent);
}

.contact-info-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-info-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-method {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-method-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method-value {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

.contact-method-value:hover {
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    height: 110px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-full {
        height: 40px;
    }

    .logo-icon {
        height: 32px;
    }

    .nav {
        min-height: 60px;
        padding: 0.5rem 1.5rem;
    }

    .footer-logo {
        height: 80px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        background: rgba(11, 13, 16, 0.98);
        backdrop-filter: blur(10px);
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        border-left: 1px solid var(--border-color);
        z-index: 9;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .hero-container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-primary-link,
    .btn-secondary-link {
        width: 100%;
        text-align: center;
    }

    .about-section {
        padding: 4rem 0;
    }

    .about-card {
        padding: 2rem;
    }

    .about-card:hover {
        transform: translateX(0);
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .container-wide {
        padding: 0 2rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .content-section-title {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .statement-section {
        padding: 0.75rem 0 4rem 0;
    }

    .statement-container {
        padding: 0 1.5rem;
    }

    .statement-text {
        font-size: 2rem;
        letter-spacing: -0.5px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .statement-word {
        display: inline;
    }

    .statement-container {
        padding: 0 1.5rem;
    }


    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .showcase-item {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

    .card-image {
        height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 350px;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 0.9rem;
    }

    .statement-text {
        font-size: 1.3rem;
        letter-spacing: 0;
        white-space: normal;
        line-height: 1.5;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .statement-word {
        display: inline;
    }

    .statement-section {
        padding: 0.5rem 0 3rem 0;
    }

    .statement-container {
        padding: 0 0.5rem;
        max-width: 100%;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-card {
        position: static;
        padding: 2rem;
    }

    .contact-info-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .contact-info-methods {
        gap: 1.5rem;
    }

    .contact-method-value {
        font-size: 1rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .statement-text {
        font-size: 1.1rem;
        letter-spacing: 0;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.25rem;
    }

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

    .statement-container {
        padding: 0 0.25rem;
        max-width: 100%;
    }

    .statement-section {
        padding: 0.5rem 0 2rem 0;
    }
}

/* Smooth Scroll - Enhanced */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* Account for fixed header */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ============================================
   INDUSTRIES SECTION - Premium Consultancy Style
   ============================================ */
.industries-section {
    padding: 10rem 0;
    background: transparent;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(66, 133, 244, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: rgba(66, 133, 244, 0.2);
    transform: scale(1.05);
}

.industry-card h3 {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.industry-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .industries-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   WHY EAS SECTION - Premium Consultancy Style
   ============================================ */
.why-eas-section {
    padding: 10rem 0;
    background: transparent;
}

.why-eas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-eas-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-eas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-eas-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(66, 133, 244, 0.18);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.why-eas-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(66, 133, 244, 0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.why-eas-card:hover .why-eas-number {
    color: rgba(66, 133, 244, 0.25);
    transform: scale(1.05);
}

.why-eas-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

.why-eas-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
}

@media (max-width: 768px) {
    .why-eas-section {
        padding: 3rem 0;
    }

    .why-eas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-eas-card {
        padding: 2rem 1.5rem;
    }

    .why-eas-number {
        font-size: 2.5rem;
    }

    .why-eas-card h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   SITE SEARCH STYLES
   ============================================ */

/* Search Trigger Button in Header */
.search-trigger {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-trigger:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Search Modal - Integrated Site Design */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.search-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12vh;
    opacity: 1;
}

.search-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 13, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.search-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px -10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
}

/* Search Header */
.search-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.search-icon {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
    outline: none;
    padding: 0;
}

.search-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.search-close {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    color: var(--text-primary);
}

/* Results Container */
.search-results {
    max-height: 50vh;
    overflow-y: auto;
    padding: 0.75rem;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.search-result-item:hover,
.search-result-item:focus {
    background: rgba(66, 133, 244, 0.08);
    color: var(--text-primary);
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-result-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(66, 133, 244, 0.12);
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.search-arrow {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
}

.search-result-item:hover .search-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent);
}

/* No Results */
.search-no-results {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.search-no-results i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    opacity: 0.3;
}

.search-no-results p {
    margin-bottom: 0.5rem;
}

.search-no-results small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer */
.search-footer {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.search-shortcut {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.6;
}

/* Highlight */
mark {
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    padding: 0;
}

.search-result-item:hover mark {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal.active {
        padding-top: 5vh;
    }

    .search-modal-content {
        width: 95%;
        border-radius: 12px;
    }

    .search-header {
        padding: 1rem;
    }

    .search-input {
        font-size: 1rem;
    }
}

/* ============================================
   NEW SERVICE PAGES STYLES
   ============================================ */

/* Tech Section */
.tech-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.tech-grid-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .tech-grid-cols {
        grid-template-columns: 1fr;
    }
}

.tech-col {
    display: flex;
}

.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.tech-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, transparent 50%);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon-large {
    margin-bottom: 1.5rem;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li strong {
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, transparent 50%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary-glow {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(66, 133, 244, 0.4);
}

.btn-primary-glow:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(66, 133, 244, 0.6);
}

/* Stats Grid for Service Pages */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stats-grid .stat-card {
    width: 100%;
    /* Removed max-width to allow full fill */
}

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

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

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #34A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefits-grid .benefit-item {
    width: 100%;
}

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

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

.benefit-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2) 0%, transparent 50%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.tech-card.plan {
    text-align: center;
}

.plan-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-header p {
    color: var(--text-secondary);
    margin: 0;
}

.plan-list {
    text-align: left;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.plan-list li i {
    color: var(--accent);
    margin-top: 0.25rem;
}

/* Alternative Footer (for new pages) */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.footer-col ul.contact-info li i {
    color: var(--accent);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Background Secondary */
.bg-secondary {
    background: var(--bg-secondary);
}

/* Centered Header */
.content-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Stats Section - 4 columns in single row */
.stats {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Tech Icon Large - proper sizing */
.tech-icon-large {
    margin-bottom: 1.5rem;
    min-height: 70px;
    display: flex;
    align-items: flex-end;
}

.tech-icon-large img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* Content Header - center for stats sections */
.content-section .content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-section .content-header .content-section-title {
    margin-bottom: 0;
}