/* ==========================================================================
   OM MARKETING - BRAND IDENTITY & STYLING SYSTEM (INSTITUTIONAL HOME PAGE)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --font-outfit: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-sora: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Theme Palette (Dark Premium) */
    --color-bg-deep: #030712;
    --color-bg-dark: #0b0f19;
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: rgba(255, 255, 255, 0.06);
    --color-card-hover: rgba(255, 255, 255, 0.06);
    
    /* Neon Accents & Gradients */
    --color-blue: #0b5cff;
    --color-cyan: #06b6d4;
    --color-violet: #7c3aed;
    --color-purple: #a855f7;
    --color-emerald: #10b981;

    --gradient-primary: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    --gradient-violet: linear-gradient(135deg, var(--color-purple), var(--color-violet));
    --gradient-dark: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
    
    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Shadows & Effects */
    --shadow-premium: 0 16px 48px -12px rgba(3, 7, 18, 0.5);
    --shadow-glow-blue: 0 0 24px rgba(11, 92, 255, 0.25);
    --shadow-glow-violet: 0 0 24px rgba(124, 58, 237, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
}

body {
    font-family: var(--font-outfit);
    color: var(--text-primary);
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Atmosphere Elements */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.bg-glow-violet {
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 80%);
}

.bg-glow-blue {
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 92, 255, 0.25) 0%, transparent 80%);
}

/* Layout Container */
.app-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation Bar */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    margin-top: 1.5rem;
    background: rgba(11, 15, 25, 0.65);
    border: 1px solid var(--color-card-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-img {
    height: 36px;
    width: auto;
    object-contain: fit;
}

.logo-text {
    font-family: var(--font-sora);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.portal-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    background: rgba(11, 92, 255, 0.1);
    border: 1px solid rgba(11, 92, 255, 0.2);
    border-radius: 12px;
}

.portal-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-cyan);
    animation: pulse 2s infinite;
}

.cta-btn-header {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow-blue);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(11, 92, 255, 0.45);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding: 6rem 1rem 5rem 1rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-card-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-blue);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero-title {
    font-family: var(--font-sora);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-blue) 20%, var(--color-cyan) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-weight: 700;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: var(--shadow-glow-blue);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(11, 92, 255, 0.45);
}

.btn-arrow {
    transition: transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 1.1rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--color-card-border);
    font-weight: 600;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Tech Orbit Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.visual-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 40px rgba(11, 92, 255, 0.35);
}

.central-logo {
    width: 75px;
    height: auto;
}

.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.05);
}

.orbit-1 {
    width: 240px;
    height: 240px;
}

.orbit-2 {
    width: 360px;
    height: 360px;
    animation: rotate 60s linear infinite;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid var(--color-card-border);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-premium);
    z-index: 10;
}

.badge-icon {
    color: var(--color-blue);
}

.badge-traffic {
    top: 15%;
    left: -5%;
}

.badge-crm {
    top: 10%;
    right: -5%;
}

.badge-ai {
    bottom: 20%;
    left: -10%;
}

.badge-data {
    bottom: 15%;
    right: -5%;
}

/* Stats Block */
.stats-section {
    padding: 2.5rem 0;
    background: rgba(11, 15, 25, 0.4);
    border-top: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    border-radius: 24px;
    margin-bottom: 6rem;
}

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

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num {
    font-family: var(--font-sora);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

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

/* Section Common Headers */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-sora);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    margin-bottom: 8rem;
}

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

.solution-card {
    position: relative;
    background: rgba(11, 15, 25, 0.55);
    border: 1px solid var(--color-card-border);
    border-radius: 28px;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-premium);
}

.card-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(11, 92, 255, 0.08);
    color: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-card:nth-child(2) .card-icon-wrapper {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-emerald);
}

.solution-card:nth-child(3) .card-icon-wrapper {
    background: rgba(168, 85, 247, 0.08);
    color: var(--color-purple);
}

.solution-card:nth-child(4) .card-icon-wrapper {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.solution-card .card-title {
    font-family: var(--font-sora);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 1px solid var(--color-card-border);
    padding-top: 1.5rem;
}

.card-list li {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: inline-block;
}

.solution-card:nth-child(2) .card-list li::before { background-color: var(--color-emerald); }
.solution-card:nth-child(3) .card-list li::before { background-color: var(--color-purple); }
.solution-card:nth-child(4) .card-list li::before { background-color: #f59e0b; }

/* Methodology Section */
.methodology-section {
    margin-bottom: 8rem;
}

.methodology-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, var(--color-blue), var(--color-purple), transparent);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding-right: 3rem;
    margin-bottom: 3.5rem;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 3rem;
    margin-left: auto;
}

.timeline-badge {
    position: absolute;
    top: 4px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-sora);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 5;
    box-shadow: var(--shadow-glow-blue);
}

.timeline-item:nth-child(even) .timeline-badge {
    right: auto;
    left: -20px;
    border-color: var(--color-purple);
    box-shadow: var(--shadow-glow-violet);
}

.timeline-panel {
    background: rgba(11, 15, 25, 0.45);
    border: 1px solid var(--color-card-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.timeline-panel h3 {
    font-family: var(--font-sora);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.timeline-panel p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    margin-bottom: 8rem;
}

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

.team-card {
    background: rgba(11, 15, 25, 0.45);
    border: 1px solid var(--color-card-border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--color-bg-deep);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-img {
    transform: scale(1.04);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.95) 100%);
}

.member-info {
    padding: 2rem;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-cyan);
    margin-bottom: 0.5rem;
    display: block;
}

.member-name {
    font-family: var(--font-sora);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: rgba(11, 15, 25, 0.45);
    border: 1px solid var(--color-card-border);
    border-radius: 36px;
    padding: 4.5rem;
    margin-bottom: 6rem;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: var(--font-sora);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.detail-icon {
    color: var(--color-blue);
}

.wa-link {
    color: var(--color-emerald);
    text-decoration: none;
    border-bottom: 1px dashed var(--color-emerald);
    transition: opacity 0.2s ease;
}

.wa-link:hover {
    opacity: 0.8;
}

/* Form Styling */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-card-border);
    padding: 3rem;
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
}

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

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

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input, .form-select {
    padding: 0.9rem 1.1rem;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 12px rgba(11, 92, 255, 0.15);
}

.form-select option {
    background: var(--color-bg-dark);
    color: var(--text-primary);
}

.btn-submit-form {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-glow-blue);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 0.5rem;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(11, 92, 255, 0.4);
}

/* Footer Section */
.main-footer {
    border-top: 1px solid var(--color-card-border);
    padding: 4rem 1rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-name {
    font-family: var(--font-sora);
    font-weight: 800;
    font-size: 1.4rem;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(11, 92, 255, 0.25); }
    50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.45); }
    100% { box-shadow: 0 0 20px rgba(11, 92, 255, 0.25); }
}

.animate-pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem 1.5rem;
    }
    
    .header-nav {
        display: none; /* Mobile nav burger or dropdown could be implemented */
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-visual {
        height: 380px;
    }
    
    .visual-container {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 280px; height: 280px; }
    
    .central-node { width: 85px; height: 85px; }
    .central-logo { width: 55px; }
    
    .floating-badge {
        font-size: 0.75rem;
        padding: 0.45rem 0.85rem;
    }
    
    .badge-traffic { top: 12%; left: -5%; }
    .badge-crm { top: 5%; right: -5%; }
    .badge-ai { bottom: 15%; left: -10%; }
    .badge-data { bottom: 10%; right: -5%; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 3.5rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 3.5rem;
    }
    
    .timeline-badge {
        left: 0 !important;
        right: auto !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
