/**
 * Anywave Creations - Website Styles
 * Professional Creative Theme with Wave Motifs
 */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --bg-dark: #0f172a;
    --bg-medium: #1e293b;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-dark: #334155;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
}

.logo-wave {
    font-size: 32px;
    color: var(--accent);
    animation: wave-float 3s ease-in-out infinite;
}

@keyframes wave-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fafc' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 24px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.service-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

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

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Education Section */
.education {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.edu-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.edu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.edu-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.edu-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

.edu-note {
    background: rgba(6, 182, 212, 0.1);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.service-block {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.service-icon {
    font-size: 36px;
}

.service-header h3 {
    font-size: 24px;
}

.service-content {
    padding-left: 52px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.service-category {
    margin-bottom: 20px;
}

.service-category h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-category p {
    font-size: 14px;
    color: var(--text-muted);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list.compact li {
    padding: 4px 0;
}

.check {
    color: var(--accent);
    font-weight: bold;
}

.service-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--bg-dark);
}

.projects .section-label {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
}

.projects .section-title {
    color: var(--text-light);
}

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

.project-card {
    background: var(--bg-medium);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.project-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: var(--primary);
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.project-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
    color: var(--accent);
}

.project-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}

.about-intro {
    font-size: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.about-philosophy {
    margin-bottom: 32px;
}

.about-philosophy h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-philosophy p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.principles h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.principle {
    padding: 16px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.principle strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--primary);
}

.principle p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.about-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.about-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.about-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Empowerment Section */
.empowerment {
    padding: 100px 0;
    background: white;
}

.empowerment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.empower-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.empower-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.empower-card.pricing {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: var(--primary);
}

.empower-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.empower-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.empower-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empower-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tools-section {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.tools-section h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tool-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.tool-icon {
    font-size: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-dark);
}

.contact .section-label {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
}

.contact .section-title {
    color: var(--text-light);
}

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

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.contact-item {
    padding: 20px;
    background: var(--bg-medium);
    border-radius: var(--radius-sm);
}

.contact-item strong {
    display: block;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.contact-item a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item small {
    color: rgba(255, 255, 255, 0.5);
}

.schedule-card {
    background: var(--bg-medium);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.schedule-card h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.schedule-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.partner-note {
    margin-top: 20px;
    font-size: 13px;
}

.partner-note a {
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--bg-medium);
    padding: 64px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}
/* ============================================
   Newsletter Section
   ============================================ */
.newsletter {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.newsletter-benefits li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-form-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-submit {
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
}

.newsletter-message {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Footer Section
   ============================================ */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-addresses {
    font-size: 12px !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .project-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-dark);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .service-content {
        padding-left: 0;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-services { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.5s; }
.hero-reflection { animation-delay: 0.1s; }
.hero-divider { animation-delay: 0.15s; }

/* Hero Reflection Styles */
.hero-reflection {
    margin-bottom: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reflection-text {
    font-size: clamp(20px, 3vw, 28px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
}

.reflection-question {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 32px auto;
    border-radius: 1px;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: var(--bg-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.philosophy-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.philosophy-card.primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: var(--primary);
    grid-column: span 2;
}

.philosophy-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.philosophy-statement {
    text-align: center;
    margin: 48px 0;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.philosophy-statement blockquote {
    font-size: clamp(20px, 3vw, 28px);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    font-style: italic;
}

.quote-context {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-muted);
}

.philosophy-clarity {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.philosophy-clarity h3 {
    color: var(--text-light);
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.clarity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.clarity-x {
    color: #ef4444;
    font-size: 18px;
    font-weight: bold;
}

/* Network Section */
.network {
    padding: 100px 0;
    background: white;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.network-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.network-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.network-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.network-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.network-statement {
    margin-bottom: 32px;
}

.statement-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.statement-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.statement-card p {
    font-size: 16px;
    color: var(--text-muted);
}

.network-visibility {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--accent);
}

.visibility-note {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

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

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

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    border-color: var(--primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tier {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    align-items: center;
}

.tier-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    grid-column: 1;
}

.tier-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    grid-row: 1 / 3;
    grid-column: 2;
}

.tier-timeline {
    font-size: 12px;
    color: var(--accent);
    text-align: right;
}

.pricing-note {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.pricing-terms {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* About Integration List */
.about-integration {
    margin-bottom: 32px;
}

.about-integration h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.integration-list {
    list-style: none;
    padding: 0;
}

.integration-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.integration-list li:last-child {
    border-bottom: none;
}

.integration-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive additions */
@media (max-width: 768px) {
    .philosophy-card.primary {
        grid-column: span 1;
    }

    .hero-reflection {
        padding: 20px;
    }

    .reflection-text {
        font-size: 18px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}
