:root {
--background: hsl(0, 0%, 100%);
--foreground: hsl(222.2, 84%, 4.9%);
--primary: hsl(222.2, 47.4%, 11.2%);
--primary-foreground: hsl(210, 40%, 98%);
--secondary: hsl(210, 40%, 96.1%);
--secondary-foreground: hsl(222.2, 47.4%, 11.2%);
--muted: hsl(210, 40%, 96.1%);
--muted-foreground: hsl(215.4, 16.3%, 46.9%);
--accent: hsl(210, 40%, 96.1%);
--accent-foreground: hsl(222.2, 47.4%, 11.2%);
--border: hsl(214.3, 31.8%, 91.4%);
--bg-main: var(--background);
--bg-surface: #ffffff;
--bg-alt: var(--secondary);
--text-main: var(--foreground);
--text-muted: var(--muted-foreground);
--primary-color: var(--primary);
--primary-light: hsl(222.2, 47.4%, 25%);
--glass-bg: rgba(255, 255, 255, 0.7);
--glass-border: rgba(0, 0, 0, 0.05);
--glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
--font-heading: 'Outfit', sans-serif;
--font-body: 'Inter', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
background-color: var(--bg-main);
color: var(--text-main);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
font-family: var(--font-heading);
color: var(--text-main);
}
a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.text-gradient {
background: linear-gradient(135deg, var(--primary-color), #2563EB);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.text-primary {
color: var(--primary-color);
}
.text-blue {
color: #2563EB;
}
.text-emerald {
color: #059669;
}
.text-purple {
color: #7C3AED;
}
.bg-alt {
background-color: var(--bg-alt);
}
.glass {
background: var(--glass-bg);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid var(--glass-border);
border-radius: 16px;
box-shadow: var(--glass-shadow);
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
font-family: var(--font-body);
}
.btn-primary {
background: var(--primary-color);
color: var(--primary-foreground);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border: none;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
background: #0f172a;
}
.btn-outline {
background: transparent;
border: 1px solid var(--border);
color: var(--text-main);
}
.btn-outline:hover {
border-color: var(--primary-color);
color: var(--primary-color);
background: var(--secondary);
}
.btn-lg {
padding: 1rem 2rem;
font-size: 1.1rem;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 1rem 0;
border-radius: 0 0 16px 16px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border);
}
.navbar-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.5rem;
}
.logo-icon {
color: var(--primary-color);
}
.nav-links {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-links a:not(.btn) {
color: var(--text-muted);
font-weight: 500;
}
.nav-links a:not(.btn):hover {
color: var(--text-main);
}
.hero {
position: relative;
padding: 180px 0 100px;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 40%);
}
.hero-glow {
position: absolute;
top: -20%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
pointer-events: none;
z-index: -1;
}
.hero-content {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 4rem;
align-items: center;
}
.badge-pill {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--secondary);
color: var(--primary-color);
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 2rem;
border: 1px solid var(--border);
}
.badge-dot {
width: 8px;
height: 8px;
background-color: var(--primary-color);
border-radius: 50%;
}
.hero h1 {
font-size: 4rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-muted);
margin-bottom: 3rem;
max-width: 90%;
}
.hero-actions {
display: flex;
gap: 1.5rem;
}
.hero-visual {
position: relative;
height: 400px;
}
.visual-card {
position: absolute;
padding: 2rem;
width: 220px;
text-align: center;
transition: transform 0.3s ease;
background: white;
border: 1px solid var(--border);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.visual-card:hover {
transform: translateY(-10px);
}
.visual-card h3 {
margin: 1rem 0 0.5rem;
font-size: 1.1rem;
}
.visual-card p {
font-size: 0.9rem;
color: var(--text-muted);
}
.icon-lg {
width: 48px;
height: 48px;
}
.float-1 {
top: 0;
right: 20px;
animation: float 6s ease-in-out infinite;
}
.float-2 {
top: 120px;
left: 0;
animation: float 7s ease-in-out infinite 1s;
}
.float-3 {
bottom: 0;
right: 40px;
animation: float 8s ease-in-out infinite 0.5s;
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
section {
padding: 100px 0;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.section-header p {
color: var(--text-muted);
font-size: 1.1rem;
}
.grid {
display: grid;
gap: 2rem;
}
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.feature-card {
padding: 2.5rem;
display: flex;
flex-direction: column;
height: 100%;
transition: transform 0.3s ease;
background: white;
border: 1px solid var(--border);
border-radius: 16px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
transform: translateY(-5px);
border-color: var(--primary-color);
}
.card-icon {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}
.bg-gold-soft {
background: hsl(45, 100%, 90%);
}
.bg-blue-soft {
background: hsl(210, 100%, 96%);
}
.bg-emerald-soft {
background: hsl(150, 100%, 96%);
}
.feature-card h3 {
margin-bottom: 1rem;
font-size: 1.5rem;
}
.feature-card p {
color: var(--text-muted);
margin-bottom: 2rem;
flex-grow: 1;
}
.feature-list {
list-style: none;
}
.feature-list li {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
color: var(--text-main);
font-size: 0.95rem;
}
.feature-list li i {
width: 18px;
height: 18px;
color: var(--primary-color);
}
.simple-card {
background: white;
padding: 2rem;
border-radius: 16px;
text-align: center;
border: 1px solid var(--border);
transition: background 0.3s, box-shadow 0.3s;
}
.simple-card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.simple-card i {
width: 40px;
height: 40px;
margin-bottom: 1rem;
}
.simple-card h4 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.simple-card p {
color: var(--text-muted);
font-size: 0.9rem;
}
.footer {
padding: 80px 0 0;
position: relative;
overflow: hidden;
background: var(--bg-alt);
border-top: 1px solid var(--border);
}
.cta-box {
text-align: center;
padding: 4rem;
margin-bottom: 4rem;
background: white;
border: 1px solid var(--border);
border-radius: 24px;
}
.cta-box h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.cta-box p {
color: var(--text-muted);
margin-bottom: 2.5rem;
font-size: 1.2rem;
}
.contact-info {
display: flex;
justify-content: center;
gap: 3rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.1rem;
color: var(--primary-color);
font-weight: 600;
}
.footer-bottom {
border-top: 1px solid var(--border);
padding: 2rem 0;
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}
@media (max-width: 968px) {
.hero-content {
grid-template-columns: 1fr;
text-align: center;
gap: 3rem;
}
.hero h1 {
font-size: 3rem;
}
.hero-subtitle {
margin: 0 auto 3rem;
}
.hero-actions {
justify-content: center;
}
.hero-visual {
display: none;
}
.grid-3,
.grid-4 {
grid-template-columns: 1fr;
}
}