* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #2563eb;
--secondary: #0ea5e9;
--accent: #f59e0b;
--dark: #0f172a;
--light: #f1f5f9;
--text: #1e293b;
--text-light: #64748b;
--white: #ffffff;
}

body {
font-family: 'Sora', sans-serif;
font-size: 15px;
line-height: 1.6;
color: var(--text);
background: var(--white);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 600;
line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 16px 0;
z-index: 9999;
transform: translateY(100%);
transition: transform 0.3s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.privacy-content p {
margin: 0;
font-size: 14px;
flex: 1;
}

.privacy-actions {
display: flex;
gap: 12px;
}

.btn-accept, .btn-learn {
padding: 8px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
border: none;
}

.btn-accept {
background: var(--accent);
color: var(--dark);
}

.btn-accept:hover {
background: #d97706;
}

.btn-learn {
background: transparent;
color: var(--white);
border: 1px solid var(--white);
}

.btn-learn:hover {
background: var(--white);
color: var(--dark);
}

.header {
background: var(--white);
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 100;
}

.header-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Space Grotesk', sans-serif;
font-size: 1.4rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-decoration: none;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--text);
transition: all 0.3s ease;
}

.nav {
display: flex;
gap: 30px;
}

.nav-link {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.nav-link:hover, .nav-link.active {
color: var(--primary);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
right: 0;
height: 2px;
background: var(--primary);
}

.mega-hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
overflow: hidden;
}

.mega-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('time_assets/hero-clock.jpg') center/cover;
opacity: 0.15;
}

.clock-animation {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}

.clock {
position: absolute;
opacity: 0.15;
animation: float 20s infinite ease-in-out;
}

.clock-1 {
top: 10%;
left: 10%;
animation-delay: 0s;
}

.clock-2 {
top: 60%;
right: 15%;
animation-delay: -7s;
}

.clock-3 {
bottom: 15%;
left: 50%;
animation-delay: -14s;
}

.clock-face {
width: 120px;
height: 120px;
border: 3px solid rgba(255,255,255,0.3);
border-radius: 50%;
position: relative;
background: rgba(255,255,255,0.05);
}

.hand {
position: absolute;
bottom: 50%;
left: 50%;
transform-origin: bottom center;
background: rgba(255,255,255,0.6);
border-radius: 3px;
}

.hour {
width: 4px;
height: 35px;
margin-left: -2px;
animation: rotateHour 43200s linear infinite;
}

.minute {
width: 3px;
height: 45px;
margin-left: -1.5px;
animation: rotateMinute 3600s linear infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
25% { transform: translateY(-30px) rotate(5deg); }
50% { transform: translateY(-15px) rotate(-5deg); }
75% { transform: translateY(-40px) rotate(3deg); }
}

