:root {
--primary: #0f172a;
--primary-light: #1e293b;
--accent: #3b82f6;
--accent-glow: #60a5fa;
--accent-dark: #2563eb;
--bg: #f8fafc;
--surface: #ffffff;
--surface-glass: rgba(255, 255, 255, 0.7);
--text: #1e293b;
--text-muted: #64748b;
--border: rgba(255, 255, 255, 0.2);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
--shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
--radius: 12px;
--radius-lg: 20px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Outfit', sans-serif;
font-weight: 700;
line-height: 1.2;
color: var(--primary);
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.875rem 1.75rem;
font-family: 'Outfit', sans-serif;
font-weight: 600;
font-size: 1rem;
border-radius: var(--radius);
border: none;
cursor: pointer;
transition: var(--transition);
text-align: center;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
color: white;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-glow);
}
.btn-glow {
animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }
}
.btn-secondary {
background: var(--surface);
color: var(--primary);
border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
background: var(--bg);
border-color: var(--accent);
color: var(--accent);
}
.btn-outline {
background: transparent;
color: var(--accent);
border: 1px solid var(--accent);
}
.btn-outline:hover {
background: var(--accent);
color: white;
}
.btn-sm {
padding: 0.5rem 1rem;
font-size: 0.875rem;
}
.btn-block {
width: 100%;
}
.mouse-trail {
position: fixed;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
z-index: 9999;
transform: translate(-50%, -50%);
transition: transform 0.1s ease-out;
mix-blend-mode: screen;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1rem 0;
transition: var(--transition);
}
.navbar.scrolled {
background: var(--surface-glass);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0.75rem 0;
box-shadow: var(--shadow-sm);
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-family: 'Outfit', sans-serif;
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
}
.logo span {
color: var(--accent);
}
.nav-links {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-links a:not(.btn) {
font-weight: 500;
color: var(--text-muted);
font-size: 0.95rem;
}
.nav-links a:not(.btn):hover {
color: var(--accent);
}
.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}
.mobile-menu-btn span {
width: 25px;
height: 2px;
background: var(--primary);
transition: var(--transition);
}
.hero {
position: relative;
padding: 10rem 0 6rem;
overflow: hidden;
background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
}
.hero-bg-gradient {
position: absolute;
top: -20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
border-radius: 50%;
filter: blur(60px);
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero-container {
position: relative;
z-index: 1;
text-align: center;
max-width: 900px;
}
.hero-badge {
display: inline-block;
padding: 0.5rem 1rem;
background: rgba(59, 130, 246, 0.1);
color: var(--accent);
border-radius: 50px;
font-weight: 600;
font-size: 0.875rem;
margin-bottom: 1.5rem;
border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.hero-cta-group {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 4rem;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 3rem;
padding: 2rem;
background: var(--surface-glass);
backdrop-filter: blur(12px);
border-radius: var(--radius-lg);
border: 1px solid var(--border);
box-shadow: var(--shadow-lg);
}
.stat-item {
text-align: center;
}
.stat-number {
font-family: 'Outfit', sans-serif;
font-size: 2.5rem;
font-weight: 800;
color: var(--accent);
}
.stat-label {
display: block;
font-size: 0.875rem;
color: var(--text-muted);
margin-top: 0.25rem;
}
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
}
.mouse {
width: 26px;
height: 40px;
border: 2px solid var(--text-muted);
border-radius: 20px;
position: relative;
}
.mouse::before {
content: '';
position: absolute;
top: 6px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 8px;
background: var(--accent);
border-radius: 2px;
animation: scroll 1.5s infinite;
}
@keyframes scroll {
0% { opacity: 1; top: 6px; }
100% { opacity: 0; top: 20px; }
}
section {
padding: 6rem 0;
}
.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 4rem;
}
.section-header h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.section-header p {
color: var(--text-muted);
font-size: 1.125rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}
.service-card {
background: var(--surface);
padding: 2.5rem;
border-radius: var(--radius-lg);
border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--accent-glow));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.service-card p {
color: var(--text-muted);
margin-bottom: 1.5rem;
line-height: 1.7;
}
.statistics {
background: var(--primary);
color: white;
position: relative;
overflow: hidden;
}
.statistics::before {
content: '';
position: absolute;
top: -50%;
left: -20%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
border-radius: 50%;
filter: blur(80px);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.stat-card {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-lg);
transition: var(--transition);
}
.stat-card:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-5px);
}
.stat-card h3 {
font-size: 3rem;
color: var(--accent-glow);
margin-bottom: 0.5rem;
}
.stat-card p {
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
}
.timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.timeline::before {
content: '';
position: absolute;
left: 24px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--accent), transparent);
}
.timeline-item {
display: flex;
gap: 2rem;
margin-bottom: 3rem;
position: relative;
}
.timeline-number {
flex-shrink: 0;
width: 50px;
height: 50px;
background: var(--surface);
border: 2px solid var(--accent);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Outfit', sans-serif;
font-weight: 800;
color: var(--accent);
position: relative;
z-index: 1;
box-shadow: var(--shadow-md);
}
.timeline-content {
background: var(--surface);
padding: 2rem;
border-radius: var(--radius);
border: 1px solid var(--border);
box-shadow: var(--shadow-sm);
flex: 1;
transition: var(--transition);
}
.timeline-content:hover {
box-shadow: var(--shadow-lg);
transform: translateX(5px);
}
.timeline-content h3 {
margin-bottom: 0.75rem;
}
.timeline-content p {
color: var(--text-muted);
margin-bottom: 1rem;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.portfolio-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 4/3;
cursor: pointer;
box-shadow: var(--shadow-md);
}
.portfolio-placeholder {
width: 100%;
height: 100%;
transition: transform 0.5s ease;
}
.gradient-1 { background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%); }
.gradient-2 { background: linear-gradient(135deg, #0f172a 0%, #60a5fa 100%); }
.gradient-3 { background: linear-gradient(135deg, #334155 0%, #2563eb 100%); }
.portfolio-card:hover .portfolio-placeholder {
transform: scale(1.1);
}
.portfolio-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 2rem;
opacity: 0;
transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay {
opacity: 1;
}
.portfolio-overlay h4 {
color: white;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.portfolio-overlay p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1rem;
}
.seo-article {
max-width: 800px;
margin: 0 auto;
background: var(--surface);
padding: 3rem;
border-radius: var(--radius-lg);
border: 1px solid var(--border);
box-shadow: var(--shadow-lg);
}
.article-header {
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border);
}
.article-header h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.article-meta {
display: flex;
gap: 1.5rem;
color: var(--text-muted);
font-size: 0.875rem;
font-weight: 500;
}
.article-content h2 {
font-size: 1.75rem;
margin: 2.5rem 0 1rem;
color: var(--primary);
}
.article-content h3 {
font-size: 1.25rem;
margin: 2rem 0 1rem;
}
.article-content p {
margin-bottom: 1.5rem;
color: var(--text);
line-height: 1.8;
}
.article-content .lead {
font-size: 1.25rem;
color: var(--primary-light);
font-weight: 500;
line-height: 1.7;
}
.article-content a {
color: var(--accent);
font-weight: 600;
text-decoration: underline;
text-underline-offset: 3px;
}
.article-content a:hover {
color: var(--accent-dark);
}
.callout-box {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
border-left: 4px solid var(--accent);
padding: 1.5rem;
border-radius: 0 var(--radius) var(--radius) 0;
margin: 2rem 0;
}
.callout-box h4 {
color: var(--accent-dark);
margin-bottom: 0.5rem;
}
.callout-box p {
margin-bottom: 0;
color: var(--primary-light);
}
.checklist {
list-style: none;
margin: 1.5rem 0;
}
.checklist li {
position: relative;
padding-left: 2rem;
margin-bottom: 1rem;
color: var(--text);
line-height: 1.7;
}
.checklist li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
}
.comparison-table-wrapper {
overflow-x: auto;
margin: 2rem 0;
border-radius: var(--radius);
border: 1px solid var(--border);
}
.comparison-table {
width: 100%;
border-collapse: collapse;
background: var(--surface);
}
.comparison-table th,
.comparison-table td {
padding: 1rem 1.5rem;
text-align: left;
border-bottom: 1px solid var(--border);
}
.comparison-table th {
background: var(--primary);
color: white;
font-weight: 600;
}
.comparison-table tr:last-child td {
border-bottom: none;
}
.comparison-table tr:hover {
background: rgba(59, 130, 246, 0.05);
}
.article-cta-box {
background: linear-gradient(135deg, var(--primary), var(--primary-light));
padding: 3rem;
border-radius: var(--radius-lg);
text-align: center;
margin-top: 3rem;
color: white;
}
.article-cta-box h3 {
color: white;
font-size: 1.75rem;
margin-bottom: 1rem;
}
.article-cta-box p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
}
.faq-grid {
display: grid;
gap: 1rem;
max-width: 800px;
margin: 0 auto 3rem;
}
.faq-item {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: var(--transition);
}
.faq-item.active {
border-color: var(--accent);
box-shadow: var(--shadow-md);
}
.faq-question {
width: 100%;
padding: 1.5rem;
background: none;
border: none;
text-align: left;
font-family: 'Outfit', sans-serif;
font-size: 1.125rem;
font-weight: 600;
color: var(--primary);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-icon {
font-size: 1.5rem;
color: var(--accent);
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 300px;
padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
color: var(--text-muted);
line-height: 1.7;
}
.faq-cta {
text-align: center;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.testimonial-card {
padding: 2rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
transition: var(--transition);
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.testimonial-rating {
color: #fbbf24;
font-size: 1.25rem;
margin-bottom: 1rem;
letter-spacing: 2px;
}
.testimonial-text {
color: var(--text);
font-style: italic;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}
.author-initials {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-family: 'Outfit', sans-serif;
}
.author-info h4 {
font-size: 1rem;
margin-bottom: 0.25rem;
}
.author-info span {
font-size: 0.875rem;
color: var(--text-muted);
}
.testimonials-cta {
text-align: center;
}
.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}
.contact-info h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.contact-info > p {
color: var(--text-muted);
margin-bottom: 2rem;
font-size: 1.125rem;
}
.info-item {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
}
.info-icon {
font-size: 1.5rem;
flex-shrink: 0;
}
.info-item h4 {
font-size: 1rem;
margin-bottom: 0.25rem;
}
.info-item p, .info-item a {
color: var(--text-muted);
font-size: 0.95rem;
}
.info-item a:hover {
color: var(--accent);
}
.contact-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
.contact-form-wrapper {
padding: 2.5rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
}
.contact-form h3 {
margin-bottom: 1.5rem;
font-size: 1.5rem;
}
.form-group {
margin-bottom: 1.25rem;
}
.form-group label {
display: block;
font-weight: 500;
margin-bottom: 0.5rem;
color: var(--primary);
font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.875rem 1rem;
border: 1px solid var(--border);
border-radius: var(--radius);
font-family: 'Inter', sans-serif;
font-size: 1rem;
transition: var(--transition);
background: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-success {
text-align: center;
padding: 2rem;
}
.form-success h4 {
color: #10b981;
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.form-success p {
color: var(--text-muted);
margin-bottom: 1.5rem;
}
.hidden {
display: none;
}
.footer {
background: var(--primary);
color: white;
padding: 5rem 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 3rem;
margin-bottom: 4rem;
}
.footer-logo {
font-family: 'Outfit', sans-serif;
font-size: 1.5rem;
font-weight: 800;
color: white;
display: inline-block;
margin-bottom: 1rem;
}
.footer-logo span {
color: var(--accent-glow);
}
.footer-col p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.875rem;
transition: var(--transition);
}
.social-links a:hover {
background: var(--accent);
transform: translateY(-3px);
}
.footer-col h4 {
color: white;
font-size: 1.125rem;
margin-bottom: 1.5rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 0.75rem;
}
.footer-col ul li a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
}
.footer-col ul li a:hover {
color: var(--accent-glow);
padding-left: 5px;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
text-align: center;
color: rgba(255, 255, 255, 0.5);
font-size: 0.875rem;
}
.floating-cta {
position: fixed;
bottom: 2rem;
right: 2rem;
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
color: white;
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 700;
box-shadow: var(--shadow-glow);
z-index: 999;
transition: var(--transition);
animation: pulse-glow 2s infinite;
}
.floating-cta:hover {
transform: translateY(-3px) scale(1.05);
}
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 968px) {
.nav-links {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 400px;
height: 100vh;
background: var(--surface);
flex-direction: column;
padding: 6rem 2rem 2rem;
gap: 1.5rem;
box-shadow: -10px 0 30px rgba(0,0,0,0.1);
transition: right 0.3s ease;
}
.nav-links.active {
    right: 0;
}

.mobile-menu-btn {
    display: flex;
    z-index: 1001;
}

.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);
}

.hero-stats {
    flex-direction: column;
    gap: 1.5rem;
}

.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-grid {
    grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.hero-title {
font-size: 2.25rem;
}
.hero-cta-group {
    flex-direction: column;
}

.btn {
    width: 100%;
}

.timeline::before {
    left: 15px;
}

.timeline-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
}

.seo-article {
    padding: 1.5rem;
}

.article-header h1 {
    font-size: 1.75rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 1rem;
}
.footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
}
}