/**
 * OIDR Theme - Custom Styles
 * Additional styles for all sections
 */

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.site-branding .site-logo,
.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-branding .site-title-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.site-branding .custom-logo {
    height: 40px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-secondary);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a6e 100%);
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(141, 15, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__logo {
    margin-bottom: 32px;
}

.hero-logo {
    display: inline-block;
}

.hero-logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.hero .hero-logo {
    animation: float 4s ease-in-out infinite;
}

.hero__title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__content {
    padding-right: 40px;
}

.about__text {
    color: var(--color-text-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    margin-top: 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--color-primary);
}

.about__feature svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.about__image {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--color-secondary);
    opacity: 0.1;
    border-radius: var(--border-radius);
    z-index: -1;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .card__icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #a51229 100%);
}

.service-card .card__title {
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-card {
    text-align: center;
    padding: 40px 32px;
}

.why-card__number {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card__title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.why-card__text {
    color: var(--color-text-light);
    line-height: 1.7;
}

.why__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--color-border);
}

.why__stat {
    text-align: center;
}

.why__stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.why__stat-label {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

.project-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
}

.project-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card__content {
    padding: 24px;
}

.project-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.project-card__text {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-card__link:hover {
    gap: 12px;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team {
    text-align: center;
}

.team__content {
    max-width: 800px;
    margin: 0 auto;
}

.team .section__title {
    margin-bottom: 24px;
}

.team__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.team__values {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.team__value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.team__value svg {
    color: var(--color-secondary);
}

.team__cta {
    margin-top: 40px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__info .section__title {
    margin-bottom: 20px;
}

.contact__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__details {
    margin-bottom: 32px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.contact__item svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact__item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__item a:hover {
    color: var(--color-white);
}

.contact__social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__form .form-group {
    margin-bottom: 24px;
}

.contact__form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-white);
    font-size: 14px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact__form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form .btn {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo a:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   SCHÜLERGENOSSENSCHAFT PAGE
   ======================================== */

/* Hero Section */
.sg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.sg-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sg-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a365d 0%, #0f172a 100%);
}

.sg-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(141, 15, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sg-hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.sg-hero__particles::before,
.sg-hero__particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 15, 34, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.sg-hero__particles::before {
    top: -100px;
    right: -100px;
}

.sg-hero__particles::after {
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 50px) scale(1.1);
    }

    50% {
        transform: translate(0, 100px) scale(1);
    }

    75% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.sg-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sg-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(141, 15, 34, 0.2);
    border: 1px solid rgba(141, 15, 34, 0.3);
    border-radius: 30px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

.sg-hero__title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.sg-hero__title .title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.sg-hero__title .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.sg-hero__title .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.sg-hero__title .title-line.accent {
    color: var(--color-secondary);
}

.sg-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.sg-hero__scroll {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.scroll-link:hover {
    color: var(--color-white);
    gap: 12px;
}

.scroll-link svg {
    animation: bounce 2s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.sg-section {
    padding: 100px 0;
    position: relative;
}

.sg-section--dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.sg-section--accent {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sg-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.sg-section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.sg-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sg-section--dark .sg-section__title {
    color: var(--color-white);
}

.sg-section__intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.sg-section--dark .sg-section__intro {
    color: rgba(255, 255, 255, 0.8);
}

/* Team Section */
.sg-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.sg-team__member {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.sg-team__member.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.sg-team__image {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-team__placeholder {
    color: var(--color-text-light);
    opacity: 0.5;
}

.sg-team__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(141, 15, 34, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sg-team__member:hover .sg-team__overlay {
    opacity: 1;
}

.sg-team__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.sg-team__role {
    font-size: 14px;
    color: var(--color-text-light);
}

.sg-team__absent {
    text-align: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius);
    max-width: 500px;
    margin: 0 auto;
}

.sg-team__absent-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.sg-team__absent-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sg-team__absent-member {
    font-size: 15px;
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Rechtsform Section */
.sg-rechtsform {
    text-align: center;
    padding: 40px 0;
}

.sg-rechtsform__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
    animation: pulse 3s infinite ease-in-out;
}

.sg-rechtsform__icon svg {
    color: var(--color-white);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.sg-rechtsform__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.sg-rechtsform__text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.sg-rechtsform__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sg-rechtsform__link:hover {
    color: var(--color-white);
    gap: 10px;
}

/* Info Cards */
.sg-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sg-info__card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.sg-info__card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.sg-info__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.sg-info__card--wide {
    grid-column: span 2;
}

.sg-info__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #a51229 100%);
    margin-bottom: 20px;
}

.sg-info__card-icon svg {
    color: var(--color-white);
}

.sg-info__card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.sg-info__card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Why Section */
.sg-why__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sg-why__content {
    max-width: 900px;
    margin: 0 auto;
}

.sg-why__text-block {
    text-align: center;
    margin-bottom: 40px;
}

.sg-why__text-block p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.sg-why__requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.sg-why__requirement {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sg-why__requirement:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sg-why__requirement-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(141, 15, 34, 0.1);
}

.sg-why__requirement-icon svg {
    color: var(--color-secondary);
}

.sg-why__requirement-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.sg-why__requirement-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.sg-why__conclusion {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a6e 100%);
    border-radius: var(--border-radius);
    color: var(--color-white);
}

.sg-why__conclusion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.sg-why__conclusion-icon svg {
    color: var(--color-secondary);
}

.sg-why__conclusion h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.sg-why__conclusion p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 12px;
}

.sg-why__conclusion-highlight {
    font-size: 22px !important;
    font-weight: 600;
    color: var(--color-white) !important;
    margin-top: 24px !important;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.sg-cta {
    position: relative;
    padding: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.sg-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a365d 0%, #0f172a 100%);
    z-index: 0;
}

.sg-cta__shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 15, 34, 0.2) 0%, transparent 70%);
}

.sg-cta__shape--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.sg-cta__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: float 20s infinite ease-in-out reverse;
}

.sg-cta__shape--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s infinite ease-in-out;
}

.sg-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.sg-cta__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.sg-cta__text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
}

.sg-cta__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sg-cta__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.sg-cta__step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.sg-cta__step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
}

.sg-cta__step-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.sg-cta__step-arrow {
    color: rgba(255, 255, 255, 0.4);
}

.sg-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.sg-cta__button:hover {
    background: #a51229;
    gap: 16px;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .sg-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-info__card--wide {
        grid-column: span 2;
    }

    .sg-why__requirements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sg-hero {
        padding: 100px 0 60px;
    }

    .sg-section {
        padding: 60px 0;
    }

    .sg-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sg-team__image {
        width: 120px;
        height: 120px;
    }

    .sg-info__grid {
        grid-template-columns: 1fr;
    }

    .sg-info__card--wide {
        grid-column: span 1;
    }

    .sg-cta {
        padding: 40px 24px;
    }

    .sg-cta__steps {
        flex-direction: column;
    }

    .sg-cta__step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .sg-team__grid {
        grid-template-columns: 1fr;
    }

    .sg-rechtsform__title {
        font-size: 28px;
    }

    .sg-rechtsform__text {
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {

    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__content {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .about__image {
        order: -1;
    }

    .why__stats {
        flex-direction: column;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .team__values {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .contact__form-wrapper {
        padding: 24px;
    }

    .section {
        padding: 48px 0;
    }
}

/* ========================================
   DYNAMIC ISLAND HEADER
   ======================================== */

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2);
}

.trail-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
}

.dynamic-island {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.island-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(11, 48, 65, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    justify-content: space-between;
}

.dynamic-island.expanded .island-pill {
    border-radius: 28px;
    padding: 14px 24px;
    min-width: 520px;
}

.island-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.island-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.island-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(141, 15, 34, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(141, 15, 34, 0);
    }
}

.island-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s;
}

.island-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
}

.island-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.island-nav {
    display: flex;
    gap: 6px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.4s;
}

.dynamic-island.expanded .island-nav {
    opacity: 1;
    width: auto;
}

.island-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.2s;
}

