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

:root {
    --color-bg: #0A1628;
    --color-bg-light: #0f1f3a;
    --color-primary: #4A5BFF;
    --color-secondary: #7B3FF2;
    --color-accent: #00F5FF;
    --color-text: #FFFFFF;
    --color-text-secondary: #E0E0E0;
    --color-text-muted: #8892B0;
    --gradient-primary: linear-gradient(135deg, #4A5BFF, #7B3FF2);
    --gradient-hero: linear-gradient(135deg, #0A1628 0%, #1a1a4e 50%, #4A5BFF 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(74, 91, 255, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(74, 91, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 91, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    padding: 10px 24px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
}

.mobile-cta {
    margin-top: 16px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 91, 255, 0.3) 0%, transparent 70%);
    z-index: 2;
    animation: pulse 8s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(74, 91, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 91, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #00F5FF 50%, #4A5BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 8s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 60px 0;
    background: var(--color-bg-light);
    border-top: 1px solid rgba(74, 91, 255, 0.1);
    border-bottom: 1px solid rgba(74, 91, 255, 0.1);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ===== Bento Grid ===== */
.values-section {
    padding: 100px 0;
}

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

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.bento-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 91, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.bento-card-lg {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.bento-card-wide {
    grid-column: span 2;
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.bento-card-lg .card-icon {
    width: 64px;
    height: 64px;
}

.bento-card-lg .card-title {
    font-size: 28px;
}

.bento-card-lg .card-desc {
    font-size: 17px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

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

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(74, 91, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 91, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--color-accent);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-accent);
    position: relative;
    z-index: 1;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 18px;
    height: 18px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 91, 255, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-light);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(74, 91, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 91, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* ===== About Page ===== */
.about-section {
    padding: 100px 0;
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-fast);
}

.stat-card:hover {
    border-color: rgba(74, 91, 255, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.vision-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

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

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-fast);
}

.vision-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 91, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.vision-icon {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
    margin: 0 auto 24px;
}

.vision-icon svg {
    width: 100%;
    height: 100%;
}

.vision-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vision-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.team-section {
    padding: 100px 0;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 91, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.avatar-placeholder svg {
    width: 40px;
    height: 40px;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.team-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== Services Detail Page ===== */
.services-detail-section {
    padding: 100px 0;
}

.service-detail {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 40px;
    transition: all var(--transition-fast);
}

.service-detail:hover {
    border-color: rgba(74, 91, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-detail-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-detail-content {
    margin-bottom: 32px;
}

.service-detail-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features,
.service-applications {
    margin-bottom: 24px;
}

.service-features h4,
.service-applications h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features li {
    font-size: 15px;
    color: var(--color-text-secondary);
    padding-left: 24px;
    position: relative;
}

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

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-tag {
    padding: 8px 20px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--color-accent);
}

.service-detail-cta {
    text-align: center;
}

.process-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: rgba(74, 91, 255, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-icon {
    width: 56px;
    height: 56px;
    color: var(--color-accent);
    margin: 0 auto 20px;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 100px 0;
}

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

.contact-info-title,
.contact-form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-desc,
.contact-form-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: rgba(74, 91, 255, 0.3);
    transform: translateX(8px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

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

.contact-card p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

.contact-hint {
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    margin-top: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--color-text);
    transition: all var(--transition-fast);
    font-family: var(--font-main);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 91, 255, 0.2);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892B0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 48px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--color-accent);
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.map-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 16px;
}

.map-hint {
    font-size: 14px;
    margin-top: 8px;
    color: var(--color-text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

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

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-grid {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

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

    .bento-card-lg,
    .bento-card-wide {
        grid-column: span 1;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .vision-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        padding: 30px;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100svh;
    }

    .trust-grid {
        flex-direction: column;
        gap: 16px;
    }
}
