/* White Box Tech - Dark Tech Theme */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-primary: #0b0d11;
    --bg-secondary: #0f1117;
    --bg-card: #14161e;
    --bg-card-hover: #1a1d27;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --accent-secondary: #22d3ee;
    --accent-green: #10b981;
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    --glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --glow-strong: 0 0 40px rgba(59, 130, 246, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Glow Orbs */
.glow-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.15);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(34, 211, 238, 0.1);
    bottom: -200px;
    right: -200px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.1); }
}

/* Floating Tech Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    color: rgba(59, 130, 246, 0.3);
    font-size: 1.25rem;
    animation: float 20s ease-in-out infinite;
}

.fi-1 { top: 15%; left: 5%; animation-delay: 0s; animation-duration: 18s; }
.fi-2 { top: 25%; right: 8%; animation-delay: -2s; animation-duration: 22s; }
.fi-3 { top: 45%; left: 3%; animation-delay: -4s; animation-duration: 20s; }
.fi-4 { top: 60%; right: 5%; animation-delay: -6s; animation-duration: 24s; }
.fi-5 { top: 75%; left: 8%; animation-delay: -8s; animation-duration: 19s; }
.fi-6 { top: 85%; right: 10%; animation-delay: -10s; animation-duration: 21s; }
.fi-7 { top: 35%; left: 92%; animation-delay: -12s; animation-duration: 23s; }
.fi-8 { top: 55%; left: 95%; animation-delay: -14s; animation-duration: 17s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.7; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.5; }
    75% { transform: translateY(-30px) rotate(3deg); opacity: 0.6; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 13, 17, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--glow), inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.logo-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent);
    border-radius: 3px;
}

.brand-text {
    font-weight: 700;
    font-size: 1.15rem;
    font-family: 'JetBrains Mono', monospace;
}

.brand-accent {
    color: var(--accent);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.navbar-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
}

.navbar-nav a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 8px 16px;
    background: var(--accent);
    border-radius: 6px;
    color: white !important;
}

.nav-cta:hover {
    box-shadow: var(--glow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    z-index: 1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Terminal Box Visual */
.hero-visual {
    flex-shrink: 0;
}

.terminal-box {
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glow);
}

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

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

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #eab308; }
.terminal-dot.green { background: #22c55e; }

.terminal-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* Hero Service Card */
.service-card-hero {
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glow);
    position: relative;
    animation: cardGlow 4s ease-in-out infinite;
}

.service-card-hero::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: var(--glow); }
    50% { box-shadow: var(--glow-strong); }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.service-card-section {
    margin-bottom: 20px;
}

.service-card-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.service-card-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-card-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.95rem;
}

.service-card-item.outcome i {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.service-card-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.service-card-footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.service-card-footer span {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'JetBrains Mono', monospace;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

/* Value Props */
.value-props {
    padding: 80px 2rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.prop-item:hover {
    border-color: var(--accent);
    box-shadow: var(--glow);
}

.prop-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.prop-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.prop-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Styles */
section {
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.section-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.section-icons i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: var(--accent);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.section-icons i:nth-child(2) {
    animation-delay: 0.5s;
}

.section-icons i:nth-child(3) {
    animation-delay: 1s;
}

.section-icons i:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow);
}

@keyframes iconPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.category-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-item:last-child {
    border-bottom: none;
}

.product-item.highlight {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    margin: 6px -12px;
    padding: 10px 12px;
    border-radius: 6px;
    border-bottom: none;
}

.product-item .name {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.product-item.highlight .name {
    color: var(--accent);
}

.product-item .name .star {
    color: var(--accent-secondary);
    font-size: 0.6rem;
}

.product-item .description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-family: 'JetBrains Mono', monospace;
}

/* Services Section */
.services-section {
    background: var(--bg-secondary);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.category-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-icon-large {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--glow);
}

.category-info {
    flex: 1;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.category-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.service-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.deliverables {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.deliverables-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.deliverables-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.deliverables-list li::before {
    content: '>';
    color: var(--accent-green);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid var(--border-color);
}

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

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icons i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.4rem;
    animation: contactFloat 4s ease-in-out infinite;
}

.contact-icons i:nth-child(2) {
    animation-delay: 0.3s;
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    box-shadow: var(--glow);
}

.contact-icons i:nth-child(3) {
    animation-delay: 0.6s;
}

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

.contact-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0.5;
}

.contact-decoration .deco-line {
    width: 60px;
    height: 1px;
    background: var(--border-color);
}

.contact-decoration i {
    color: var(--accent);
    font-size: 1.25rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand .logo-icon::before {
    width: 12px;
    height: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Loading */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading-spinner::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.25s; }

/* Scroll margin */
section[id] {
    scroll-margin-top: 80px;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .navbar-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-nav a {
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 6px 12px;
    }

    .brand-text {
        font-size: 1rem;
    }

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

    .prop-item {
        padding: 1.5rem;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .deliverables-list {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 1rem;
    }

    .category-banner {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        padding: 100px 1rem 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

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

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

    .section-label {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .section-icons {
        gap: 1rem;
    }

    .section-icons i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Contact section mobile */
    .contact-text h2 {
        font-size: 1.75rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .contact-icons i {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .contact-icons i:nth-child(2) {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    /* Service cards mobile */
    .service-category {
        padding: 1.25rem;
    }

    .category-icon-large {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .category-name {
        font-size: 1.1rem;
    }

    .category-description {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    /* Product cards mobile */
    .product-card {
        padding: 1.25rem;
    }

    .category-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .category-title {
        font-size: 0.95rem;
    }

    /* Hide floating icons on mobile */
    .floating-icons {
        display: none;
    }

    /* Reduce orb sizes on mobile */
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    /* Footer mobile */
    footer {
        padding: 2rem 1rem;
    }

    .footer-brand {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    /* Value props mobile */
    .value-props {
        padding: 50px 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav li:not(:last-child) a {
        font-size: 0.75rem;
    }

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

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .contact-icons {
        gap: 0.75rem;
    }

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

    .section-icons {
        gap: 0.75rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

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

/* Selection */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: var(--text-primary);
}