.island-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.island-cta {
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.island-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(141, 15, 34, 0.4);
}

.island-toggle {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.island-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.island-toggle svg {
    width: 14px;
    height: 14px;
    fill: white;
    transition: transform 0.3s;
}

.dynamic-island.expanded .island-toggle svg {
    transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 48, 65, 0.98);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-display);
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--color-secondary);
    transform: scale(1.1);
}

/* ========================================
   NEW HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b3041 0%, #1e4a5f 50%, #0b3041 100%);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: rgba(141, 15, 34, 0.25);
    top: -250px;
    right: -150px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(30, 74, 95, 0.35);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 72px);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s;
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    color: white;
    box-shadow: 0 4px 30px rgba(141, 15, 34, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(141, 15, 34, 0.5);
}

.hero-cta--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.hero-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-white);
}

.section--dark {
    background: var(--color-primary);
    color: white;
}

.section--accent {
    background: var(--color-accent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
}

/* ========================================
   FEATURES GRID (ANGEBOT)
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(11, 48, 65, 0.06);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 48, 65, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ========================================
   TEAM GRID
   ======================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(11, 48, 65, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 48, 65, 0.12);
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.team-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.team-card p {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 600;
}

.team-card span {
    font-size: 12px;
    color: var(--color-text-light);
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}

/* ========================================
   PRESS GRID
   ======================================== */

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.press-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(11, 48, 65, 0.08);
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 48, 65, 0.12);
}

