File size: 2,508 Bytes
1eb42eb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

.page {
  min-height: 100vh;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: gray;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  max-width: 900px;
  margin: auto;
  line-height: 1.2;
}

.description {
  color: gray;
  font-size: 18px;
  max-width: 700px;
  margin: 30px auto;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  border: none;
}

.primary {
  background: white;
  color: black;
}

.secondary {
  background: transparent;
  color: white;
  border: 1px solid gray;
}

.btn:hover {
  transform: scale(1.05);
}

/* GRID SECTIONS */
.grid-section,
.center-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.center-section {
  text-align: center;
}

.center-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.card {
  background: #181818;
  padding: 30px;
  border-radius: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: gray;
}

/* CTA */
.cta {
  padding: 100px 20px;
  text-align: center;
}

.cta-box {
  background: white;
  color: black;
  padding: 60px;
  border-radius: 32px;
  max-width: 800px;
  margin: auto;
}

.cta-box h2 {
  font-size: 36px;
}

.cta-box p {
  color: #444;
  margin-bottom: 30px;
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid #ccc;
  width: 250px;
}

.cta-form button {
  padding: 15px 25px;
  border-radius: 18px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.cta-form button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}