@font-face {
    font-family: 'KiwiMaru';
    src: url('fonts/KiwiMaru-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: 'KiwiMaru', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

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

/* Header Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'KiwiMaru', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #666;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'KiwiMaru', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: border-color 0.3s;
}

.language-selector:hover {
    border-color: #999;
}

.globe-icon {
    font-size: 1rem;
}

.chevron {
    font-size: 0.7rem;
    color: #666;
}

.header-cta {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'KiwiMaru', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header-cta:hover {
    background-color: #333;
}

/* Hero Section - Two Column Layout */
.hero {
    padding: 80px 0;
    background-color: #fff;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.hero-cta {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'KiwiMaru', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s;
}

.hero-cta:hover {
    background-color: #333;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.pain-points-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pain-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.pain-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.pain-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pain-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-box {
    background-color: #F8FAFC;
    border-radius: 12px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.info-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Core Features Section - 2x2 Grid */
.core-features {
    padding: 100px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon-small {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.feature-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.feature-bullets li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Conclusion Section - Two Column Layout */
.conclusion {
    padding: 100px 0;
    background-color: #fff;
}

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

.conclusion-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conclusion-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212b40;
    line-height: 1.2;
    margin: 0;
}

.conclusion-subtitle {
    font-size: 1.2rem;
    color: #6a737d;
    font-weight: 500;
    margin: 0;
}

.conclusion-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.conclusion-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.conclusion-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-feature-content {
    flex: 1;
}

.conclusion-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212b40;
    margin-bottom: 8px;
}

.conclusion-feature-description {
    font-size: 1rem;
    color: #6a737d;
    line-height: 1.6;
    margin: 0;
}

.conclusion-image {
    width: 100%;
}

.conclusion-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Pre-registration Form Section */
.pre-registration {
    padding: 100px 0;
    background-color: #fff;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'KiwiMaru', sans-serif;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

.form-help {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.submit-button {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-family: 'KiwiMaru', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #333;
}

.submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .conclusion-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image,
    .conclusion-image {
        order: -1;
    }
    
    .pain-points-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .conclusion-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .info-box {
        flex-direction: column;
        padding: 30px;
    }
}