.press-source {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    background: linear-gradient(135deg, #0b3041 0%, #1e4a5f 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-banner .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s;
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: linear-gradient(135deg, #0b3041 0%, #1e4a5f 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(141, 15, 34, 0.2);
    top: -100px;
    right: -100px;
}

.contact-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -50px;
    left: -50px;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 28px;
}

.contact-details {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

/* Contact Forms */
.contact-forms {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-wrapper,
.meeting-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(20px);
}

.contact-form-wrapper h3,
.meeting-form-wrapper h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--color-primary);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .btn,
.meeting-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form .btn {
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    color: white;
}

.meeting-form .btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .btn:hover,
.meeting-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--color-primary);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 36px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo a {
    color: white;
    text-decoration: none;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-location svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--color-secondary);
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b3041 0%, #1e4a5f 100%);
}

.page-hero--small {
    min-height: 30vh;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.page-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(141, 15, 34, 0.2);
    top: -200px;
    right: -150px;
}

.page-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -100px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.about-content p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 500;
}

.about-feature svg {
    color: var(--color-secondary);
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Supporters */
.supporters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.supporter-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.supporter-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.supporter-icon svg {
    color: var(--color-primary);
}

.supporter-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.supporter-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.why-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detailed-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detailed-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detailed-icon svg {
    color: white;
}

.service-detailed-content h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-detailed-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detailed-content ul {
    list-style: none;
}

.service-detailed-content li {
    font-size: 14px;
    color: var(--color-text-light);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-detailed-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.process-step-content h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Press Coverage */
.press-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.press-coverage-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.press-coverage-source {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.press-coverage-date {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.press-coverage-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.press-coverage-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.press-coverage-link {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.press-contact {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.press-contact h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.press-contact-info {
    margin-top: 20px;
}

.press-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.press-contact-item a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
}

.press-downloads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.press-download-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.press-download-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.press-download-icon svg {
    color: var(--color-primary);
}

.press-download-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.press-download-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.legal-block h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.legal-block p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block a {
    color: var(--color-secondary);
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-block li {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-block--last {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: linear-gradient(135deg, #8d0f22 0%, #b81830 100%);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(141, 15, 34, 0.3);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {

    .hero .container,
    .contact .container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid,
    .features-grid,
    .press-grid,
    .supporters-grid,
    .why-grid,
    .services-detailed,
    .process-timeline,
    .press-coverage-grid,
    .press-downloads {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dynamic-island.expanded .island-pill {
        min-width: 90%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .team-grid,
    .features-grid,
    .press-grid,
    .supporters-grid,
    .why-grid,
    .services-detailed,
    .press-coverage-grid,
    .press-downloads {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .island-nav {
        display: none !important;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}

/* ========================================
   ADDITIONAL ANIMATIONS
   ======================================== */

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element--slow {
    animation-duration: 8s;
}

.floating-element--fast {
    animation-duration: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Glow */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(141, 15, 34, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(141, 15, 34, 0.6);
    }
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Scale on Hover */
.scale-hover {
    transition: transform 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Rotate on Hover */
.rotate-hover {
    transition: transform 0.3s ease;
}

.rotate-hover:hover {
    transform: rotate(5deg);
}

/* Tilt Card */
.tilt-card {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* Counter Animation */
.counter-section {
    /* Container for counters */
}

.counter {
    display: inline-block;
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-primary);
}

.counter--large {
    font-size: 4rem;
}

.counter--small {
    font-size: 2rem;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-reveal.text-revealed span {
    transform: translateY(0);
}

/* Animated Underline */
.animated-underline {
    position: relative;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.animated-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Magnetic Button */
.magnetic-btn {
    transition: transform 0.3s ease;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

/* Animated Grid Item */
.animated-grid {
    /* Container for animated grid items */
}

.grid-item {
    transition: all 0.3s ease;
}

/* Stagger Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Focus Animation */
.focus-scale:focus {
    transform: scale(1.02);
    outline: none;
}

/* Icon Pulse */
.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Border Animation */
.border-animate {
    position: relative;
}

.border-animate::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-animate:hover::before {
    opacity: 1;
}

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.card-shine:hover::before {
    left: 100%;
}

/* Loading Dots */
.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Hero Entrance Animation */
.hero-entrance {
    animation: heroEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Zoom on Hover */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* Background Reveal */
.bg-reveal {
    position: relative;
}

.bg-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.bg-reveal.active::before {
    transform: scaleY(1);
    transform-origin: top;
}