/* ========================================
   FK94 Security - Styles
   ======================================== */

:root {
    /* Colors */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: #141416;
    --bg-card-hover: #1a1a1d;
    
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --accent-glow: rgba(16, 185, 129, 0.15);
    
    --border-color: #27272a;
    --border-light: #3f3f46;
    
    --gradient-start: #10b981;
    --gradient-end: #14b8a6;
    
    /* Typography */
    --font-primary: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-suffix {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.btn-nav {
    padding: 10px 20px;
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--accent-secondary);
}

.btn-nav-secondary {
    padding: 10px 20px;
    background: transparent;
    color: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-nav-secondary:hover {
    background: var(--accent-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(16, 185, 129, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.btn-secondary:hover {
    border-color: var(--border-light);
    background: var(--bg-tertiary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Vigia Promo */
.hero-vigia {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vigia-badge {
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-vigia p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.hero-vigia p strong {
    color: var(--accent-primary);
}

.vigia-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
    flex-wrap: wrap;
}

.vigia-links a {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.vigia-links a:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Hero Visual - Terminal */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.terminal {
    width: 100%;
    max-width: 480px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
    margin-left: auto;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.8;
}

.terminal-body p {
    margin-bottom: 4px;
}

.prompt {
    color: var(--accent-primary);
}

.cmd {
    color: var(--text-primary);
}

.output {
    color: var(--text-muted);
    padding-left: 16px;
}

.output.success {
    color: var(--accent-primary);
}

.output.warning {
    color: #f59e0b;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 14px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* ========================================
   Individuals Section
   ======================================== */
.individuals {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.individuals .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.individuals-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.individuals-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.individual-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ind-service {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-medium);
}

.ind-service:hover {
    border-color: var(--border-light);
}

.ind-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.ind-service h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ind-service p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Shield Visual */
.individuals-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.ring-1 {
    inset: 0;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    inset: 40px;
    animation: rotate 15s linear infinite reverse;
}

.ring-3 {
    inset: 80px;
    border-color: var(--accent-primary);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

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

.shield-center {
    position: absolute;
    inset: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
}

.shield-center svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-primary);
}

/* ========================================
   Methodology Section
   ======================================== */
.methodology {
    padding: var(--section-padding) 0;
}

.methodology-steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.method-step {
    flex: 1;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.method-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.method-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.method-connector {
    width: 40px;
    height: 2px;
    background: var(--border-color);
    margin-top: 60px;
    flex-shrink: 0;
}

/* ========================================
   Industries Section
   ======================================== */
.industries {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.industry-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-medium);
}

.industry-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.industry-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding) 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.value {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.value-icon {
    font-size: 16px;
}

/* Founder Card */
.founder-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.founder-image {
    flex-shrink: 0;
}

.founder-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary);
}

.founder-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 13px;
    color: var(--accent-primary);
    font-weight: 500;
}

.founder-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 12px 0;
}

.founder-links {
    display: flex;
    gap: 12px;
}

.founder-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.founder-links a:hover {
    background: var(--accent-primary);
}

.founder-links svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-method a,
.contact-method p {
    font-size: 15px;
    color: var(--text-primary);
}

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

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

/* ========================================
   Vigía Section
   ======================================== */
.vigia-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.vigia-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.vigia-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.vigia-logo {
    width: 48px;
    height: 48px;
}

.vigia-brand h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}

.vigia-subtitle {
    font-size: 18px;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.vigia-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.vigia-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vigia-tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-medium);
    text-decoration: none;
}

.vigia-tool-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vigia-tool-card .tool-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.vigia-tool-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.vigia-tool-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .hero-cta {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .individuals .container,
    .about .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .individuals-visual {
        order: -1;
    }

    .methodology-steps {
        flex-direction: column;
    }

    .method-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vigia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vigia-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .hero-vigia {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .vigia-links {
        margin-left: 0;
        width: 100%;
    }

    .vigia-links a {
        flex: 1;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .about-values {
        justify-content: center;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .shield-visual {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 { inset: 30px; }
    .ring-3 { inset: 60px; }
    .shield-center { inset: 70px; }
}

