:root {
--bg-dark: #020408;
--accent-blue-start: #3b82f6; 
--accent-blue-end: #1d4ed8;   
--accent-text-highlight: #3b82f6; 
--accent-glow: rgba(37, 99, 235, 0.5);
--text-white: #ffffff;
--text-muted: #9ca3af;
--header-height: 70px;
--max-width: 1200px;
--wide-width: 1300px; 
--gradient-primary: linear-gradient(90deg, var(--accent-blue-start) 0%, var(--accent-blue-end) 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-dark);
color: var(--text-white);
line-height: 1.5;
overflow-x: hidden;
min-height: 100vh;
}
a {
color: #9ca3af;
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: #ffffff;
} .bg-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: radial-gradient(circle at 50% -20%, #05070a 0%, var(--bg-dark) 80%);
}
.glow-sphere {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.25;
z-index: -1;
}
.sphere-1 { width: 500px; height: 500px; background: var(--accent-blue-end); top: -100px; right: -100px; }
.sphere-2 { width: 400px; height: 400px; background: #1e40af; bottom: -50px; left: -100px; } header {
height: var(--header-height);
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 2000; background: rgba(2, 4, 8, 0.85);
backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-container {
width: 100%;
max-width: var(--max-width);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
.logo {
font-size: 21px;
font-weight: 800;
letter-spacing: -0.8px;
text-decoration: none;
color: var(--text-white);
transition: opacity 0.3s;
position: relative;
z-index: 2100;
}
.logo:hover { opacity: 0.8; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.3s ease; }
nav ul li a:hover { color: var(--text-white); }
.cta-btn-header {
background: var(--gradient-primary);
color: white;
padding: 8px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 13px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.cta-btn-header:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5); } .mobile-toggle {
display: none;
background: transparent;
border: none;
cursor: pointer;
padding: 5px;
z-index: 2100; position: relative;
width: 30px;
height: 24px;
}
.mobile-toggle span {
display: block;
width: 100%;
height: 2px;
background-color: var(--text-white);
margin-bottom: 6px;
transition: 0.3s ease-in-out;
border-radius: 2px;
}
.mobile-toggle span:last-child { margin-bottom: 0; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .mobile-nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(2, 4, 8, 0.98);
backdrop-filter: blur(20px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 1500; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
transform: translateX(100%);
opacity: 0;
pointer-events: none;
}
.mobile-nav.active {
transform: translateX(0);
opacity: 1;
pointer-events: all;
}
.mobile-nav ul {
list-style: none;
text-align: center;
display: flex;
flex-direction: column;
gap: 30px;
}
.mobile-nav ul li a {
text-decoration: none;
color: var(--text-white);
font-size: 28px;
font-weight: 700;
letter-spacing: -1px;
transition: color 0.3s;
}
.mobile-nav ul li a:hover {
color: var(--accent-blue-start);
}
.mobile-nav .mobile-cta {
margin-top: 40px;
font-size: 16px;
padding: 15px 40px;
} .badge {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
color: var(--text-muted);
padding: 8px 18px;
border-radius: 100px;
font-size: 12px;
font-weight: 500;
margin-bottom: 40px; 
display: inline-flex;
width: fit-content;
align-items: center;
gap: 10px;
}
.badge::before {
content: '';
width: 5px;
height: 5px;
background-color: var(--accent-blue-end);
border-radius: 50%;
box-shadow: 0 0 10px var(--accent-blue-end);
} .hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 120px 20px 80px;
position: relative;
}
.hero-title {
font-size: clamp(64px, 16vw, 130px);
font-weight: 800;
margin-bottom: 30px; 
letter-spacing: -4.5px;
perspective: 1000px;
line-height: 0.9;
}
.hero-title span {
display: inline;
}
h2.hero-subtitle {
font-size: clamp(28px, 6vw, 46px);
font-weight: 800;
margin-bottom: 25px;
color: var(--text-white);
letter-spacing: -1.2px;
line-height: 1.1;
}
.hero-subtitle .highlight {
color: var(--accent-text-highlight);
}
.hero-desc { 
max-width: 720px; 
font-size: 16px; 
color: var(--text-muted); 
margin-bottom: 45px;
line-height: 1.7; 
opacity: 0.85;
}
.hero-actions { display: flex; gap: 15px; margin-bottom: 60px; }
.btn-primary {
background: var(--gradient-primary);
color: white;
padding: 15px 34px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 15px;
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
transition: all 0.3s ease;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5); }
.btn-secondary { 
background: transparent; 
border: 1px solid rgba(255, 255, 255, 0.12); 
color: white; 
padding: 15px 34px;
border-radius: 50px; 
text-decoration: none; 
font-weight: 700; 
font-size: 15px;
transition: all 0.3s ease; 
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.3); } section { padding: 120px 5%; max-width: var(--max-width); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; }
.section-header h2 { font-size: 44px; font-weight: 800; margin-bottom: 15px; letter-spacing: -1.2px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 640px; margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 55px;
border-radius: 24px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
}
.service-card:hover { 
background: rgba(255, 255, 255, 0.04); 
border-color: var(--accent-blue-start); 
transform: translateY(-8px);
box-shadow: 0 20px 60px -20px var(--accent-glow);
}
.service-icon { font-size: 34px; color: var(--accent-blue-start); margin-bottom: 25px; display: block; }
.service-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; } .portfolio {
max-width: var(--wide-width); 
}
.portfolio-list { 
display: flex; 
flex-direction: column; 
gap: 80px; 
}
.portfolio-card {
display: flex;
background: rgba(255, 255, 255, 0.012);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 24px;
overflow: hidden;
transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
height: 400px;
}
.portfolio-card:nth-child(even) {
flex-direction: row-reverse;
}
.portfolio-card:hover {
background: rgba(255, 255, 255, 0.025);
border-color: var(--accent-blue-start);
transform: translateY(-5px);
box-shadow: 0 40px 100px -30px var(--accent-glow);
}
.portfolio-image-side {
flex: 1.1; 
position: relative;
overflow: hidden;
background: #0a0c12;
}
.portfolio-image-side img, .portfolio-image-side .mockup-placeholder {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}
.portfolio-card:hover .portfolio-image-side img,
.portfolio-card:hover .portfolio-image-side .mockup-placeholder {
transform: scale(1.08);
}
.portfolio-info-side {
flex: 1;
padding: 40px 60px; 
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px;
}
.portfolio-cat-badge {
display: inline-block;
padding: 4px 12px;
background: rgba(37, 99, 235, 0.1);
color: var(--accent-blue-start);
border-radius: 50px;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
width: fit-content;
}
.portfolio-info-side h3 { 
font-size: 34px; 
font-weight: 800; 
letter-spacing: -1.2px; 
line-height: 1.1;
}
.project-subtitle { 
font-size: 18px; 
font-weight: 600; 
color: var(--text-white); 
opacity: 0.9;
}
.portfolio-info-side p.desc { 
color: var(--text-muted); 
font-size: 15px; 
line-height: 1.7; 
max-width: 440px; 
}
.project-links { 
display: flex; 
align-items: center; 
gap: 20px; 
margin-top: 10px; 
}
.btn-visit {
background: rgba(255,255,255,0.04);
color: white;
padding: 10px 24px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 13px;
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.08);
}
.btn-visit:hover { 
background: rgba(255,255,255,0.1); 
transform: translateX(5px);
border-color: white;
}
.mockup-placeholder {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
} .about { padding: 120px 5%; max-width: var(--wide-width); }
.about-layout {
display: flex;
gap: 80px;
align-items: center;
}
.about-story {
flex: 1;
}
.about-story h3 {
font-size: 44px;
font-weight: 800;
margin-bottom: 25px;
letter-spacing: -1.5px;
line-height: 1.1;
}
.about-story p {
color: var(--text-muted);
font-size: 17px;
line-height: 1.8;
margin-bottom: 20px;
}
.about-highlights {
flex: 1;
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.highlight-card {
background: rgba(255, 255, 255, 0.015);
border: 1px solid rgba(255, 255, 255, 0.04);
padding: 30px;
border-radius: 24px;
transition: all 0.4s ease;
display: flex;
align-items: center;
gap: 25px;
position: relative;
overflow: hidden;
}
.highlight-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--gradient-primary);
opacity: 0.3;
}
.highlight-card:hover {
background: rgba(255, 255, 255, 0.03);
border-color: var(--accent-blue-start);
transform: translateX(10px);
box-shadow: 0 10px 40px -15px var(--accent-glow);
}
.highlight-icon {
width: 54px;
height: 54px;
background: rgba(59, 130, 246, 0.08);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-blue-start);
flex-shrink: 0;
font-size: 22px;
}
.highlight-info h4 {
font-size: 19px;
font-weight: 700;
margin-bottom: 4px;
color: var(--text-white);
}
.highlight-info p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.4;
}
.highlight-info .price-tag {
color: var(--accent-blue-start);
font-weight: 800;
} .testimonials { padding: 120px 5%; max-width: 1200px; }
.testimonials-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.012);
border: 1px solid rgba(255, 255, 255, 0.03);
padding: 45px; 
border-radius: 28px; 
position: relative;
overflow: hidden;
transition: all 0.5s ease;
display: flex;
flex-direction: column;
gap: 20px;
}
.testimonial-card:hover {
background: rgba(255, 255, 255, 0.02);
border-color: var(--accent-blue-start);
transform: translateY(-5px);
box-shadow: 0 20px 60px -15px var(--accent-glow);
}
.quote-icon {
font-size: 44px; 
line-height: 1;
color: var(--accent-blue-start);
opacity: 0.15;
font-family: serif;
position: absolute;
top: 35px;
right: 35px;
}
.testimonial-content p {
font-size: 17px; 
font-weight: 500;
color: var(--text-white);
line-height: 1.6;
font-style: italic;
position: relative;
z-index: 1;
opacity: 0.95;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
margin-top: auto;
}
.author-avatar {
width: 48px; 
height: 48px;
background: var(--gradient-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 16px;
color: white;
}
.author-info h4 { font-size: 16px; font-weight: 700; color: var(--text-white); }
.author-info span { font-size: 13px; color: var(--text-muted); }
.star-rating {
display: flex;
gap: 3px;
color: var(--accent-blue-start);
margin-bottom: 5px;
font-size: 12px;
} .contact { padding-bottom: 0; }
.contact-layout {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
background: rgba(255, 255, 255, 0.015);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 28px;
padding: 70px;
}
.contact-form-side h3 {
font-size: 32px;
font-weight: 800;
margin-bottom: 10px;
}
.contact-form-side p {
color: var(--text-muted);
margin-bottom: 35px;
}
.contact-form .input-group {
margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
background: #020408;
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text-white);
padding: 16px 20px;
border-radius: 12px;
font-size: 15px;
font-family: inherit;
transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--accent-blue-start);
box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form textarea {
min-height: 140px;
resize: vertical;
}
.contact-form .btn-primary {
width: 100%;
padding-top: 18px;
padding-bottom: 18px;
font-size: 16px;
border: none;
cursor: pointer;
}
.contact-details-side {
display: flex;
justify-content: center;
align-items: center;
}
.contact-details-side ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 30px;
}
.contact-details-side li {
display: flex;
align-items: flex-start;
gap: 20px;
}
.contact-details-side .icon {
width: 42px;
height: 42px;
background: rgba(59, 130, 246, 0.08);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-blue-start);
font-size: 18px;
flex-shrink: 0;
}
.contact-details-side strong {
display: block;
color: var(--text-white);
font-weight: 600;
margin-bottom: 3px;
}
.contact-details-side span {
color: var(--text-muted);
font-size: 15px;
} footer {
text-align: center;
padding: 60px 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 120px;
}
footer p {
color: var(--text-muted);
font-size: 13px;
}
footer .footer-logo {
font-weight: 800;
color: var(--text-white);
}
footer a {
color: #ffffff;
text-decoration: none;
}
footer a:hover {
color: #ffffff;
} .wpforms-field {
margin-bottom: 20px !important;
padding: 0 !important;
}
.wpforms-field label {
display: block !important;
color: #9ca3af !important;
font-size: 13px !important;
font-family: 'Inter', sans-serif !important;
font-weight: 500 !important;
margin-bottom: 8px !important;
background: none !important;
}
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea {
display: block !important;
width: 100% !important;
background: #020408 !important;
border: 1px solid rgba(255,255,255,0.1) !important;
color: #ffffff !important;
padding: 16px 20px !important;
border-radius: 12px !important;
font-size: 15px !important;
font-family: 'Inter', sans-serif !important;
box-shadow: none !important;
transition: all 0.3s ease !important;
margin: 0 !important;
}
.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field textarea:focus {
border-color: #3b82f6 !important;
box-shadow: 0 0 0 3px rgba(37,99,235,0.5) !important;
outline: none !important;
}
.wpforms-field textarea {
min-height: 140px !important;
resize: vertical !important;
}
.wpforms-submit-container {
margin-top: 10px !important;
padding: 0 !important;
}
.wpforms-submit-container button.wpforms-submit {
display: block !important;
width: 100% !important;
background: linear-gradient(90deg, #3b82f6, #1d4ed8) !important;
border: none !important;
border-radius: 50px !important;
padding: 16px 34px !important;
font-size: 15px !important;
font-weight: 700 !important;
color: #ffffff !important;
font-family: 'Inter', sans-serif !important;
cursor: pointer !important;
box-shadow: 0 10px 25px rgba(37,99,235,0.3) !important;
transition: all 0.3s ease !important;
letter-spacing: -0.2px !important;
}
.wpforms-submit-container button.wpforms-submit:hover {
transform: scale(1.02) !important;
box-shadow: 0 15px 35px rgba(37,99,235,0.5) !important;
}
.wpforms-required-label {
color: #3b82f6 !important;
} @media (max-width: 992px) {
nav { display: none; }
.cta-btn-header { display: none; } 
.mobile-toggle { display: block; } 
.header-container { padding: 0 15px; }
.hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
.services-grid { grid-template-columns: 1fr; }
.portfolio-card, .portfolio-card:nth-child(even) { 
flex-direction: column; 
height: auto;
min-height: auto;
}
.portfolio-image-side { aspect-ratio: auto; height: 220px; }
.portfolio-info-side { padding: 40px 25px; text-align: center; align-items: center; }
.project-links {
width: 100%;
justify-content: center;
flex-wrap: wrap;
}
.btn-visit {
width: 100%;
max-width: 320px;
text-align: center;
box-sizing: border-box;
}
.about-layout { flex-direction: column; gap: 50px; }
.about-story { text-align: center; }
.highlight-card { padding: 25px; }
.testimonials-grid { grid-template-columns: 1fr; }
.testimonial-card { padding: 35px; }
.contact-layout {
grid-template-columns: 1fr;
padding: 40px 25px;
}
.section-header h2 { font-size: 34px; }
section { padding: 80px 15px; }
.hero-title { font-size: 72px; }
}