@keyframes rotateHour {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@keyframes rotateMinute {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.mega-hero-content {
position: relative;
z-index: 2;
color: var(--white);
max-width: 800px;
padding: 60px 0;
}

.mega-hero h1 {
font-size: 3.5rem;
margin-bottom: 25px;
line-height: 1.2;
}

.mega-hero p {
font-size: 1.3rem;
margin-bottom: 35px;
opacity: 0.95;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
font-size: 15px;
border: none;
cursor: pointer;
}

.btn-primary {
background: var(--accent);
color: var(--dark);
}

.btn-primary:hover {
background: #d97706;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(245,158,11,0.3);
}

.btn-secondary {
background: transparent;
color: var(--white);
border: 2px solid var(--white);
}

.btn-secondary:hover {
background: var(--white);
color: var(--primary);
}

section {
padding: 80px 0;
}

.stats-section {
background: var(--dark);
color: var(--white);
padding: 60px 0;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-item h3 {
font-size: 3rem;
color: var(--accent);
margin-bottom: 10px;
}

.stat-item p {
font-size: 1rem;
opacity: 0.9;
}

.features-modern {
background: var(--light);
}

.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 60px;
}

.section-header h2 {
margin-bottom: 15px;
}

.section-header p {
color: var(--text-light);
font-size: 1.1rem;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.feature-box {
background: var(--white);
padding: 35px;
border-radius: 12px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-box:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: 0 15px 40px rgba(37,99,235,0.15);
}

.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
font-size: 1.8rem;
color: var(--white);
}

.feature-box h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.feature-box p {
color: var(--text-light);
font-size: 14px;
line-height: 1.7;
}

.process-section {
background: var(--white);
}

.process-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
}

.process-step {
position: relative;
padding: 30px;
background: var(--light);
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.step-number {
position: absolute;
top: -15px;
left: 20px;
width: 50px;
height: 50px;
background: var(--accent);
color: var(--dark);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 700;
}

.process-step h3 {
margin: 20px 0 12px;
}

.process-step p {
color: var(--text-light);
font-size: 14px;
}

.showcase-section {
background: var(--light);
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.showcase-text h2 {
margin-bottom: 20px;
}

.showcase-text p {
color: var(--text-light);
margin-bottom: 25px;
line-height: 1.8;
}

.showcase-list {
list-style: none;
margin-bottom: 30px;
}

.showcase-list li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 15px;
font-size: 15px;
}

.showcase-list li::before {
content: '✓';
width: 24px;
height: 24px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

.showcase-image {
position: relative;
}

.showcase-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.integration-section {
background: var(--white);
}

.integration-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

.integration-card {
background: var(--light);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.integration-card:hover {
background: var(--white);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.integration-card h3 {
margin-bottom: 10px;
font-size: 1.2rem;
}

.integration-card p {
color: var(--text-light);
font-size: 14px;
}

.testimonials-section {
background: var(--dark);
color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
color: var(--white);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.testimonial-box {
background: rgba(255,255,255,0.1);
padding: 35px;
border-radius: 12px;
backdrop-filter: blur(10px);
}

.testimonial-box p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 25px;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-info strong {
display: block;
font-size: 16px;
margin-bottom: 3px;
}

.author-info span {
font-size: 13px;
opacity: 0.8;
}

.final-cta {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
text-align: center;
padding: 80px 0;
}

.final-cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.final-cta p {
font-size: 1.2rem;
margin-bottom: 35px;
opacity: 0.95;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.page-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 70px 0;
text-align: center;
}

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.2rem;
opacity: 0.95;
}

.features-detailed {
background: var(--white);
}

.feature-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.feature-detail {
background: var(--light);
padding: 35px;
border-radius: 12px;
border-left: 4px solid var(--primary);
}

.feature-detail h2 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--primary);
}

.feature-detail p {
color: var(--text-light);
margin-bottom: 20px;
font-size: 14px;
line-height: 1.7;
}

.feature-detail ul {
list-style: none;
}

.feature-detail ul li {
padding: 8px 0;
color: var(--text);
font-size: 14px;
padding-left: 20px;
position: relative;
}

.feature-detail ul li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
font-weight: 700;
}

.features-showcase {
background: var(--light);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.showcase-item {
text-align: center;
padding: 25px;
background: var(--white);
border-radius: 12px;
}

.showcase-item h3 {
font-size: 1.1rem;
margin-bottom: 10px;
}

.showcase-item p {
color: var(--text-light);
font-size: 13px;
}

.pricing {
background: var(--light);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.pricing-card {
background: var(--white);
padding: 40px;
border-radius: 12px;
text-align: center;
position: relative;
border: 2px solid #e2e8f0;
transition: all 0.3s ease;
}

.pricing-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(37,99,235,0.2);
}

.badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--accent);
color: var(--dark);
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.plan-header h2 {
font-size: 1.6rem;
margin-bottom: 20px;
}

.price {
margin-bottom: 15px;
}

.currency {
font-size: 1.5rem;
vertical-align: top;
}

.amount {
font-size: 3.5rem;
font-weight: 700;
color: var(--primary);
}

.period {
font-size: 1rem;
color: var(--text-light);
}

.plan-description {
color: var(--text-light);
margin-bottom: 30px;
font-size: 14px;
}

.plan-features {
list-style: none;
text-align: left;
margin-bottom: 30px;
}

.plan-features li {
padding: 10px 0;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.plan-features li::before {
content: '✓';
color: var(--primary);
font-weight: 700;
}

.btn-plan {
display: block;
width: 100%;
padding: 14px;
background: var(--primary);
color: var(--white);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-plan:hover {
background: var(--secondary);
transform: translateY(-2px);
}

.pricing-faq {
background: var(--white);
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.faq-item {
background: var(--light);
padding: 25px;
border-radius: 12px;
}

.faq-item h3 {
font-size: 1.1rem;
margin-bottom: 12px;
}

.faq-item p {
color: var(--text-light);
font-size: 14px;
}

.contact-hero {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
padding: 70px 0;
text-align: center;
}

.contact-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.contact-hero p {
font-size: 1.2rem;
opacity: 0.95;
}

.contact-section {
background: var(--light);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info h2 {
margin-bottom: 20px;
}

.contact-info p {
color: var(--text-light);
margin-bottom: 30px;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 25px;
}

.info-icon {
width: 45px;
height: 45px;
background: var(--primary);
color: var(--white);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.info-item strong {
display: block;
margin-bottom: 5px;
}

.info-item p {
margin: 0;
color: var(--text-light);
font-size: 14px;
}

.contact-form-wrapper {
background: var(--white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 8px;
font-weight: 500;
font-size: 14px;
}

.form-group input, .form-group textarea {
padding: 12px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-family: 'Sora', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.form-group textarea {
resize: vertical;
min-height: 120px;
}

.checkbox-group {
flex-direction: row;
align-items: center;
}

.checkbox-label {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
}

.btn-submit {
padding: 14px 30px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: var(--secondary);
transform: translateY(-2px);
}

.map-section {
background: var(--white);
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-section, .error-section {
min-height: calc(100vh - 180px);
display: flex;
align-items: center;
justify-content: center;
background: var(--light);
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
}

.success-icon {
width: 80px;
height: 80px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
margin: 0 auto 25px;
}

.error-content h1 {
font-size: 6rem;
color: var(--primary);
margin-bottom: 20px;
}

.error-content h2 {
margin-bottom: 15px;
}

.thankyou-content h1, .error-content h2 {
margin-bottom: 15px;
}

.thankyou-content p, .error-content p {
color: var(--text-light);
margin-bottom: 30px;
font-size: 1.1rem;
}

.policy-section {
background: var(--white);
padding: 50px 0;
}

.policy-section h1 {
margin-bottom: 10px;
}

.policy-date {
color: var(--text-light);
font-size: 14px;
margin-bottom: 40px;
}

.policy-content {
max-width: 900px;
}

.policy-content h2 {
margin-top: 35px;
margin-bottom: 15px;
font-size: 1.5rem;
}

.policy-content h3 {
margin-top: 25px;
margin-bottom: 12px;
font-size: 1.2rem;
}

.policy-content p {
margin-bottom: 15px;
color: var(--text-light);
line-height: 1.8;
}

.footer {
background: var(--dark);
color: var(--white);
padding: 30px 0;
}

.footer-content {
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 13px;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--accent);
}

.copyright {
font-size: 13px;
opacity: 0.8;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
.menu-toggle { display: flex; }
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
display: none;
gap: 15px;
}
.nav.active { display: flex; }
.mega-hero { min-height: 70vh; }
.mega-hero h1 { font-size: 2.2rem; }
.mega-hero p { font-size: 1.1rem; }
.clock-face { width: 80px; height: 80px; }
.hour { height: 25px; }
.minute { height: 35px; }
.showcase-content { grid-template-columns: 1fr; }
.showcase-image { order: -1; }
.contact-wrapper { grid-template-columns: 1fr; }
.contact-form-wrapper { padding: 25px; }
.features-grid, .process-timeline, .integration-grid, .testimonials-grid, .pricing-grid, .faq-grid, .showcase-grid { grid-template-columns: 1fr; }
.feature-row { grid-template-columns: 1fr; }
section { padding: 60px 0; }
.mega-hero, .page-hero, .contact-hero { padding: 50px 0; }
.privacy-content { flex-direction: column; text-align: center; }
.privacy-actions { width: 100%; justify-content: center; }
.footer-links { flex-direction: column; gap: 12px; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 480px) {
body { font-size: 14px; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
.container { padding: 0 15px; }
.mega-hero h1 { font-size: 1.9rem; }
.page-hero h1 { font-size: 2rem; }
.btn-primary, .btn-secondary { padding: 12px 24px; font-size: 14px; }
.feature-box, .feature-detail, .testimonial-box, .faq-item, .showcase-item { padding: 20px; }
.pricing-card { padding: 30px; }
.contact-form-wrapper { padding: 20px; }
.amount { font-size: 3rem; }
.stats-grid { grid-template-columns: 1fr; }
.stat-item h3 { font-size: 2.5rem; }
.clock-face { width: 60px; height: 60px; border-width: 2px; }
.hour { height: 20px; width: 3px; }
.minute { height: 28px; width: 2px; }
}

@media (max-width: 320px) {
body { font-size: 13px; }
h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
.container { padding: 0 12px; }
.mega-hero h1 { font-size: 1.7rem; }
.mega-hero p { font-size: 1rem; }
.btn-primary, .btn-secondary { padding: 10px 20px; font-size: 13px; }
.feature-box, .pricing-card { padding: 18px; }
.stat-item h3 { font-size: 2rem; }
}
