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

:root {
    /* Color Palette */
    --primary-accent: #a94224;
    --off-white: #f9f6f4;
    --warm-beige: #e8ded8;
    --charcoal: #2a2a2a;
    --soft-grey: #a8a8a8;
    --empowerment-purple: #7b3f8c;
    --bold-pink: #d95b8f;
    --earthy-gold: #d1a85c;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --element-spacing: 2rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--off-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-accent);
    line-height: 1.2;
}

h3,
h4 {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--charcoal);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 246, 244, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--empowerment-purple) 50%, var(--bold-pink) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

/* Background Shapes */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(15px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-part-1 {
    display: block;
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.title-part-2 {
    display: block;
    background: linear-gradient(45deg, #ffffff, var(--earthy-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--off-white);
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-quote {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-accent);
    line-height: 1.5;
    min-height: 3rem;
    transition: all 0.5s ease;
    animation: fadeInUp 1s ease-out 1s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.rotating-quote {
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1.2s ease-out 1.4s both;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.hero-illustration:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.silhouette {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: silhouetteFloat 4s ease-in-out infinite;
}

.silhouette-1 {
    width: 60px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.silhouette-2 {
    width: 50px;
    height: 70px;
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.silhouette-3 {
    width: 55px;
    height: 75px;
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    font-size: 2rem;
    display: block;
    animation: bounceEnhanced 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceEnhanced {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fistEntrance {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(-45deg);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
    }

    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes fistPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes silhouetteFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.2;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-subheading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon,
.btn-text,
.btn-arrow {
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--primary-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(169, 66, 36, 0.4);
}

.btn-primary:hover {
    background: #8a3620;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 66, 36, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    color: white;
    text-decoration-color: white;
    transform: translateY(-2px);
}

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

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

/* Sections */
.intro,
.highlights {
    padding: var(--section-padding);
}

.intro {
    background: white;
    text-align: center;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Highlights Grid */
.highlights {
    background: var(--warm-beige);
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-subheading);
}

.card-link:hover {
    text-decoration: underline;
}

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

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--earthy-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--soft-grey);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid var(--soft-grey);
    padding-top: 1rem;
    text-align: center;
    color: var(--soft-grey);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--off-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo {
        height: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-part-1,
    .title-part-2 {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: var(--off-white);
    }

    .hero-quote {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--primary-accent);
        padding-top: 1rem;
        text-align: center;
    }

    .hero-illustration {
        height: 300px;
        max-width: 350px;
    }

    .hero-illustration::before {
        font-size: 6rem;
    }

    .shape {
        display: none;
        /* Hide floating shapes on mobile for performance */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        color: var(--off-white);
    }

    .hero-quote {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .btn {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    .hero-illustration {
        height: 250px;
        max-width: 300px;
    }

    .hero-illustration::before {
        font-size: 4rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
}/* Our
 Growing Global Network Section */
.global-network {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--empowerment-purple) 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.world-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='60' cy='30' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='90' cy='30' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='30' cy='60' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='60' cy='60' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='90' cy='60' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='30' cy='90' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='60' cy='90' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='90' cy='90' r='2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Cpath d='M30,30 L60,60 M60,30 L90,60 M30,60 L60,90 M60,60 L90,30' stroke-dasharray='2,6' stroke-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.7;
}

.network-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.network-header {
    margin-bottom: 6rem;
}

.network-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.title-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(209, 168, 92, 0.6), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.network-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) {
    animation-delay: 0ms;
}

.stat-item:nth-child(2) {
    animation-delay: 100ms;
}

.stat-item:nth-child(3) {
    animation-delay: 200ms;
}

.stat-item:nth-child(4) {
    animation-delay: 300ms;
}

@media (prefers-reduced-motion: no-preference) {
    .stat-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    }

    .stat-item:hover .stat-icon {
        transform: scale(1.04);
    }
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--earthy-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.network-action {
    text-align: center;
}

.join-network-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--bold-pink) 100%);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    font-family: var(--font-subheading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 12px 30px rgba(169, 66, 36, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.join-network-btn:focus {
    outline: 2px solid var(--earthy-gold);
    outline-offset: 2px;
}

.join-network-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .join-network-btn:hover::before {
        left: 100%;
    }

    .join-network-btn:hover {
        background: linear-gradient(135deg, var(--bold-pink) 0%, var(--primary-accent) 100%);
        transform: translateY(-2px);
        box-shadow:
            0 16px 40px rgba(169, 66, 36, 0.4),
            0 0 30px rgba(169, 66, 36, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-icon {
    font-size: 1.1em;
}

.btn-text {
    font-weight: 700;
}

/* Responsive Design for Global Network */
@media (max-width: 1200px) {
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 800px;
    }
}

@media (max-width: 1024px) {
    .global-network {
        padding: 6rem 0;
    }

    .network-header {
        margin-bottom: 5rem;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 4rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .join-network-btn {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .global-network {
        padding: 4rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .network-content {
        padding: 0 1.5rem;
    }

    .network-header {
        margin-bottom: 4rem;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 3rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .join-network-btn {
        width: calc(100% - 48px);
        max-width: 400px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .global-network {
        padding: 3rem 0;
    }

    .network-header {
        margin-bottom: 3rem;
    }

    .title-accent {
        width: 80px;
        height: 3px;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 2.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .join-network-btn {
        width: calc(100% - 48px);
        max-width: 350px;
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
    }
}