/* Reset & Base Styles */
:root {
    --color-primary: #3A8EF6;
    --color-primary-dark: #1678F2;
    --color-primary-gradient: linear-gradient(135deg, #3A8EF6 0%, #6F3AFA 100%);
    --color-text: #031432;
    --color-text-light: #6C87AE;
    --color-white: #FFFFFF;
    --color-bg: #F9FBFC;
    --color-bg-light: #F2F7FF;
    --shadow-sm: 0px 8px 23px rgba(65, 132, 247, 0.24);
    --shadow-lg: 0px 22px 32px rgba(63, 135, 247, 0.16);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
    line-height: 1.5;
}

h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.btn svg {
    width: 24px;
    height: 24px;
}

.btn-primary {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.logo-icon span {
    position: absolute;
    background: var(--color-primary-gradient);
    border-radius: 2px;
}

.logo-icon span:first-child {
    width: 24px;
    height: 6px;
    top: 4px;
}

.logo-icon span:last-child {
    width: 6px;
    height: 24px;
    left: 4px;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-weight: 400;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: var(--color-bg-light);
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.benefits-header p {
    color: var(--color-text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-light);
    margin: 0;
}

/* Article Section */
.article {
    padding: 80px 0;
    background: var(--color-white);
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.content h3 {
    color: var(--color-primary);
    margin-top: 32px;
}

.content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.content ul li {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin: 24px 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
}

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

.footer-group h4 {
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-group ul li {
    margin-bottom: 16px;
}

.footer-group ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-group ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
}

.cookie-notice.show {
    display: block;
}

.cookie-notice p {
    margin: 0 0 16px;
}

.cookie-notice button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Info Sections */
.info-section {
    padding: 80px 0;
    background: var(--color-white);
}

.info-section:nth-child(even) {
    background: var(--color-bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.info-content h2 {
    margin-bottom: 24px;
}

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

.info-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.pricing-header p {
    color: var(--color-text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pricing-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.pricing-price span {
    font-size: 20px;
    color: var(--color-text-light);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Page Specific Styles */
.page-header {
    padding: 120px 0 40px;
    background: var(--color-bg-light);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-content {
    padding: 80px 0;
}

.page-content .container {
    max-width: 800px;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--color-text-light);
}

.map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: var(--color-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header p {
    color: var(--color-text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(108, 135, 174, 0.2);
    border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}