* {
margin: 0;
padding: 0;
box-sizing: border-box;
} :root {
--tech-navy: #1e293b;
--tech-dark: #334155;
--tech-cyan: #06b6d4;
--tech-light: #f8fafc;
--tech-gray: #64748b;
--accent: #3b82f6;
--background: #ffffff;
--foreground: #0f172a;
--border: #e2e8f0;
--gradient-hero: linear-gradient(135deg, var(--tech-navy), var(--tech-dark));
--gradient-card: linear-gradient(145deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.05));
--shadow-tech: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
--transition-tech: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: var(--foreground);
background-color: var(--background);
} .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
p {
margin-bottom: 1rem;
color: var(--tech-gray);
} a {
color: var(--tech-cyan);
text-decoration: none;
transition: var(--transition-tech);
}
a:hover {
color: var(--accent);
} .btn {
display: inline-block;
padding: 12px 24px;
border: none;
border-radius: 8px;
font-weight: 600;
text-align: center;
cursor: pointer;
transition: var(--transition-tech);
text-decoration: none;
}
.btn-primary {
background: var(--tech-cyan);
color: var(--tech-navy);
}
.btn-primary:hover {
background: var(--accent);
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow-tech);
}
.btn-secondary {
background: transparent;
color: var(--tech-light);
border: 2px solid var(--tech-cyan);
}
.btn-secondary:hover {
background: var(--tech-cyan);
color: var(--tech-navy);
}
.btn-large {
padding: 16px 32px;
font-size: 1.125rem;
} .site-header {
background: var(--tech-navy);
border-bottom: 1px solid rgba(6, 182, 212, 0.2);
position: sticky;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--tech-cyan), var(--accent));
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 0.875rem;
color: var(--tech-navy);
}
.logo h1 {
color: var(--tech-light);
font-size: 1.25rem;
margin: 0;
}
.main-nav ul {
display: flex;
list-style: none;
gap: 2rem;
margin: 0;
}
.main-nav a {
color: var(--tech-light);
font-weight: 500;
}
.main-nav a:hover {
color: var(--tech-cyan);
}
.header-contact {
display: flex;
align-items: center;
gap: 1rem;
}
.phone-info {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--tech-light);
font-size: 0.875rem;
} .hero-section {
background: var(--gradient-hero);
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient(90deg, var(--tech-navy) 0%, transparent 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
min-height: 80vh;
}
.hero-text h1 {
color: var(--tech-light);
font-size: 3.5rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero-text .highlight {
color: var(--tech-cyan);
}
.hero-text p {
font-size: 1.25rem;
color: var(--tech-gray);
margin-bottom: 2rem;
}
.hero-features {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 2rem;
}
.hero-feature {
display: flex;
align-items: center;
gap: 0.5rem;
}
.hero-feature-icon {
width: 20px;
height: 20px;
color: var(--tech-cyan);
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
padding-top: 2rem;
border-top: 1px solid rgba(6, 182, 212, 0.2);
}
.hero-stat {
text-align: center;
}
.hero-stat-value {
font-size: 2rem;
font-weight: bold;
color: var(--tech-cyan);
}
.hero-stat-label {
color: var(--tech-gray);
font-size: 0.875rem;
}
.hero-image {
position: relative;
}
.hero-image::before {
content: '';
position: absolute;
inset: -1rem;
background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
border-radius: 1rem;
filter: blur(2rem);
z-index: -1;
}
.hero-image img {
width: 100%;
height: auto;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
} .products-section {
background: var(--tech-navy);
padding: 5rem 0;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
color: var(--tech-light);
margin-bottom: 1rem;
}
.section-header p {
font-size: 1.25rem;
max-width: 48rem;
margin: 0 auto;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.product-card {
background: rgba(51, 65, 85, 0.5);
border: 1px solid rgba(6, 182, 212, 0.2);
border-radius: 12px;
padding: 1.5rem;
transition: var(--transition-tech);
}
.product-card:hover {
border-color: rgba(6, 182, 212, 0.4);
transform: translateY(-4px);
}
.product-icon {
width: 64px;
height: 64px;
background: linear-gradient(135deg, var(--tech-cyan), var(--accent));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}
.product-card h3 {
color: var(--tech-light);
text-align: center;
margin-bottom: 1rem;
}
.product-card p {
text-align: center;
font-size: 0.875rem;
margin-bottom: 1.5rem;
}
.product-features {
list-style: none;
margin-bottom: 1.5rem;
}
.product-features li {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--tech-light);
font-size: 0.875rem;
margin-bottom: 0.75rem;
}
.product-features li::before {
content: '';
width: 6px;
height: 6px;
background: var(--tech-cyan);
border-radius: 50%;
}
.product-price {
color: var(--tech-cyan);
font-weight: bold;
font-size: 1.125rem;
text-align: center;
padding-top: 1rem;
border-top: 1px solid rgba(6, 182, 212, 0.2);
margin-bottom: 1rem;
} .brands-section {
background: linear-gradient(180deg, var(--background), rgba(248, 250, 252, 0.3));
padding: 5rem 0;
}
.brands-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.brand-card {
background: var(--background);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
transition: var(--transition-tech);
border: 1px solid rgba(6, 182, 212, 0.1);
}
.brand-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
border-color: rgba(6, 182, 212, 0.3);
}
.brand-image {
aspect-ratio: 1;
overflow: hidden;
}
.brand-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition-tech);
}
.brand-card:hover .brand-image img {
transform: scale(1.1);
}
.brand-content {
padding: 1.5rem;
}
.brand-content h3 {
color: var(--tech-dark);
margin-bottom: 0.5rem;
}
.brand-content p {
font-size: 0.875rem;
margin-bottom: 1rem;
}
.brand-models h4 {
font-size: 0.875rem;
font-weight: 600;
color: var(--tech-dark);
margin-bottom: 0.5rem;
}
.brand-tags {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
}
.brand-tag {
background: rgba(6, 182, 212, 0.1);
color: var(--tech-dark);
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
border-radius: 4px;
} .about-section {
background: var(--background);
padding: 5rem 0;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin: 2rem 0;
}
.stat-card {
text-align: center;
padding: 1.5rem;
background: rgba(248, 250, 252, 0.5);
border-radius: 12px;
}
.stat-icon {
width: 32px;
height: 32px;
color: var(--tech-cyan);
margin: 0 auto 0.75rem;
}
.stat-value {
font-size: 2rem;
font-weight: bold;
color: var(--tech-dark);
margin-bottom: 0.25rem;
}
.stat-label {
font-size: 0.875rem;
color: var(--tech-gray);
}
.expertise-grid {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.expertise-card {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: var(--background);
border: 1px solid rgba(6, 182, 212, 0.1);
border-radius: 12px;
transition: var(--transition-tech);
}
.expertise-card:hover {
border-color: rgba(6, 182, 212, 0.3);
}
.expertise-icon {
width: 48px;
height: 48px;
background: rgba(6, 182, 212, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.expertise-content h4 {
color: var(--tech-dark);
margin-bottom: 0.5rem;
}
.expertise-content p {
font-size: 0.875rem;
}
.cta-card {
background: var(--tech-dark);
border-radius: 12px;
padding: 1.5rem;
text-align: center;
margin-top: 2rem;
}
.cta-card h4 {
color: var(--tech-light);
margin-bottom: 0.5rem;
}
.cta-card p {
color: var(--tech-gray);
margin-bottom: 1rem;
} .contact-section {
background: linear-gradient(180deg, var(--background), rgba(248, 250, 252, 0.2));
padding: 5rem 0;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.contact-info {
background: var(--background);
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 2rem;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.contact-icon {
width: 48px;
height: 48px;
background: rgba(6, 182, 212, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.contact-details h4 {
color: var(--tech-dark);
margin-bottom: 0.25rem;
}
.contact-details p {
margin: 0;
line-height: 1.4;
}
.support-card {
background: var(--tech-dark);
border-radius: 12px;
padding: 2rem;
text-align: center;
margin-top: 2rem;
}
.support-icon {
width: 48px;
height: 48px;
color: var(--tech-cyan);
margin: 0 auto 1rem;
}
.support-card h3 {
color: var(--tech-light);
margin-bottom: 0.5rem;
}
.support-card p {
color: var(--tech-gray);
margin-bottom: 1rem;
} .contact-form {
background: var(--background);
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.form-group label {
display: block;
font-weight: 600;
color: var(--tech-dark);
margin-bottom: 0.5rem;
}
.form-control {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid rgba(6, 182, 212, 0.2);
border-radius: 8px;
font-size: 1rem;
transition: var(--transition-tech);
}
.form-control:focus {
outline: none;
border-color: var(--tech-cyan);
box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
textarea.form-control {
resize: vertical;
min-height: 120px;
} .site-footer {
background: var(--tech-navy);
color: var(--tech-light);
padding: 3rem 0 1.5rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.footer-section h3,
.footer-section h4 {
color: var(--tech-light);
margin-bottom: 1rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section ul li a {
color: var(--tech-gray);
font-size: 0.875rem;
}
.footer-section ul li a:hover {
color: var(--tech-cyan);
}
.footer-description {
color: var(--tech-gray);
font-size: 0.875rem;
margin-bottom: 1rem;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-link {
width: 20px;
height: 20px;
color: var(--tech-gray);
transition: var(--transition-tech);
}
.social-link:hover {
color: var(--tech-cyan);
}
.footer-bottom {
border-top: 1px solid rgba(6, 182, 212, 0.2);
padding-top: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-bottom p {
color: var(--tech-gray);
font-size: 0.875rem;
margin: 0;
}
.footer-links {
display: flex;
gap: 1.5rem;
}
.footer-links a {
color: var(--tech-gray);
font-size: 0.875rem;
}
.footer-links a:hover {
color: var(--tech-cyan);
} @media (max-width: 768px) {
.container {
padding: 0 1rem;
}
.header-content {
flex-direction: column;
gap: 1rem;
}
.main-nav ul {
flex-direction: column;
gap: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
.hero-content {
grid-template-columns: 1fr;
text-align: center;
}
.hero-text h1 {
font-size: 2.5rem;
}
.hero-stats {
grid-template-columns: 1fr;
gap: 1rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.form-row {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.brands-grid,
.products-grid {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.footer-content {
grid-template-columns: 1fr;
}
.hero-buttons {
flex-direction: column;
width: 100%;
}
.btn {
width: 100%;
}
}