1099 lines
27 KiB
CSS
1099 lines
27 KiB
CSS
/* ============================================
|
|
VODA LANDING — Premium B2B Engineering
|
|
Colors: #0E1A2B / #1B2A3D / #1E6BFF
|
|
Fonts: Manrope (headings) + Inter (body)
|
|
============================================ */
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg-dark: #0E1A2B;
|
|
--bg-dark2: #1B2A3D;
|
|
--bg-light: #F3F6F9;
|
|
--accent: #1E6BFF;
|
|
--accent-hover: #1558D4;
|
|
--accent-glow: rgba(30,107,255,.15);
|
|
--text: #E5E7EB;
|
|
--text2: #9CA3AF;
|
|
--text-dark: #1E293B;
|
|
--text-dark2: #64748B;
|
|
--border-dark: rgba(255,255,255,.06);
|
|
--border-light: rgba(0,0,0,.06);
|
|
--radius: 12px;
|
|
--radius-lg: 20px;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
font-size: 17px;
|
|
line-height: 1.55;
|
|
color: var(--text);
|
|
background: var(--bg-dark);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1, h2, h3, h4 { font-family: 'Manrope', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; }
|
|
|
|
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
|
|
|
/* ====== TOP BAR ====== */
|
|
.top-bar {
|
|
background: rgba(14,26,43,.6);
|
|
border-bottom: 1px solid var(--border-dark);
|
|
font-size: 13px;
|
|
color: var(--text2);
|
|
padding: 8px 0;
|
|
transition: transform .3s, opacity .3s;
|
|
}
|
|
.top-bar.hidden { transform: translateY(-100%); opacity: 0; position: absolute; }
|
|
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
|
|
.top-bar-left { display: flex; align-items: center; gap: 12px; }
|
|
.top-bar-divider { opacity: .3; }
|
|
.top-bar-right a { color: var(--text2); text-decoration: none; }
|
|
.top-bar-right a:hover { color: #fff; }
|
|
|
|
/* ====== NAV ====== */
|
|
#nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: rgba(14,26,43,.85);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border-dark);
|
|
transition: box-shadow .3s;
|
|
}
|
|
#nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.3); }
|
|
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 72px; }
|
|
|
|
/* Logo */
|
|
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
|
|
.logo-icon {
|
|
width: 42px; height: 42px;
|
|
background: var(--accent);
|
|
border-radius: 10px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.logo-text { display: flex; flex-direction: column; }
|
|
.logo-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: #fff; letter-spacing: -.3px; }
|
|
.logo-desc { font-size: 11px; color: var(--text2); letter-spacing: .5px; text-transform: uppercase; }
|
|
|
|
/* Nav links */
|
|
.nav-links { display: flex; gap: 32px; }
|
|
.nav-links a {
|
|
color: var(--text2);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
letter-spacing: .2px;
|
|
transition: color .2s;
|
|
}
|
|
.nav-links a:hover { color: #fff; }
|
|
|
|
/* Nav right */
|
|
.nav-phone { display: flex; align-items: center; gap: 16px; }
|
|
.phone-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
|
|
.phone-icon {
|
|
width: 36px; height: 36px;
|
|
border-radius: 8px;
|
|
background: var(--accent-glow);
|
|
display: flex; align-items: center; justify-content: center;
|
|
color: var(--accent);
|
|
}
|
|
.phone-info { display: flex; flex-direction: column; }
|
|
.phone-number { font-size: 15px; font-weight: 600; color: #fff; }
|
|
.phone-label { font-size: 11px; color: var(--text2); }
|
|
|
|
/* CTA Button */
|
|
.btn-primary {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition: background .2s, transform .15s;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
|
|
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
|
|
.btn-full { width: 100%; justify-content: center; }
|
|
.btn-nav { padding: 10px 20px; font-size: 13px; }
|
|
.btn-secondary {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
background: rgba(255,255,255,.06);
|
|
border: 1px solid rgba(255,255,255,.12);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition: all .2s;
|
|
}
|
|
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
|
|
.btn-icon-phone { display: flex; }
|
|
|
|
/* Burger */
|
|
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
|
|
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; border-radius: 2px; }
|
|
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
|
|
.burger.active span:nth-child(2) { opacity: 0; }
|
|
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
|
|
|
|
/* ====== HERO ====== */
|
|
.hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 100px 0 80px;
|
|
min-height: 90vh;
|
|
display: flex;
|
|
align-items: center;
|
|
background: var(--bg-dark);
|
|
}
|
|
.hero-bg {
|
|
position: absolute; inset: 0; z-index: 0;
|
|
background: url('images/hero-bg.png') center center / cover no-repeat;
|
|
}
|
|
.hero-bg::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(135deg, rgba(14,26,43,.88) 0%, rgba(14,26,43,.65) 50%, rgba(14,26,43,.8) 100%);
|
|
}
|
|
.hero-grid-pattern {
|
|
position: absolute; inset: 0;
|
|
background-image:
|
|
linear-gradient(rgba(30,107,255,.03) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(30,107,255,.03) 1px, transparent 1px);
|
|
background-size: 60px 60px;
|
|
}
|
|
.hero-glow {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
filter: blur(100px);
|
|
opacity: .3;
|
|
}
|
|
.hero-glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: var(--accent); opacity: .08; }
|
|
.hero-glow-2 { width: 400px; height: 400px; bottom: -100px; left: -50px; background: #06b6d4; opacity: .06; }
|
|
.hero-lines { display: none; }
|
|
|
|
.hero-container { position: relative; z-index: 1; }
|
|
|
|
.hero-content { max-width: 720px; }
|
|
|
|
/* Badge */
|
|
.badge {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
background: var(--accent-glow);
|
|
border: 1px solid rgba(30,107,255,.2);
|
|
color: var(--accent);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 8px 18px;
|
|
border-radius: 100px;
|
|
margin-bottom: 32px;
|
|
letter-spacing: .3px;
|
|
}
|
|
.pulse {
|
|
width: 8px; height: 8px;
|
|
background: var(--accent);
|
|
border-radius: 50%;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(30,107,255,.4); }
|
|
50% { opacity: .8; box-shadow: 0 0 0 8px rgba(30,107,255,0); }
|
|
}
|
|
|
|
/* Hero heading */
|
|
.hero h1 {
|
|
font-size: 56px;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin-bottom: 28px;
|
|
letter-spacing: -1.5px;
|
|
color: #fff;
|
|
}
|
|
.gradient-text {
|
|
background: linear-gradient(135deg, var(--accent), #38bdf8);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.lead {
|
|
font-size: 19px;
|
|
line-height: 1.6;
|
|
color: var(--text2);
|
|
margin-bottom: 40px;
|
|
max-width: 560px;
|
|
}
|
|
|
|
/* Hero buttons */
|
|
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
|
|
|
|
/* Trust items */
|
|
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
|
|
.trust-item {
|
|
display: flex; align-items: center; gap: 8px;
|
|
color: var(--text2);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Stats panel */
|
|
.hero-stats-panel {
|
|
margin-top: 72px;
|
|
}
|
|
.stats-card {
|
|
display: flex;
|
|
background: var(--bg-dark2);
|
|
border: 1px solid var(--border-dark);
|
|
border-radius: var(--radius-lg);
|
|
padding: 40px 48px;
|
|
gap: 0;
|
|
justify-content: space-between;
|
|
}
|
|
.stat-item-new { flex: 1; text-align: center; }
|
|
.stat-number-new {
|
|
font-family: 'Manrope', sans-serif;
|
|
font-size: 44px;
|
|
font-weight: 800;
|
|
color: var(--accent);
|
|
letter-spacing: -1px;
|
|
line-height: 1;
|
|
margin-bottom: 8px;
|
|
}
|
|
.stat-label-new {
|
|
font-size: 14px;
|
|
color: var(--text2);
|
|
font-weight: 500;
|
|
}
|
|
.stat-divider {
|
|
width: 1px;
|
|
background: var(--border-dark);
|
|
margin: 0 24px;
|
|
}
|
|
|
|
/* ====== SECTION SHARED ====== */
|
|
.section-header { text-align: center; margin-bottom: 64px; }
|
|
.section-badge {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 2px;
|
|
color: var(--accent);
|
|
text-transform: uppercase;
|
|
margin-bottom: 16px;
|
|
}
|
|
.section-header h2 {
|
|
font-size: 40px;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.section-subtitle {
|
|
font-size: 18px;
|
|
color: var(--text2);
|
|
max-width: 560px;
|
|
margin: 0 auto;
|
|
line-height: 1.6;
|
|
}
|
|
/* For light sections */
|
|
.light-section { background: var(--bg-light); color: var(--text-dark); }
|
|
.light-section .section-subtitle { color: var(--text-dark2); }
|
|
.light-section .gradient-text {
|
|
background: linear-gradient(135deg, var(--accent), #0EA5E9);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
/* ====== SERVICES ====== */
|
|
.services { padding: 100px 0; background: var(--bg-light); }
|
|
.services .section-header h2 { color: var(--text-dark); }
|
|
.services .section-subtitle { color: var(--text-dark2); }
|
|
|
|
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
|
|
|
|
.service-card {
|
|
background: #fff;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: var(--radius-lg);
|
|
padding: 36px;
|
|
transition: transform .25s, box-shadow .25s;
|
|
}
|
|
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.06); }
|
|
|
|
.service-icon {
|
|
width: 52px; height: 52px;
|
|
background: var(--accent);
|
|
border-radius: 12px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.service-card h3 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: var(--text-dark);
|
|
margin-bottom: 12px;
|
|
}
|
|
.service-card p {
|
|
font-size: 15px;
|
|
line-height: 1.6;
|
|
color: var(--text-dark2);
|
|
margin-bottom: 16px;
|
|
}
|
|
.service-link {
|
|
color: var(--accent);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: gap .2s;
|
|
display: inline-flex; align-items: center; gap: 4px;
|
|
}
|
|
.service-link:hover { gap: 8px; }
|
|
|
|
/* ====== BENEFITS ====== */
|
|
.benefits { padding: 100px 0; background: var(--bg-dark); }
|
|
|
|
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
|
|
|
|
.benefit-card {
|
|
display: flex; align-items: flex-start; gap: 16px;
|
|
background: var(--bg-dark2);
|
|
border: 1px solid var(--border-dark);
|
|
border-radius: var(--radius);
|
|
padding: 28px;
|
|
transition: transform .25s, border-color .25s;
|
|
}
|
|
.benefit-card:hover { transform: translateY(-2px); border-color: rgba(30,107,255,.2); }
|
|
|
|
.benefit-icon {
|
|
width: 48px; height: 48px;
|
|
min-width: 48px;
|
|
background: var(--accent-glow);
|
|
border-radius: 10px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.benefit-text h3 {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 6px;
|
|
}
|
|
.benefit-text p {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: var(--text2);
|
|
}
|
|
|
|
/* ====== WORK PROCESS ====== */
|
|
.process { padding: 100px 0; background: var(--bg-light); }
|
|
.process .section-header h2 { color: var(--text-dark); }
|
|
.process .section-subtitle { color: var(--text-dark2); }
|
|
|
|
.process-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 20px;
|
|
position: relative;
|
|
}
|
|
.process-grid::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 36px;
|
|
left: 10%;
|
|
right: 10%;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--accent), #38bdf8);
|
|
opacity: .2;
|
|
z-index: 0;
|
|
}
|
|
.process-step {
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.process-num {
|
|
width: 72px; height: 72px;
|
|
background: #fff;
|
|
border: 2px solid rgba(30,107,255,.15);
|
|
border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin: 0 auto 20px;
|
|
font-family: 'Manrope', sans-serif;
|
|
font-size: 28px;
|
|
font-weight: 800;
|
|
color: var(--accent);
|
|
box-shadow: 0 4px 20px rgba(30,107,255,.08);
|
|
}
|
|
.process-step h3 {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: var(--text-dark);
|
|
margin-bottom: 8px;
|
|
}
|
|
.process-step p {
|
|
font-size: 14px;
|
|
color: var(--text-dark2);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* ====== PROJECTS ====== */
|
|
.projects { padding: 100px 0; background: var(--bg-dark); }
|
|
|
|
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
|
|
|
|
.project-card {
|
|
background: var(--bg-dark2);
|
|
border: 1px solid var(--border-dark);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
transition: transform .25s, box-shadow .25s;
|
|
}
|
|
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
|
|
|
|
.project-img {
|
|
height: 200px;
|
|
background: linear-gradient(135deg, var(--bg-dark2), #1a2d45);
|
|
display: flex; align-items: center; justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.project-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
.project-overlay { position: absolute; top: 16px; left: 16px; z-index: 2; }
|
|
.project-tag {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
background: var(--accent);
|
|
padding: 5px 14px;
|
|
border-radius: 100px;
|
|
}
|
|
.project-icon-bg {
|
|
position: absolute;
|
|
display: flex; align-items: center; justify-content: center;
|
|
opacity: .5;
|
|
}
|
|
|
|
.project-info { padding: 24px; }
|
|
.project-info h3 {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 6px;
|
|
}
|
|
.project-address {
|
|
font-size: 14px;
|
|
color: var(--text2);
|
|
margin-bottom: 16px;
|
|
}
|
|
.project-stats {
|
|
display: flex;
|
|
gap: 16px;
|
|
font-size: 13px;
|
|
color: var(--text2);
|
|
}
|
|
.project-stats span { display: flex; align-items: center; gap: 4px; }
|
|
|
|
/* ====== CTA ====== */
|
|
.cta {
|
|
padding: 100px 0;
|
|
background: var(--bg-light);
|
|
}
|
|
.cta-box {
|
|
background: #fff;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: var(--radius-lg);
|
|
padding: 64px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 64px;
|
|
align-items: center;
|
|
box-shadow: 0 20px 80px rgba(0,0,0,.04);
|
|
}
|
|
.cta-left h2 {
|
|
font-size: 36px;
|
|
font-weight: 800;
|
|
color: var(--text-dark);
|
|
letter-spacing: -1px;
|
|
margin-bottom: 16px;
|
|
line-height: 1.15;
|
|
}
|
|
.cta-left .gradient-text {
|
|
background: linear-gradient(135deg, var(--accent), #0EA5E9);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.cta-left p {
|
|
font-size: 16px;
|
|
color: var(--text-dark2);
|
|
line-height: 1.6;
|
|
margin-bottom: 28px;
|
|
}
|
|
.cta-features { display: flex; flex-direction: column; gap: 12px; }
|
|
.cta-feature {
|
|
display: flex; align-items: center; gap: 10px;
|
|
font-size: 15px;
|
|
color: var(--text-dark);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Form */
|
|
.contact-form { display: flex; flex-direction: column; gap: 14px; }
|
|
.contact-form input,
|
|
.contact-form textarea {
|
|
background: var(--bg-light);
|
|
border: 1px solid rgba(0,0,0,.08);
|
|
border-radius: 10px;
|
|
padding: 16px 20px;
|
|
font-size: 15px;
|
|
font-family: 'Inter', sans-serif;
|
|
color: var(--text-dark);
|
|
outline: none;
|
|
transition: border-color .2s;
|
|
}
|
|
.contact-form input:focus,
|
|
.contact-form textarea:focus { border-color: var(--accent); }
|
|
.contact-form input::placeholder,
|
|
.contact-form textarea::placeholder { color: #94a3b8; }
|
|
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
|
|
.form-disclaimer {
|
|
font-size: 12px;
|
|
color: #94a3b8;
|
|
text-align: center;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* ====== BOTTOM CTA ====== */
|
|
.bottom-cta {
|
|
padding: 80px 0;
|
|
background: var(--bg-dark2);
|
|
text-align: center;
|
|
}
|
|
.bottom-cta h2 {
|
|
font-size: 36px;
|
|
font-weight: 800;
|
|
color: #fff;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.bottom-cta p {
|
|
font-size: 17px;
|
|
color: var(--text2);
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
/* ====== FOOTER ====== */
|
|
footer {
|
|
background: var(--bg-dark);
|
|
border-top: 1px solid var(--border-dark);
|
|
padding: 60px 0 32px;
|
|
}
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 1.2fr 1fr 1fr;
|
|
gap: 48px;
|
|
margin-bottom: 48px;
|
|
}
|
|
footer h4 {
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 16px;
|
|
letter-spacing: .5px;
|
|
text-transform: uppercase;
|
|
}
|
|
footer p {
|
|
font-size: 14px;
|
|
color: var(--text2);
|
|
margin-bottom: 10px;
|
|
line-height: 1.6;
|
|
}
|
|
footer a { color: var(--text2); text-decoration: none; transition: color .2s; }
|
|
footer a:hover { color: #fff; }
|
|
.footer-bottom {
|
|
border-top: 1px solid var(--border-dark);
|
|
padding-top: 24px;
|
|
font-size: 13px;
|
|
color: var(--text2);
|
|
text-align: center;
|
|
}
|
|
|
|
/* ====== ANIMATIONS ====== */
|
|
.animate-on-scroll {
|
|
opacity: 0;
|
|
transform: translateY(24px);
|
|
transition: opacity .5s ease, transform .5s ease;
|
|
}
|
|
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
|
|
|
|
/* Staggered delays for cards */
|
|
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
|
|
.animate-on-scroll:nth-child(2) { transition-delay: .08s; }
|
|
.animate-on-scroll:nth-child(3) { transition-delay: .16s; }
|
|
.animate-on-scroll:nth-child(4) { transition-delay: .24s; }
|
|
.animate-on-scroll:nth-child(5) { transition-delay: .32s; }
|
|
.animate-on-scroll:nth-child(6) { transition-delay: .4s; }
|
|
|
|
/* ====== SCROLLBAR HIDE for carousels ====== */
|
|
.services-grid::-webkit-scrollbar,
|
|
.benefits-grid::-webkit-scrollbar,
|
|
.projects-grid::-webkit-scrollbar { display: none; }
|
|
.services-grid, .benefits-grid, .projects-grid {
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
/* ====== MOBILE MENU (fullscreen) ====== */
|
|
.mobile-menu {
|
|
position: fixed;
|
|
top: 64px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1000;
|
|
background: var(--bg-dark);
|
|
display: flex;
|
|
flex-direction: column;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transform: translateY(-10px);
|
|
transition: opacity .3s, transform .3s, visibility .3s;
|
|
}
|
|
.mobile-menu.open {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transform: translateY(0);
|
|
}
|
|
.mobile-menu-inner {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 8px 24px 24px;
|
|
overflow-y: auto;
|
|
}
|
|
.mobile-link {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 18px 0;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
font-family: 'Manrope', sans-serif;
|
|
border-bottom: 1px solid var(--border-dark);
|
|
transition: color .2s;
|
|
}
|
|
.mobile-link svg { color: var(--text2); }
|
|
.mobile-link:active { color: var(--accent); }
|
|
.mobile-menu-bottom {
|
|
margin-top: auto;
|
|
padding-top: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
.mobile-phone-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
padding: 16px;
|
|
background: var(--bg-dark2);
|
|
border: 1px solid var(--border-dark);
|
|
border-radius: 12px;
|
|
color: #fff;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
body.menu-open { overflow: hidden; }
|
|
|
|
/* ====== FLOATING MOBILE CTA ====== */
|
|
.mobile-float-cta {
|
|
display: none;
|
|
}
|
|
.btn-float {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
padding: 14px 28px;
|
|
border-radius: 100px;
|
|
border: none;
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 32px rgba(30,107,255,.4), 0 2px 8px rgba(0,0,0,.2);
|
|
transition: transform .15s, box-shadow .15s;
|
|
}
|
|
.btn-float:active {
|
|
transform: scale(.96);
|
|
box-shadow: 0 4px 16px rgba(30,107,255,.3);
|
|
}
|
|
|
|
/* ====== CAROUSEL DOTS ====== */
|
|
.carousel-dots {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
margin-top: 24px;
|
|
}
|
|
.carousel-dot {
|
|
width: 8px; height: 8px;
|
|
border-radius: 50%;
|
|
background: rgba(30,107,255,.2);
|
|
cursor: pointer;
|
|
transition: all .3s;
|
|
}
|
|
.carousel-dot.active {
|
|
background: var(--accent);
|
|
width: 24px;
|
|
border-radius: 4px;
|
|
}
|
|
/* Light sections dots */
|
|
.services .carousel-dots .carousel-dot { background: rgba(30,107,255,.15); }
|
|
.services .carousel-dots .carousel-dot.active { background: var(--accent); }
|
|
|
|
/* ====== RESPONSIVE — TABLET ====== */
|
|
@media (max-width: 1024px) {
|
|
.hero h1 { font-size: 44px; }
|
|
.section-header h2 { font-size: 34px; }
|
|
.stats-card { padding: 28px 32px; }
|
|
.stat-number-new { font-size: 36px; }
|
|
.cta-box { padding: 48px; gap: 40px; }
|
|
.process-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
|
|
}
|
|
|
|
/* ====== RESPONSIVE — MOBILE ====== */
|
|
@media (max-width: 768px) {
|
|
body { font-size: 16px; }
|
|
.container { padding: 0 20px; }
|
|
|
|
/* === NAV === */
|
|
.nav-links, .nav-phone { display: none; }
|
|
.burger { display: block; }
|
|
.nav-content { height: 64px; }
|
|
.top-bar { display: none; }
|
|
|
|
/* === FLOATING CTA === */
|
|
.mobile-float-cta {
|
|
display: block;
|
|
position: fixed;
|
|
bottom: 24px;
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(100px);
|
|
z-index: 90;
|
|
opacity: 0;
|
|
transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
|
|
pointer-events: none;
|
|
}
|
|
.mobile-float-cta.visible {
|
|
transform: translateX(-50%) translateY(0);
|
|
opacity: 1;
|
|
pointer-events: all;
|
|
}
|
|
|
|
/* === HERO === */
|
|
.hero {
|
|
padding: 48px 0 40px;
|
|
min-height: auto;
|
|
}
|
|
.hero h1 {
|
|
font-size: 32px;
|
|
letter-spacing: -.8px;
|
|
line-height: 1.15;
|
|
margin-bottom: 20px;
|
|
}
|
|
.lead {
|
|
font-size: 16px;
|
|
line-height: 1.55;
|
|
margin-bottom: 28px;
|
|
color: var(--text2);
|
|
}
|
|
.badge {
|
|
margin-bottom: 20px;
|
|
font-size: 12px;
|
|
padding: 6px 14px;
|
|
}
|
|
|
|
/* Hero buttons */
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-bottom: 32px;
|
|
}
|
|
.hero-buttons .btn-lg {
|
|
justify-content: center;
|
|
padding: 14px 24px;
|
|
font-size: 15px;
|
|
border-radius: 10px;
|
|
}
|
|
.hero-buttons .btn-secondary {
|
|
padding: 14px 24px;
|
|
justify-content: center;
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* Trust */
|
|
.hero-trust {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px 20px;
|
|
}
|
|
.trust-item { font-size: 13px; }
|
|
|
|
/* === STATS === */
|
|
.hero-stats-panel { margin-top: 36px; }
|
|
.stats-card {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 0;
|
|
gap: 0;
|
|
background: var(--bg-dark2);
|
|
border: 1px solid var(--border-dark);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
}
|
|
.stat-item-new {
|
|
padding: 24px 16px;
|
|
text-align: center;
|
|
border-bottom: 1px solid var(--border-dark);
|
|
border-right: 1px solid var(--border-dark);
|
|
}
|
|
.stat-item-new:nth-child(even) { border-right: none; }
|
|
.stat-item-new:nth-last-child(-n+2) { border-bottom: none; }
|
|
.stat-number-new { font-size: 32px; margin-bottom: 4px; }
|
|
.stat-label-new { font-size: 12px; }
|
|
.stat-divider { display: none; }
|
|
|
|
/* === SECTIONS GENERAL === */
|
|
.services, .benefits, .projects, .cta, .process, .bottom-cta { padding: 56px 0; }
|
|
.section-header { margin-bottom: 32px; }
|
|
.section-header h2 {
|
|
font-size: 26px;
|
|
letter-spacing: -.5px;
|
|
line-height: 1.2;
|
|
}
|
|
.section-subtitle { font-size: 15px; line-height: 1.55; }
|
|
.section-badge { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 12px; }
|
|
|
|
/* === SERVICES CAROUSEL === */
|
|
.services-grid {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
-webkit-overflow-scrolling: touch;
|
|
touch-action: pan-x;
|
|
gap: 12px;
|
|
padding: 0 0 4px;
|
|
margin: 0 -20px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
.service-card {
|
|
min-width: 82%;
|
|
max-width: 82%;
|
|
scroll-snap-align: center;
|
|
flex-shrink: 0;
|
|
padding: 28px;
|
|
}
|
|
.service-card h3 { font-size: 18px; }
|
|
.service-card p { font-size: 14px; }
|
|
|
|
/* === BENEFITS CAROUSEL === */
|
|
.benefits-grid {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
-webkit-overflow-scrolling: touch;
|
|
touch-action: pan-x;
|
|
gap: 12px;
|
|
margin: 0 -20px;
|
|
padding: 0 20px 4px;
|
|
}
|
|
.benefit-card {
|
|
min-width: 82%;
|
|
max-width: 82%;
|
|
scroll-snap-align: center;
|
|
flex-shrink: 0;
|
|
padding: 24px;
|
|
}
|
|
.benefit-text h3 { font-size: 15px; }
|
|
.benefit-text p { font-size: 13px; }
|
|
.benefit-icon {
|
|
width: 44px; height: 44px; min-width: 44px;
|
|
border-radius: 10px;
|
|
}
|
|
.benefit-icon svg { width: 22px; height: 22px; }
|
|
|
|
/* === PROCESS TIMELINE === */
|
|
.process-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
position: relative;
|
|
padding-left: 0;
|
|
}
|
|
.process-grid::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 40px;
|
|
bottom: 40px;
|
|
left: 23px;
|
|
width: 2px;
|
|
background: linear-gradient(180deg, var(--accent), rgba(30,107,255,.08));
|
|
border-radius: 2px;
|
|
}
|
|
.process-step {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
text-align: left;
|
|
padding: 12px 0;
|
|
position: relative;
|
|
}
|
|
.process-num {
|
|
width: 48px; height: 48px; min-width: 48px;
|
|
font-size: 20px;
|
|
margin: 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
box-shadow: 0 2px 12px rgba(30,107,255,.1);
|
|
}
|
|
.process-step h3 { font-size: 16px; margin-bottom: 4px; }
|
|
.process-step p { font-size: 14px; line-height: 1.5; }
|
|
|
|
/* === PROJECTS CAROUSEL === */
|
|
.projects-grid {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
-webkit-overflow-scrolling: touch;
|
|
touch-action: pan-x;
|
|
gap: 12px;
|
|
margin: 0 -20px;
|
|
padding: 0 20px 4px;
|
|
}
|
|
.project-card {
|
|
min-width: 85%;
|
|
max-width: 85%;
|
|
scroll-snap-align: center;
|
|
flex-shrink: 0;
|
|
}
|
|
.project-img { height: 180px; }
|
|
.project-info { padding: 20px; }
|
|
.project-info h3 { font-size: 16px; }
|
|
.project-address { font-size: 13px; margin-bottom: 12px; }
|
|
.project-stats { font-size: 12px; gap: 12px; }
|
|
|
|
/* === CTA FORM === */
|
|
.cta-box {
|
|
grid-template-columns: 1fr;
|
|
padding: 28px;
|
|
gap: 28px;
|
|
border-radius: 16px;
|
|
}
|
|
.cta-left h2 {
|
|
font-size: 26px;
|
|
line-height: 1.2;
|
|
}
|
|
.cta-left p { font-size: 15px; margin-bottom: 20px; }
|
|
.cta-features { gap: 10px; }
|
|
.cta-feature { font-size: 14px; }
|
|
.form-row { grid-template-columns: 1fr; }
|
|
.contact-form input,
|
|
.contact-form textarea {
|
|
padding: 14px 16px;
|
|
font-size: 15px;
|
|
border-radius: 10px;
|
|
}
|
|
.contact-form .btn-lg {
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* === BOTTOM CTA === */
|
|
.bottom-cta {
|
|
padding: 48px 0;
|
|
}
|
|
.bottom-cta h2 {
|
|
font-size: 26px;
|
|
line-height: 1.2;
|
|
margin-bottom: 12px;
|
|
}
|
|
.bottom-cta p { font-size: 15px; margin-bottom: 28px; }
|
|
.bottom-cta .btn-lg { padding: 16px 28px; font-size: 15px; max-width: 100%; white-space: normal; text-align: center; justify-content: center; }
|
|
|
|
/* === FOOTER === */
|
|
.footer-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 28px;
|
|
}
|
|
footer { padding: 48px 0 100px; } /* extra bottom for floating CTA */
|
|
footer h4 { font-size: 13px; margin-bottom: 12px; }
|
|
footer p { font-size: 13px; margin-bottom: 8px; }
|
|
.footer-bottom { font-size: 12px; padding-top: 20px; }
|
|
|
|
/* Logo in footer */
|
|
.footer-grid .logo-name { font-size: 15px; }
|
|
|
|
/* === MOBILE TOUCH FEEDBACK === */
|
|
.service-card:active,
|
|
.benefit-card:active,
|
|
.project-card:active { transform: none; }
|
|
.service-card:hover,
|
|
.benefit-card:hover,
|
|
.project-card:hover { transform: none; box-shadow: none; }
|
|
|
|
/* === PROCESS LIGHT SECTION on mobile === */
|
|
.process .process-step h3 { color: var(--text-dark); }
|
|
.process .process-step p { color: var(--text-dark2); }
|
|
.process .process-num {
|
|
background: #fff;
|
|
border: 2px solid rgba(30,107,255,.12);
|
|
color: var(--accent);
|
|
}
|
|
|
|
/* === HERO mobile fine-tune === */
|
|
.hero h1 br:first-of-type { display: none; }
|
|
.hero-glow-1 { width: 300px; height: 300px; opacity: .06; }
|
|
.hero-glow-2 { width: 200px; height: 200px; opacity: .04; }
|
|
|
|
/* === SMOOTH CARD SCROLL INDICATOR === */
|
|
.services-grid::after,
|
|
.benefits-grid::after,
|
|
.projects-grid::after {
|
|
content: '';
|
|
min-width: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
/* ====== RESPONSIVE — SMALL PHONES ====== */
|
|
@media (max-width: 380px) {
|
|
.hero h1 { font-size: 27px; }
|
|
.lead { font-size: 15px; }
|
|
.section-header h2 { font-size: 23px; }
|
|
.stats-card { grid-template-columns: 1fr; }
|
|
.stat-item-new { border-right: none !important; }
|
|
.stat-item-new:last-child { border-bottom: none; }
|
|
.service-card, .benefit-card, .project-card { min-width: 90%; max-width: 90%; }
|
|
.cta-box { padding: 24px; }
|
|
.cta-left h2 { font-size: 22px; }
|
|
}
|