368 lines
7.1 KiB
CSS
368 lines
7.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Google+Sans:wght@400;700&display=swap');
|
|
|
|
:root {
|
|
--primary: #202124;
|
|
--accent: #4285f4;
|
|
--background: #fff;
|
|
--text: #3c4043;
|
|
--muted: #5f6368;
|
|
--cta: #1a73e8;
|
|
--cta-hover: #174ea6;
|
|
--border: #e0e0e0;
|
|
--card-bg: #f8f9fa;
|
|
--shadow: 0 4px 24px rgba(60,64,67,0.08);
|
|
--radius: 20px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
|
|
background: var(--background);
|
|
color: var(--primary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
header {
|
|
background: var(--background);
|
|
border-bottom: 1px solid var(--border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
box-shadow: 0 2px 8px rgba(60,64,67,0.04);
|
|
}
|
|
nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 1.2rem 2.5rem;
|
|
}
|
|
.logo {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
letter-spacing: -1px;
|
|
}
|
|
nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 2.2rem;
|
|
}
|
|
nav a {
|
|
text-decoration: none;
|
|
color: var(--primary);
|
|
font-weight: 500;
|
|
font-size: 1.08rem;
|
|
transition: color 0.2s;
|
|
padding: 0.3rem 0.7rem;
|
|
border-radius: 12px;
|
|
}
|
|
nav a.cta {
|
|
background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
|
|
color: #fff;
|
|
padding: 0.6rem 1.5rem;
|
|
border-radius: 24px;
|
|
font-weight: 700;
|
|
box-shadow: 0 2px 8px rgba(66,133,244,0.10);
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
}
|
|
nav a.cta:hover {
|
|
background: linear-gradient(90deg, #174ea6 0%, #4285f4 100%);
|
|
box-shadow: 0 4px 16px rgba(66,133,244,0.18);
|
|
}
|
|
nav a:hover {
|
|
color: var(--accent);
|
|
background: #f1f3f4;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%);
|
|
text-align: center;
|
|
padding: 5rem 2rem 4rem 2rem;
|
|
border-radius: var(--radius);
|
|
margin: 2rem auto 0 auto;
|
|
max-width: 1100px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1.2rem;
|
|
letter-spacing: -1px;
|
|
}
|
|
.hero p {
|
|
font-size: 1.35rem;
|
|
color: var(--muted);
|
|
margin-bottom: 2.2rem;
|
|
}
|
|
.hero .cta {
|
|
font-size: 1.15rem;
|
|
padding: 1rem 2.5rem;
|
|
border-radius: 30px;
|
|
background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
|
|
color: #fff;
|
|
font-weight: 700;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-shadow: 0 2px 8px rgba(66,133,244,0.10);
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
text-decoration: none;
|
|
}
|
|
.hero .cta:hover {
|
|
background: linear-gradient(90deg, #174ea6 0%, #4285f4 100%);
|
|
box-shadow: 0 4px 16px rgba(66,133,244,0.18);
|
|
}
|
|
|
|
.features {
|
|
max-width: 1200px;
|
|
margin: 3.5rem auto;
|
|
padding: 0 2rem;
|
|
}
|
|
.features h2 {
|
|
text-align: center;
|
|
font-size: 2.2rem;
|
|
margin-bottom: 2.5rem;
|
|
font-weight: 700;
|
|
}
|
|
.features-list {
|
|
display: flex;
|
|
gap: 2.5rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.feature-item {
|
|
background: var(--card-bg);
|
|
border-radius: var(--radius);
|
|
padding: 2.2rem 1.7rem;
|
|
text-align: center;
|
|
flex: 1 1 260px;
|
|
max-width: 340px;
|
|
box-shadow: var(--shadow);
|
|
transition: transform 0.18s, box-shadow 0.18s;
|
|
}
|
|
.feature-item:hover {
|
|
transform: translateY(-6px) scale(1.03);
|
|
box-shadow: 0 8px 32px rgba(66,133,244,0.10);
|
|
}
|
|
.feature-item img {
|
|
width: 72px;
|
|
height: 72px;
|
|
margin-bottom: 1.2rem;
|
|
border-radius: 16px;
|
|
object-fit: cover;
|
|
}
|
|
.feature-item h3 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.6rem;
|
|
font-weight: 700;
|
|
}
|
|
.feature-item p {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.gallery {
|
|
background: #f1f3f4;
|
|
padding: 3.5rem 2rem;
|
|
border-radius: var(--radius);
|
|
margin: 2rem auto;
|
|
max-width: 1100px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
.gallery h2 {
|
|
text-align: center;
|
|
font-size: 2.1rem;
|
|
margin-bottom: 2.2rem;
|
|
font-weight: 700;
|
|
}
|
|
.gallery-slider {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.gallery-slider img {
|
|
width: 340px;
|
|
height: 230px;
|
|
object-fit: cover;
|
|
border-radius: 16px;
|
|
box-shadow: 0 2px 12px rgba(60,64,67,0.10);
|
|
transition: transform 0.18s, box-shadow 0.18s;
|
|
}
|
|
.gallery-slider img:hover {
|
|
transform: scale(1.04);
|
|
box-shadow: 0 8px 32px rgba(66,133,244,0.10);
|
|
}
|
|
|
|
.pricing {
|
|
max-width: 600px;
|
|
margin: 3.5rem auto;
|
|
text-align: center;
|
|
}
|
|
.pricing h2 {
|
|
font-size: 2.1rem;
|
|
margin-bottom: 1.7rem;
|
|
font-weight: 700;
|
|
}
|
|
.price-box {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1.2rem;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
.price {
|
|
font-size: 2.3rem;
|
|
font-weight: 700;
|
|
color: var(--cta);
|
|
}
|
|
.old-price {
|
|
font-size: 1.2rem;
|
|
color: #b0b0b0;
|
|
text-decoration: line-through;
|
|
}
|
|
.pricing .cta {
|
|
margin-left: 1.5rem;
|
|
font-size: 1.1rem;
|
|
padding: 0.8rem 2.2rem;
|
|
border-radius: 30px;
|
|
background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
|
|
color: #fff;
|
|
font-weight: 700;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-shadow: 0 2px 8px rgba(66,133,244,0.10);
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
text-decoration: none;
|
|
}
|
|
.pricing .cta:hover {
|
|
background: linear-gradient(90deg, #174ea6 0%, #4285f4 100%);
|
|
box-shadow: 0 4px 16px rgba(66,133,244,0.18);
|
|
}
|
|
.pricing p {
|
|
color: var(--muted);
|
|
margin-top: 0.7rem;
|
|
}
|
|
|
|
.faq {
|
|
max-width: 800px;
|
|
margin: 3.5rem auto;
|
|
padding: 0 2rem;
|
|
}
|
|
.faq h2 {
|
|
text-align: center;
|
|
font-size: 2.1rem;
|
|
margin-bottom: 2.2rem;
|
|
font-weight: 700;
|
|
}
|
|
.faq-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.7rem;
|
|
}
|
|
.faq-item h3 {
|
|
font-size: 1.13rem;
|
|
color: var(--primary);
|
|
margin-bottom: 0.4rem;
|
|
font-weight: 700;
|
|
}
|
|
.faq-item p {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.buy {
|
|
max-width: 520px;
|
|
margin: 3.5rem auto;
|
|
padding: 2.2rem;
|
|
background: var(--card-bg);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--shadow);
|
|
text-align: center;
|
|
}
|
|
.buy h2 {
|
|
font-size: 1.6rem;
|
|
margin-bottom: 1.7rem;
|
|
font-weight: 700;
|
|
}
|
|
.buy-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.2rem;
|
|
}
|
|
.buy-form input {
|
|
padding: 0.9rem 1.1rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
font-size: 1.05rem;
|
|
}
|
|
.buy-form button.cta {
|
|
font-size: 1.1rem;
|
|
padding: 0.9rem 2.2rem;
|
|
border-radius: 30px;
|
|
background: linear-gradient(90deg, #1a73e8 0%, #4285f4 100%);
|
|
color: #fff;
|
|
font-weight: 700;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-shadow: 0 2px 8px rgba(66,133,244,0.10);
|
|
transition: background 0.2s, box-shadow 0.2s;
|
|
}
|
|
.buy-form button.cta:hover {
|
|
background: linear-gradient(90deg, #174ea6 0%, #4285f4 100%);
|
|
box-shadow: 0 4px 16px rgba(66,133,244,0.18);
|
|
}
|
|
|
|
footer {
|
|
background: var(--background);
|
|
border-top: 1px solid var(--border);
|
|
padding: 2.2rem 0;
|
|
margin-top: 3.5rem;
|
|
}
|
|
.footer-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
color: var(--muted);
|
|
}
|
|
.social-links a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
margin: 0 0.6rem;
|
|
transition: color 0.2s;
|
|
}
|
|
.social-links a:hover {
|
|
color: var(--cta);
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.features-list, .gallery-slider {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
nav ul {
|
|
gap: 1.2rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
nav {
|
|
flex-direction: column;
|
|
gap: 1.2rem;
|
|
padding: 1rem;
|
|
}
|
|
.hero {
|
|
padding: 2.2rem 1rem 2.2rem 1rem;
|
|
}
|
|
.features, .faq, .gallery, .pricing, .buy {
|
|
padding: 1.1rem;
|
|
}
|
|
.gallery-slider img {
|
|
width: 100%;
|
|
height: 180px;
|
|
}
|
|
} |