Changed around line 1
+ :root {
+ --primary-color: #10a37f;
+ --secondary-color: #0e8d6f;
+ --background-color: #ffffff;
+ --text-color: #353740;
+ --gradient-start: #10a37f;
+ --gradient-end: #0e8d6f;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(var(--gradient-start), var(--gradient-end));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ main {
+ padding-top: 80px;
+ }
+
+ .hero {
+ min-height: 80vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 2rem 5%;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(var(--gradient-start), var(--gradient-end));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ margin-bottom: 2rem;
+ }
+
+ .hero-graphic {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at 50% 50%, rgba(16, 163, 127, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
+ z-index: -1;
+ }
+
+ .button {
+ padding: 0.8rem 1.6rem;
+ border-radius: 8px;
+ border: none;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ }
+
+ .primary-button {
+ background: var(--primary-color);
+ color: white;
+ padding: 0.8rem 1.6rem;
+ border: none;
+ border-radius: 8px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .primary-button:hover {
+ background: var(--secondary-color);
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(16, 163, 127, 0.2);
+ }
+
+ .secondary-button {
+ background: transparent;
+ border: 2px solid var(--primary-color);
+ color: var(--primary-color);
+ padding: 0.8rem 1.6rem;
+ border-radius: 8px;
+ font-size: 1rem;
+ cursor: pointer;
+ margin-left: 1rem;
+ transition: all 0.3s ease;
+ }
+
+ .secondary-button:hover {
+ background: rgba(16, 163, 127, 0.1);
+ transform: translateY(-2px);
+ }
+
+ .features {
+ padding: 5rem 5%;
+ background: #f7f7f8;
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 12px;
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-section {
+ text-align: center;
+ padding: 5rem 5%;
+ background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
+ color: white;
+ }
+
+ footer {
+ background: #f7f7f8;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-section {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section a {
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: var(--primary-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 2px;
+ background: var(--text-color);
+ transition: 0.3s ease;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-cta {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .secondary-button {
+ margin-left: 0;
+ }
+ }