:root { --primary: #3b82f6; --primary-glow: rgba(59, 130, 246, 0.5); --primary-dark: #2563eb; --primary-light: #60a5fa; --secondary: #64748b; --accent: #06b6d4; --dark: #020617; --gray-900: #0f172a; --gray-800: #1e293b; --gray-700: #334155; --gray-600: #94a3b8; --gray-400: #cbd5e1; --gray-100: #f1f5f9; --light: #f8fafc; --white: #ffffff; --bg-body: var(--dark); --bg-card: rgba(30, 41, 59, 0.7); --text-main: var(--light); --text-muted: var(--gray-600); --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); --gradient-dark: radial-gradient(circle at center, #1e293b 0%, #020617 100%); --gradient-glow: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.15), transparent 70%); --font-primary: 'Inter', system-ui, -apple-system, sans-serif; --font-heading: 'Inter', var(--font-primary); --radius-lg: 12px; --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1); --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px; --space-xl: 32px; --space-3xl: 48px; --space-4xl: 64px; --radius-sm: 6px; --radius-md: 10px; --radius-full: 9999px; --container-max: 1200px; --container-padding: 20px; --shadow-sm: 0 4px 10px rgba(2, 6, 23, 0.06); --shadow-md: 0 8px 24px rgba(2, 6, 23, 0.08); --shadow-xl: 0 20px 40px rgba(2, 6, 23, 0.12); --shadow-2xl: 0 30px 80px rgba(2, 6, 23, 0.14); --z-backdrop: 900; --z-sticky: 1100; --z-toast: 1200; --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem; --text-lg: 1.125rem; --text-2xl: 1.375rem; --text-3xl: 1.75rem; --text-4xl: 2rem; --text-5xl: 2.5rem; --text-6xl: 3rem; --font-thin: 250; --font-regular: 400; --font-medium: 500; --font-semibold: 600; --font-bold: 700; --border-default: 1px solid rgba(0, 0, 0, 0.06); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-primary); line-height: 1.6; color: var(--text-main); background-color: var(--bg-body); background-image: var(--gradient-glow); background-attachment: fixed; overflow-x: hidden; } a { color: var(--primary-light); text-decoration: none; transition: all var(--transition-base); } #main-header { background: transparent; backdrop-filter: none; border-bottom: 1px solid transparent; transition: background 350ms ease, backdrop-filter 350ms ease, padding 350ms ease, box-shadow 350ms ease, border-color 350ms ease; } #main-header { position: sticky; top: 0; z-index: var(--z-sticky); } .nav-links a { color: var(--gray-400); } .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255, 255, 255, 0.05); } .container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); } .section-padding { padding: var(--space-4xl) 0; } .bg-light { background: #f8fafc; position: relative; border-top: 1px solid rgba(0, 0, 0, 0.06); border-bottom: 1px solid rgba(0, 0, 0, 0.06); } .bg-light .section-header h2 { color: var(--dark); } .bg-light .section-header p { color: var(--secondary); } .bg-light .service-cat { color: var(--primary); } .bg-light .service-title { color: var(--dark); } .bg-light .service-title strong { color: var(--primary-dark); } .bg-light .service-desc { color: #475569; } .bg-light .service-icon svg { stroke: var(--primary); } .bg-white { background-color: var(--gray-900); } .hidden { display: none !important; } .back-to-top { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 999px; background: var(--gradient-primary); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.12); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 240ms ease, transform 240ms ease, box-shadow 240ms ease; z-index: var(--z-toast); } .back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; } .back-to-top:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(2, 6, 23, 0.4); } .back-to-top:focus-visible { outline: 2px solid rgba(96, 165, 250, 0.9); outline-offset: 3px; } @media (max-width: 768px) { .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; } } h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: var(--font-bold); line-height: 1.2; margin-bottom: var(--space-md); } h1 { font-size: var(--text-5xl); } h2 { font-size: var(--text-4xl); } h3 { font-size: var(--text-3xl); } h4 { font-size: var(--text-2xl); } h5 { font-size: var(--text-xl); } h6 { font-size: var(--text-lg); } p { margin-bottom: var(--space-md); } ul, ol { list-style: none; } img { max-width: 100%; height: auto; display: block; } nav { display: block; padding: 0; } .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 6px var(--container-padding); } #main-header .nav-links a { color: var(--gray-400); } #main-header .nav-links a:hover, #main-header .nav-links a.active { color: var(--white); background: rgba(255, 255, 255, 0.05); } .logo { display: flex; align-items: center; font-size: var(--text-xl); font-weight: var(--font-bold); color: var(--primary); text-decoration: none; transition: transform var(--transition-base); } .logo:hover { transform: scale(1.05); } .logo-icon { width: 44px; height: 44px; margin-right: var(--space-sm); background: var(--white); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; padding: 6px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); object-fit: contain; } .nav-links { display: flex; gap: calc(var(--space-md) + 8px); align-items: center; } .nav-links { transition: max-height var(--transition-base), opacity var(--transition-base); } @media (max-width: 768px) { .nav-links { display: block; max-height: 0; overflow: hidden; opacity: 0; padding-left: 0; background: var(--white); position: absolute; left: 0; right: 0; top: 100%; box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08); z-index: calc(var(--z-sticky) - 1); border-bottom-left-radius: var(--radius-md); border-bottom-right-radius: var(--radius-md); padding: var(--space-md) var(--container-padding); } .nav-inner.nav-open .nav-links { max-height: 420px; opacity: 1; transform: translateY(0); } } .nav-links a { color: var(--dark); font-weight: var(--font-medium); position: relative; padding: calc(var(--space-sm) / 2) var(--space-sm); border-radius: var(--radius-sm); } .nav-links a:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition-base); } .nav-links a:hover:after, .nav-links a.active:after { width: 100%; } .mobile-menu { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 12px; background: rgba(255, 255, 255, 0.1); border: none; border-radius: 8px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 2001; } .mobile-menu:hover { background: rgba(255, 255, 255, 0.15); } .mobile-menu:focus { outline: 2px solid var(--primary); outline-offset: 2px; } @media (max-width: 768px) { .mobile-menu { display: flex; } .nav-inner { position: relative; } .nav-links li { padding: var(--space-sm) 0; } .nav-links a { display: block; padding: var(--space-sm) var(--space-sm); } } @media (max-width: 768px) { .nav-inner .nav-links { background: linear-gradient(180deg, var(--white), #fbfdff); border-top: 4px solid var(--primary); } .nav-links a { color: var(--dark); padding: 0.75rem 0.5rem; border-radius: var(--radius-sm); } .nav-links a:hover, .nav-links a:focus { background: rgba(10, 132, 214, 0.08); color: var(--primary-dark); } } .mobile-menu span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center; } .mobile-menu.active { background: rgba(255, 255, 255, 0.2); } .mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .mobile-menu.active span:nth-child(2) { opacity: 0; transform: scaleX(0); } .mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); } .hero-section { padding-top: 80px; min-height: 100vh; background: var(--gradient-primary); display: flex; align-items: center; position: relative; overflow: hidden; } .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.1; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .1) 35px, rgba(255, 255, 255, .1) 70px); } .hero-content { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; position: relative; z-index: 1; justify-items: center; text-align: center; } .hero-title { color: var(--white); margin-bottom: var(--space-lg); } .hero-description { font-size: var(--text-xl); color: rgba(255, 255, 255, 0.9); margin-bottom: var(--space-xl); } #main-header.scrolled { background: rgba(2, 6, 23, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 8px 24px rgba(2, 6, 23, 0.4); border-bottom: 1px solid rgba(255, 255, 255, 0.07); padding: 0.2rem 0; } .nav-container { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; z-index: 1001; } .logo-icon { width: 40px; height: 40px; transition: transform 0.3s ease; } .logo:hover .logo-icon { transform: rotate(-10deg) scale(1.05); } .logo-img { height: 52px; width: auto; transition: transform 0.3s ease, height 350ms ease; } .logo:hover .logo-img { transform: scale(1.05); } #main-header.scrolled .logo-img { height: 42px; } @media (max-width: 768px) { .logo-img { height: 44px; } } .logo-text { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; transition: color 0.3s ease; } .logo-highlight { color: #38bdf8; } .logo-text-wrap { display: inline-flex; align-items: baseline; gap: 6px; } .logo-suffix { font-size: 0.95rem; font-weight: var(--font-medium); color: rgba(255, 255, 255, 0.85); opacity: 0.95; } .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; } .nav-links a { font-weight: 500; font-size: 0.95rem; text-decoration: none; position: relative; padding: 5px 0; transition: color 0.3s ease; } .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: #38bdf8; transition: width 0.3s ease; } .nav-links a:hover::after { width: 100%; } .nav-links a:hover { color: var(--white); } .btn-header-cta { background: var(--white); color: var(--primary); padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .btn-header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); background: #f0f9ff; } #main-header.scrolled .logo-text { color: var(--white); } #main-header.scrolled .nav-links a { color: var(--gray-400); } #main-header.scrolled .nav-links a:hover { color: var(--white); } #main-header.scrolled .btn-header-cta { background: var(--primary); color: var(--white); } .mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; } .bar { width: 25px; height: 2px; background-color: var(--white); transition: all 0.3s ease; } @media (max-width: 768px) { .nav-links { display: none; } .btn-header-cta { display: none; } .mobile-toggle { display: flex; } nav.active .nav-links { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; height: 100vh; width: 75%; background: var(--white); padding-top: 5rem; padding-left: 2rem; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); } nav.active .nav-links a { color: var(--dark); font-size: 1.2rem; } } #main-footer { background: linear-gradient(180deg, var(--gray-900) 0%, var(--dark) 100%); color: var(--white); padding: var(--space-4xl) 0 var(--space-lg); border-top: 1px solid rgba(255, 255, 255, 0.08); } .footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-3xl); margin-bottom: var(--space-xl); align-items: start; } @media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } } @media (max-width: 600px) { .footer-content { grid-template-columns: 1fr; gap: var(--space-xl); } } .footer-brand { display: flex; flex-direction: column; gap: var(--space-md); } .footer-logo { display: inline-block; margin-bottom: var(--space-sm); } .footer-logo-img { height: 60px; width: auto; transition: transform 0.3s ease, filter 0.3s ease; } .footer-logo:hover .footer-logo-img { transform: scale(1.05); filter: brightness(1.1); } .footer-section h4 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-lg); position: relative; padding-bottom: var(--space-sm); } .footer-section h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; } .footer-section p { color: var(--gray-400); margin-bottom: var(--space-md); line-height: 1.7; } .footer-contact-list { display: flex; flex-direction: column; gap: var(--space-md); } .footer-contact-item { display: flex; align-items: center; gap: var(--space-sm); color: var(--gray-400); transition: color 0.3s ease; } .footer-contact-item:hover { color: var(--primary-light); } .footer-contact-item svg { flex-shrink: 0; color: var(--primary); } .footer-links a { color: var(--gray-400); display: block; padding: var(--space-xs) 0; transition: color var(--transition-base); } .footer-links a:hover { color: var(--primary-light); } .footer-social { display: flex; gap: var(--space-md); } .footer-social a { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--gray-400); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); } .footer-bottom { text-align: center; padding-top: var(--space-xl); border-top: 1px solid rgba(255, 255, 255, 0.08); color: var(--gray-600); font-size: 0.9rem; } @media (max-width: 768px) { .contact-container { grid-template-columns: 1fr; gap: var(--space-lg); padding: 0 var(--container-padding); } .contact-details { margin-bottom: var(--space-md); } .contact-form-wrapper { max-width: none; padding: var(--space-lg); } .contact-item { word-break: break-word; } } .services-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: var(--space-xl); position: relative; } .services-side { display: flex; flex-direction: column; gap: calc(var(--space-lg) + 6px); } .service-item { background: transparent; padding: 0; } .service-cat { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--primary-light); font-weight: 800; margin-bottom: calc(var(--space-xs)); } .service-title { font-size: 1.25rem; margin: 0 0 calc(var(--space-xs)); color: var(--white); line-height: 1.08; } .service-desc { max-height: 0; opacity: 0; transform: translateY(8px); overflow: hidden; transition: max-height 560ms cubic-bezier(.2, .9, .3, 1), opacity 420ms ease, transform 420ms ease; color: var(--gray-400); margin-top: var(--space-xs); } .service-item.open .service-desc { max-height: 420px; opacity: 1; transform: translateY(0); } .services-hero { position: relative; } .services-hero::before { content: ''; position: absolute; inset: -10% -5% auto -5%; height: 220px; background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.03) 0%, rgba(2, 6, 23, 0.00) 60%); pointer-events: none; z-index: 0; } .services-side, .service-item { position: relative; z-index: 1; } .service-item.revealed { transform: translateY(0); } .service-item.open { box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06); border-radius: 10px; padding: 18px 14px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00)); } .service-item .service-title { transition: color 360ms ease, transform 360ms cubic-bezier(.2, .9, .3, 1); } .service-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: calc(var(--space-xs)); color: var(--primary); } .service-icon svg { width: 40px; height: 40px; display: block; stroke: currentColor; stroke-width: 1.5; fill: none; opacity: 0; transition: opacity 600ms ease; } .service-item.revealed .service-icon svg { opacity: 1; } .service-item.revealed .service-title strong { color: var(--primary); } .service-item .service-desc { transition-duration: 640ms; } .service-item:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(2, 6, 23, 0.08); } .services-side .service-item { opacity: 0; transform: translateY(12px); transition: opacity 700ms ease, transform 700ms ease; } @media (max-width: 1024px) { .services-hero { grid-template-columns: 1fr; } .services-left, .services-right { order: initial; } } #main-header .nav-links a { color: var(--gray-400); } #main-header .nav-links a:hover, #main-header .nav-links a.active { color: var(--white); background: rgba(255, 255, 255, 0.05); } #main-header.scrolled .nav-links a { color: var(--gray-400); } #main-header.scrolled .nav-links a:hover { color: var(--white); } .service-item.revealed { opacity: 1; transform: translateY(0); } .services-connectors .connector { opacity: 0; transform: translateY(6px); transition: opacity 480ms ease, transform 480ms ease; } .services-hero.loaded .services-connectors .connector { opacity: 1; transform: translateY(0); } .section-header h2 { color: var(--white); } .section-header p { color: var(--gray-400); } .bg-light .section-header h2 { color: var(--dark); } .bg-light .section-header p { color: var(--secondary); } @media (max-width: 768px) { .nav-inner.nav-open { position: relative; z-index: 2000; } .nav-inner.nav-open .mobile-menu { position: fixed; top: 16px; right: 16px; z-index: 2002; } .nav-inner.nav-open .logo { position: fixed; top: 16px; left: 16px; z-index: 2002; } .nav-inner.nav-open::before { content: ''; position: fixed; inset: 0; background: rgba(2, 6, 23, 0.6); z-index: -1; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .nav-inner.nav-open .nav-links { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; left: 0; height: 100vh; padding: 100px 32px 40px; background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .nav-inner.nav-open .nav-links li { opacity: 0; animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; } .nav-inner.nav-open .nav-links li:nth-child(1) { animation-delay: 0.1s; } .nav-inner.nav-open .nav-links li:nth-child(2) { animation-delay: 0.15s; } .nav-inner.nav-open .nav-links li:nth-child(3) { animation-delay: 0.2s; } .nav-inner.nav-open .nav-links li:nth-child(4) { animation-delay: 0.25s; } .nav-inner.nav-open .nav-links li:nth-child(5) { animation-delay: 0.3s; } .nav-inner.nav-open .nav-links li:nth-child(6) { animation-delay: 0.35s; } .nav-inner.nav-open .nav-links li:nth-child(7) { animation-delay: 0.4s; } .nav-inner.nav-open .nav-links a { font-size: 1.35rem; font-weight: 500; padding: 18px 16px; color: var(--white); border-radius: 12px; transition: all 0.2s ease; display: block; } .nav-inner.nav-open .nav-links a:hover, .nav-inner.nav-open .nav-links a:focus { background: rgba(255, 255, 255, 0.1); color: var(--primary-light); transform: translateX(8px); } .nav-inner.nav-open .nav-links a::after { display: none; } .mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .mobile-menu.active span:nth-child(2) { opacity: 0; transform: scaleX(0); } .mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); } } .btn { padding: var(--space-sm) var(--space-xl); border-radius: var(--radius-full); font-weight: var(--font-semibold); font-size: var(--text-base); border: none; cursor: pointer; display: inline-block; text-align: center; transition: all var(--transition-base); position: relative; overflow: hidden; } .btn-primary { background: var(--white); color: var(--primary); position: relative; overflow: hidden; } .btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: left 0.5s ease; } .btn-primary:hover::before { left: 100%; } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25); } .btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); } .btn-secondary:hover { background: var(--white); color: var(--primary); } .submit-btn { width: 100%; padding: var(--space-md); background: var(--gradient-primary); color: var(--white); border: none; border-radius: var(--radius-md); font-size: var(--text-lg); font-weight: var(--font-semibold); cursor: pointer; transition: all var(--transition-base); } .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); } .badges { display: flex; gap: var(--space-md); margin: var(--space-xl) 0; flex-wrap: wrap; } .badge { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-full); color: var(--white); font-size: var(--text-sm); display: flex; align-items: center; gap: var(--space-sm); } .badge-icon { font-size: var(--text-lg); } .nav-links a:hover, .nav-links a:focus { background: rgba(0,0,0,0.04); color: var(--primary-dark); outline: none; } @media (max-width: 768px){ .nav-links li { padding: var(--space-sm) 0; } .nav-links a { display: block; padding: var(--space-sm) var(--space-md); } .mobile-menu:focus { outline: 3px solid rgba(99,102,241,0.15); border-radius: var(--radius-sm); } } .hero-title { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.05; } .btn-primary { background: var(--white); color: var(--primary); box-shadow: 0 8px 24px rgba(2,6,23,0.12); } .btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); } .cookie-banner { background: linear-gradient(180deg, rgba(10,132,214,0.95), rgba(10,116,218,0.95)); color: var(--white); border-radius: var(--radius-md); box-shadow: 0 12px 30px rgba(2,6,23,0.25); padding: var(--space-md); position: fixed; left: 50%; transform: translateX(-50%) translateY(20px); bottom: 24px; max-width: 1100px; width: calc(100% - 48px); z-index: var(--z-toast); opacity: 0; transition: transform 300ms ease, opacity 300ms ease; } .cookie-banner.visible { transform: translateX(-50%) translateY(0); opacity: 1; } .cookie-banner .cookie-actions { display:flex; gap:var(--space-sm); justify-content:flex-end; align-items:center; } .btn-tertiary { background: transparent; color: var(--dark); border: 1px dashed rgba(0,0,0,0.08); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); } @media (max-width: 640px){ .cookie-banner .cookie-actions { flex-direction: column-reverse; gap: var(--space-sm); align-items: stretch; } .cookie-banner .cookie-actions .btn { width: 100%; } } .nav-inner .nav-links { transition: max-height 320ms ease, opacity 320ms ease, transform 320ms ease; } .nav-inner.nav-open .nav-links { transform: translateY(0); } .card { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-md); transition: all var(--transition-base); } .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-lg); } .team-member { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,255,0.9)); border-radius: var(--radius-lg); padding: calc(var(--space-lg) + 6px) var(--space-lg); text-align: center; transition: all var(--transition-base); box-shadow: 0 8px 28px rgba(2,6,23,0.07); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; } .team-member:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); } .team-member:hover { transform: translateY(-10px); box-shadow: var(--shadow-2xl); } .member-avatar { width: 110px; height: 110px; background: var(--light); border-radius: var(--radius-full); margin: 0 0 var(--space-md); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: var(--text-2xl); font-weight: var(--font-bold); overflow: hidden; border: 4px solid rgba(255,255,255,0.06); } .member-name { font-size: var(--text-lg); font-weight: var(--font-bold); color: var(--dark); margin-bottom: calc(var(--space-xs)); } .member-role { color: var(--primary); font-weight: var(--font-medium); margin-bottom: var(--space-sm); } .member-quote { font-style: italic; color: var(--gray-600); font-size: var(--text-sm); margin: 0 0 var(--space-md); min-height: 3.2rem; } .social-link { display: inline-flex; width: 36px; height: 36px; background: transparent; border-radius: var(--radius-full); align-items: center; justify-content: center; color: var(--primary); transition: all var(--transition-base); text-decoration: none; border: 1px solid rgba(0,0,0,0.06); } .social-link:hover { background: var(--primary); color: var(--white); transform: scale(1.1); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-xl); } .service-card { background: var(--gradient-primary); border-radius: var(--radius-xl); padding: var(--space-xl); color: var(--white); position: relative; overflow: hidden; transition: all var(--transition-base); cursor: pointer; } .service-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3); } .service-icon { font-size: var(--text-5xl); margin-bottom: var(--space-md); display: block; } .service-title { font-size: var(--text-2xl); margin-bottom: var(--space-md); } .service-description { color: rgba(255,255,255,0.9); line-height: 1.6; } .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: var(--space-xl); } html, body { height: 100%; } body { display: flex; flex-direction: column; min-height: 100vh; } main#main-content { flex: 1 0 auto; } footer#main-footer { flex-shrink: 0; } .portfolio-item { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition-base); cursor: pointer; display: block; color: inherit; text-decoration: none; } .portfolio-item:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 20px 40px rgba(2, 6, 23, 0.3); } .portfolio-image { height: 220px; background: var(--gradient-primary); position: relative; overflow: hidden; } .portfolio-link { display: block; width: 100%; height: 100%; } .portfolio-image img{ width:100%; height:100%; object-fit:cover; display:block; } .portfolio-content { padding: var(--space-lg); } .portfolio-title { font-size: var(--text-xl); font-weight: var(--font-bold); color: var(--white); margin-bottom: var(--space-sm); } .portfolio-client { color: var(--primary); font-size: var(--text-sm); margin-bottom: var(--space-md); } .portfolio-description { color: var(--gray-400); margin-bottom: var(--space-md); line-height: 1.6; } .portfolio-tech { display: flex; gap: var(--space-sm); flex-wrap: wrap; } .tech-tag { background: rgba(59, 130, 246, 0.15); color: var(--primary-light); padding: var(--space-xs) var(--space-sm); border-radius: var(--radius-full); font-size: var(--text-xs); } .portfolio-cta{ margin-top: var(--space-md); display:flex; gap:var(--space-sm); } .portfolio-cta .btn{ padding: 0.5rem 1rem; font-size: var(--text-sm); } .btn-portfolio { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-md); padding: 10px 20px; background: var(--gradient-primary); color: var(--white); border-radius: var(--radius-full); font-weight: var(--font-semibold); font-size: var(--text-sm); transition: all var(--transition-base); text-decoration: none; } .btn-portfolio:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); color: var(--white); } .btn-portfolio svg { transition: transform var(--transition-base); } .btn-portfolio:hover svg { transform: translate(3px, -3px); } .portfolio-tags { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-top: var(--space-md); } .service-card{position:relative;overflow:hidden} .service-card:after{ content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.06));opacity:0;transition:all var(--transition-base); } .service-card:hover:after{opacity:1} .testimonial{display:flex;flex-direction:column;gap:var(--space-md)} .testimonial .testimonial-text{flex:1} .card:focus, .service-card:focus, .portfolio-item:focus, .team-member:focus{ outline: 3px solid rgba(99,102,241,0.15); transform: translateY(-6px); } @media (max-width: 768px){ .contact-container{grid-template-columns:1fr} .form-row{grid-template-columns:1fr} .hero-image .team-illustration{height:300px} .portfolio-image{height:180px} } @media (min-width: 1024px){ .team-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; grid-auto-flow: row; --team-col-width: calc((100% - (2 * var(--space-lg))) / 3); } } .team-row-centered{ grid-column: 1 / -1; display: flex; justify-content: center; gap: var(--space-lg); padding-top: var(--space-lg); align-items: flex-start; } .team-row-centered .team-member{ flex: 0 0 var(--team-col-width); max-width: var(--team-col-width); box-sizing: border-box; } @media (max-width: 1023px){ .team-row-centered{ flex-direction: column; gap: var(--space-md); } .team-row-centered .team-member{ flex: 1 1 auto; max-width: none; } } @media (max-width: 640px){ .team-grid { grid-template-columns: 1fr; gap: var(--space-md); } .team-member { padding: calc(var(--space-md)) var(--space-md); border-radius: calc(var(--radius-md)); } .member-avatar { width: 80px; height: 80px; margin-bottom: var(--space-sm); } .member-name { font-size: 1rem; } .member-role { font-size: 0.95rem; } .member-quote { font-size: 0.9rem; min-height: auto; } } .testimonials { background: var(--gray-900); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-xl); } .testimonial { background: rgba(30, 41, 59, 0.9); border: 1px solid rgba(255, 255, 255, 0.08); padding: var(--space-xl); border-radius: var(--radius-lg); position: relative; } .testimonial:before { content: '"'; position: absolute; top: -10px; left: 20px; font-size: var(--text-6xl); color: var(--primary); opacity: 0.2; } .testimonial-text { font-style: italic; color: var(--gray-400); margin-bottom: var(--space-md); } .testimonial-author { font-weight: var(--font-bold); color: var(--white); } .testimonial-company { color: var(--primary-light); font-size: var(--text-sm); } .contact-section { padding: var(--space-4xl) 0; background: linear-gradient(180deg, var(--dark) 0%, var(--gray-900) 50%, var(--dark) 100%); color: var(--white); } .contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-3xl); align-items: start; } .contact-info h3 { font-size: var(--text-3xl); margin-bottom: var(--space-md); } .contact-info p { margin-bottom: var(--space-xl); color: var(--gray-400); } .contact-details { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: var(--space-xl); border-radius: var(--radius-lg); } .contact-item { display: flex; align-items: start; gap: var(--space-md); margin-bottom: var(--space-lg); } .contact-item:last-child { margin-bottom: 0; } .contact-icon { width: 40px; height: 40px; background: rgba(59, 130, 246, 0.15); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary-light); } .contact-item a { color: var(--gray-400); } .contact-item a:hover { color: var(--primary-light); } .contact-form-wrapper { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08); padding: var(--space-xl); border-radius: var(--radius-lg); } .form-title { color: var(--white); font-size: var(--text-2xl); margin-bottom: var(--space-xs); } .form-subtitle { color: var(--gray-600); font-size: var(--text-sm); margin-bottom: var(--space-xl); } .contact-form { display: flex; flex-direction: column; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); } .form-group { margin-bottom: var(--space-md); } .form-group label { display: block; color: var(--gray-400); margin-bottom: var(--space-xs); font-weight: var(--font-medium); font-size: var(--text-sm); } .form-group input, .form-group textarea { width: 100%; padding: var(--space-sm) var(--space-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); font-size: var(--text-base); color: var(--white); transition: all var(--transition-base); font-family: inherit; } .form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-700); } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: rgba(59, 130, 246, 0.08); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); } .form-group textarea { resize: vertical; min-height: 110px; } .form-checkbox { display: flex; align-items: start; gap: var(--space-sm); margin-bottom: var(--space-lg); color: var(--gray-600); font-size: var(--text-sm); } .form-checkbox input { margin-top: 0.25rem; } .form-checkbox a { color: var(--primary-light); text-decoration: underline; } .team-illustration { width: 100%; height: 400px; background: rgba(255,255,255,0.1); border-radius: var(--radius-xl); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } .floating-cards { position: absolute; width: 100%; height: 100%; } .card-float { position: absolute; background: rgba(255,255,255,0.2); backdrop-filter: blur(5px); border-radius: var(--radius-md); padding: var(--space-md); font-weight: var(--font-medium); } .card-float:nth-child(1) { top: 20%; left: 10%; } .card-float:nth-child(2) { top: 60%; right: 10%; } .card-float:nth-child(3) { bottom: 20%; left: 30%; } .cta-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; } .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; } .hero-video { position: absolute; top: 50%; left: 50%; width: 120%; height: auto; min-height:100%; transform: translate(-50%, -50%); object-fit: cover; pointer-events: none; } .hero-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,6,23,0.35), rgba(2,6,23,0.45)); z-index:0 } .hero-content { position: relative; z-index: 1; } @media (prefers-reduced-motion: reduce), (max-width: 768px) { .hero-video { display: none; } .hero-section::after { background: linear-gradient(180deg, rgba(2,6,23,0.6), rgba(2,6,23,0.7)); } } .hero-image { display: none !important; } .hero-text { max-width: 900px; margin: 0 auto; } .badges { justify-content: center; } .cta-buttons { justify-content: center; } .fade-up { opacity: 0; transform: translateY(12px); transition: opacity 420ms ease, transform 420ms ease; } .fade-up.visible { opacity: 1; transform: translateY(0); } .member-actions { display:flex; justify-content:space-between; align-items:center; gap:var(--space-md); margin-top: var(--space-md); } .btn-sm { padding: 0.35rem 0.8rem; font-size: 0.9rem; border-radius: var(--radius-md); } .team-member .btn-secondary.read-more { background: var(--primary); color: #fff; border-color: transparent; } .team-member .btn-secondary.read-more:hover { background: var(--primary-dark); color:#fff; transform:none; } .team-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; } .team-modal.open { display: flex; } .team-modal-backdrop { position:absolute; inset:0; background: rgba(0,0,0,0.5); } .team-modal-panel { position:relative; width: min(880px, 95%); background: var(--white); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-2xl); z-index: 2; max-height: 90vh; overflow:auto; } .team-modal-close { position:absolute; top:8px; right:8px; background:transparent; border:none; font-size:1.6rem; cursor:pointer; } .team-modal .modal-avatar img { width:120px; height:120px; object-fit:cover; border-radius:50%; display:block; margin-bottom: var(--space-md); } .team-modal .modal-role { color: var(--primary); margin-bottom: var(--space-md); } .member-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; } .workflow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-xl); counter-reset: workflow-counter; } .workflow-step { background: var(--white); padding: var(--space-xl); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; border-top: 4px solid var(--primary); transition: transform var(--transition-base); } .workflow-step:hover { transform: translateY(-5px); } .step-number { position: absolute; top: -15px; left: 20px; background: var(--primary); color: var(--white); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; box-shadow: var(--shadow-md); } .step-icon { font-size: 2.5rem; margin-bottom: var(--space-md); text-align: center; } .step-content h3 { font-size: var(--text-xl); margin-bottom: var(--space-sm); color: var(--dark); text-align: center; } .step-content p { color: var(--gray-600); text-align: center; font-size: var(--text-base); } .section-header { text-align: center; margin-bottom: var(--space-3xl); } .section-header h2 { position: relative; display: inline-block; margin-bottom: var(--space-md); } .section-header h2::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gradient-primary); border-radius: var(--radius-full); } .section-header p { color: var(--gray-600); max-width: 600px; margin: var(--space-md) auto 0; line-height: 1.7; } .text-gradient { background: linear-gradient(135deg, #fff 0%, #94a3b8 50%, #fff 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textShine 4s linear infinite; } @keyframes textShine { 0% { background-position: 0% center; } 100% { background-position: 200% center; } } .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } .reveal.active { opacity: 1; transform: translateY(0); } .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .process-card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 2.5rem; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; --progress: 0turn; } .process-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 50%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; } .process-card::after { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: conic-gradient(from -90deg, var(--primary) var(--progress), rgba(255, 255, 255, 0.06) 0); pointer-events: none; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; } .process-card:hover, .process-card.is-highlighted { transform: translateY(-10px); background: rgba(30, 41, 59, 1); border-color: transparent; box-shadow: 0 0 40px rgba(59, 130, 246, 0.25), 0 0 80px rgba(59, 130, 246, 0.1); } .process-card.is-highlighted::before { opacity: 1; } .process-step { position: absolute; top: 1rem; right: 1.25rem; font-size: 4rem; font-weight: 900; color: rgba(59, 130, 246, 0.15); line-height: 1; transition: all 0.5s ease; } .process-card:hover .process-step, .process-card.is-highlighted .process-step { color: rgba(59, 130, 246, 0.4); text-shadow: 0 0 30px rgba(59, 130, 246, 0.5); } .process-icon { width: 48px; height: 48px; color: var(--primary); margin-bottom: 1.5rem; transition: all 0.5s ease; } .process-card:hover .process-icon, .process-card.is-highlighted .process-icon { color: var(--primary-light); filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5)); } .process-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.25rem; transition: color 0.3s ease; } .process-card:hover h3, .process-card.is-highlighted h3 { color: var(--primary-light); } .process-card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.6; } .hero-modern { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 100px; position: relative; overflow: hidden; } .hero-modern::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%), radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%); animation: heroGlow 15s ease-in-out infinite alternate; pointer-events: none; } @keyframes heroGlow { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-5%, -5%) rotate(3deg); } } .hero-modern h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; margin-bottom: 1.5rem; line-height: 1.1; } .hero-modern p { font-size: 1.25rem; color: var(--gray-400); max-width: 650px; margin: 0 auto 2.5rem; } .testimonial-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: var(--space-sm); } .portfolio-image { position: relative; } .portfolio-overlay { position: absolute; inset: 0; background: rgba(2, 6, 23, 0.72); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; opacity: 0; transition: opacity 300ms ease; backdrop-filter: blur(3px); text-decoration: none; } .portfolio-item:hover .portfolio-overlay { opacity: 1; } .portfolio-item.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition-base), box-shadow var(--transition-base); } .portfolio-item.fade-up.visible { opacity: 1; transform: translateY(0); } .stats-section { padding: var(--space-3xl) 0; background: var(--dark); border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); text-align: center; } .stat-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); padding: var(--space-md) 0; border-right: 1px solid rgba(255, 255, 255, 0.07); } .stat-item:last-child { border-right: none; } .stat-number-wrap { display: flex; align-items: baseline; gap: 3px; justify-content: center; } .stat-number { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1; font-variant-numeric: tabular-nums; } .stat-suffix { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--primary); } .stat-label { color: var(--gray-600); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; margin: 0; } @media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.07); padding-bottom: var(--space-lg); } .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; } } @media (min-width: 900px) { .process-grid { grid-template-columns: repeat(3, 1fr); position: relative; padding-top: 28px; } .process-card:not(:nth-child(3n)) .process-step::after { content: ''; position: absolute; top: 50%; left: 100%; width: var(--conn-w, 0px); height: 1px; background: linear-gradient(90deg, rgba(59, 130, 246, 0.55), rgba(59, 130, 246, 0.15)); transform: translateY(-50%); pointer-events: none; } } .process-card { overflow: visible; margin-top: 18px; } .process-step { position: absolute; top: -18px; left: 50%; right: auto; transform: translateX(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--gradient-primary); color: var(--white); font-size: 0.85rem; font-weight: 700; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 14px rgba(59, 130, 246, 0.35); text-shadow: none; z-index: 2; transition: box-shadow 0.4s ease, transform 0.4s ease; } .process-card:hover .process-step, .process-card.is-highlighted .process-step { color: var(--white); text-shadow: none; box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.25), 0 4px 20px rgba(59, 130, 246, 0.55); transform: translateX(-50%) scale(1.1); } #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; } .hero-modern #hero-canvas { pointer-events: auto; } .hero-modern .hero-content { position: relative; z-index: 1; pointer-events: none; } .hero-modern .hero-content a, .hero-modern .hero-content button { pointer-events: auto; } .hero-available { display: inline-flex; align-items: center; gap: 8px; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.25); color: rgba(134, 239, 172, 0.9); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; padding: 6px 14px; border-radius: 999px; margin-bottom: 1.5rem; backdrop-filter: blur(4px); animation: fadeSlideDown 0.6s ease both; } .hero-available-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); animation: pulseDot 2.2s ease-in-out infinite; } @keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } } .hero-modern h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: var(--white); margin-bottom: 1.4rem; animation: fadeSlideUp 0.7s 0.1s ease both; } .hero-accent { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 60%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; } .hero-modern > .container > p { animation: fadeSlideUp 0.7s 0.22s ease both; } .hero-modern .cta-buttons { animation: fadeSlideUp 0.7s 0.34s ease both; } @keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } .hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; opacity: 0; animation: fadeIn 0.6s 1.2s ease both; cursor: pointer; } .hero-scroll-line { width: 1.5px; height: 42px; background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent); border-radius: 2px; animation: scrollBounce 1.8s ease-in-out infinite; } @keyframes scrollBounce { 0%, 100% { transform: scaleY(1); opacity: 0.6; } 50% { transform: scaleY(0.6); opacity: 0.25; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @media (max-height: 650px), (max-width: 480px) { .hero-scroll-hint { display: none; } } .services-hero { align-items: stretch; } .services-side { align-items: stretch; } .service-item { flex: 1; display: flex; flex-direction: column; padding: var(--space-lg); border-radius: var(--radius-lg); border: 1px solid rgba(0, 0, 0, 0.06); background: #fff; transition: box-shadow var(--transition-base), transform var(--transition-base); } .service-item:hover { box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1); transform: translateY(-3px); } @media (max-width: 768px) { .contact-section { padding: var(--space-3xl) 0; } .contact-container { grid-template-columns: 1fr; gap: var(--space-xl); padding: 0 var(--container-padding); } .contact-info h3 { font-size: var(--text-2xl); } .contact-info p { font-size: var(--text-base); margin-bottom: var(--space-lg); } .contact-details { padding: var(--space-lg); } .contact-item { align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); } .contact-item > div { font-size: var(--text-sm); word-break: break-word; min-width: 0; } .contact-icon { width: 34px; height: 34px; flex-shrink: 0; } .contact-form-wrapper { padding: var(--space-lg); } .form-row { grid-template-columns: 1fr; gap: 0; } .form-title { font-size: var(--text-xl); } } .bg-light .portfolio-item { background: #fff; border-color: rgba(0, 0, 0, 0.08); } .bg-light .portfolio-title { color: var(--dark); } .bg-light .portfolio-description { color: #475569; } .bg-light .tech-tag { background: rgba(59, 130, 246, 0.1); color: var(--primary-dark); border-color: rgba(59, 130, 246, 0.2); }