/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3d3d52;
    --primary-foreground: #fafafa;
    --background: #fcfcfc;
    --foreground: #333338;
    --card: #ffffff;
    --card-foreground: #333338;
    --secondary: #f5f5f7;
    --secondary-foreground: #404045;
    --muted: #f2f2f4;
    --muted-foreground: #7f7f82;
    --border: #e6e6e8;
    --radius: 0.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

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

.icon {
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    padding: 5rem 0 8rem;
    background-color: var(--background);
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
    }
    
    .hero h1 {
        font-size: 3.75rem;
    }
    
    .hero-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0 7rem;
    background-color: rgba(245, 245, 247, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: rgba(61, 61, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--card-foreground);
}

.benefit-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Trust Section */
.trust {
    padding: 5rem 0 7rem;
    background-color: var(--background);
}

.trust-content {
    max-width: 56rem;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.25rem;
}

.trust-item p {
    font-size: 1.125rem;
    color: var(--foreground);
}

/* Contact Section */
.contact {
    padding: 5rem 0 7rem;
    background-color: rgba(245, 245, 247, 0.3);
}

.contact-content {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-card {
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 3rem;
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: rgba(61, 61, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: var(--primary);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.2s;
    word-break: break-all;
}

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

.contact-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-cta-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(252, 252, 252, 0.8);
    line-height: 1.7;
    word-break: break-all;
}

.footer-col a {
    color: rgba(252, 252, 252, 0.8);
    transition: color 0.2s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--background);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(252, 252, 252, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(252, 252, 252, 0.6);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
