/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(270, 50%, 15%);
    --primary: hsl(270, 60%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(280, 80%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --muted: hsl(270, 20%, 94%);
    --muted-foreground: hsl(270, 15%, 45%);
    --border: hsl(270, 20%, 90%);
    --teal: hsl(280, 50%, 55%);
    --teal-light: hsl(280, 40%, 70%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-foreground);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--foreground);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 4px 20px hsla(280, 80%, 60%, 0.3);
}

.btn-accent:hover {
    transform: scale(1.02);
}

.btn-hero {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 20px hsla(280, 80%, 60%, 0.3);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-hero-outline:hover {
    background: var(--primary-foreground);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(270, 70%, 20%) 0%, hsl(270, 60%, 35%) 50%, hsl(280, 50%, 45%) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, hsl(0, 0%, 100%) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
}

.hero-orb-1 {
    position: absolute;
    top: 25%;
    left: -8rem;
    width: 24rem;
    height: 24rem;
    background: hsla(280, 80%, 60%, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-2 {
    position: absolute;
    bottom: 25%;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    background: hsla(280, 50%, 55%, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    max-width: 64rem;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease-out 0.1s backwards;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(0, 0%, 100%, 0.9);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out 0.2s backwards;
}

.text-gradient {
    background: linear-gradient(135deg, hsl(280, 80%, 60%) 0%, hsl(290, 70%, 70%) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2rem;
    animation: fadeUp 0.6s ease-out 0.3s backwards;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease-out 0.4s backwards;
}

.domain-tag {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(0, 0%, 100%, 0.7);
    background: hsla(0, 0%, 100%, 0.05);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 9999px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeUp 0.6s ease-out 0.5s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    animation: fadeUp 0.6s ease-out 0.6s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.scroll-wheel {
    width: 6px;
    height: 12px;
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 3px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin: 1rem 0 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* About Section */
.about {
    background: var(--background);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px hsla(270, 60%, 35%, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 8px 30px hsla(270, 60%, 35%, 0.12);
    border-color: hsla(280, 80%, 60%, 0.3);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--muted-foreground);
}

.principles-section {
    background: linear-gradient(135deg, hsl(270, 30%, 98%) 0%, hsl(270, 20%, 94%) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.principle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.principle-tag {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.principles-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    background: hsla(270, 60%, 35%, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.principles-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--primary);
}

/* Domains Section */
.domains {
    background: linear-gradient(135deg, hsl(270, 30%, 98%) 0%, hsl(270, 20%, 94%) 100%);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.domain-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px hsla(270, 60%, 35%, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s;
    overflow: hidden;
}

.domain-card:hover {
    box-shadow: 0 8px 30px hsla(270, 60%, 35%, 0.12);
    border-color: hsla(280, 80%, 60%, 0.3);
}

.domain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(280, 80%, 60%, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.domain-card:hover::before {
    opacity: 1;
}

.domain-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.domain-card:hover .domain-icon {
    transform: scale(1.1);
}

.icon-climate {
    background: var(--teal);
}

.icon-ai {
    background: hsl(270, 50%, 50%);
}

.icon-democracy {
    background: var(--primary);
}

.icon-gender {
    background: var(--accent);
}

.icon-mental {
    background: var(--teal-light);
}

.icon-corporate {
    background: hsl(280, 85%, 45%);
}

/* NETRI Section */
.netri {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    color: var(--primary-foreground);
}

.netri::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, hsl(0, 0%, 100%) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.05;
}

.netri-orb-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsla(280, 80%, 60%, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.netri-orb-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: hsla(280, 50%, 55%, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.netri-content {
    position: relative;
    z-index: 10;
}

.netri-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.netri .section-label {
    color: var(--accent);
}

.netri .section-title {
    color: var(--primary-foreground);
}

.netri-text {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    background: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(280, 80%, 60%, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsla(280, 80%, 60%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.partnership-note {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    text-align: center;
}

.partnership-text {
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 48rem;
    margin: 0 auto;
}

.partnership-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Why Us Section */
.why-us {
    background: var(--background);
}

.reason-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.reason-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reason-icon-small {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reason-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.reason-visual {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(270, 30%, 98%) 0%, hsl(270, 20%, 94%) 100%);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.reason-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(270, 60%, 35%, 0.05) 0%, hsla(280, 80%, 60%, 0.05) 100%);
}

.reason-visual-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 1rem;
    background: hsla(270, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.5s;
}

.reason-visual:hover .reason-visual-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.cta-box {
    margin-top: 5rem;
    text-align: center;
    background: linear-gradient(135deg, hsl(270, 30%, 98%) 0%, hsl(270, 20%, 94%) 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
}

.cta-box h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Testimonials Section */
.testimonials {
    background: var(--primary);
    color: var(--primary-foreground);
}

.testimonials .section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimonials .section-title {
    color: var(--primary-foreground);
}

.testimonials .section-description {
    color: hsla(0, 0%, 100%, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonial-card {
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: hsla(0, 0%, 100%, 0.15);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
    font-weight: 600;
}

.author-name {
    color: var(--primary-foreground);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, hsl(270, 30%, 98%) 0%, hsl(270, 20%, 94%) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px hsla(270, 60%, 35%, 0.12);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input {
    height: 48px;
}

.form-textarea {
    min-height: 150px;
    resize: none;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-info-subtext {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.map-placeholder {
    aspect-ratio: 16/9;
    border-radius: 1rem;
    background: hsla(270, 60%, 35%, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-content {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--accent-foreground);
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: all 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Icons (using Unicode symbols as placeholders) */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    section {
        padding: 8rem 0;
    }

    .reason-item {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .reason-item:nth-child(even) {
        direction: rtl;
    }

    .reason-item:nth-child(even)>* {
        direction: ltr;
    }

    .netri-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .principles-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1023px) {
    nav {
        display: none;
    }

    .header-content .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.3s;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.mobile-menu nav a {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.mobile-menu .btn {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}


/* Notification Styles - Add this to your CSS */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success svg {
    color: #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error svg {
    color: #ef4444;
}

.notification span {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}