@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-light: #2BD9B9;
    --primary-dark: #26BFA3;
    --text-primary: #FFFFFF;
    --text-secondary: #a0a0a0;
    --teal-gradient: linear-gradient(135deg, #2BD9B9 0%, #26BFA3 100%);
    --warning-color: #f59e0b;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

::-webkit-scrollbar {
  background: transparent;
  width: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #26BFA3;
  border-radius: 2px;
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1320px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 32px;
    z-index: 1000;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--teal-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #000;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-primary {
    background: var(--teal-gradient);
    color: #000;
}

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

.btn-primary i {
    font-size: 15px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.btn-secondary i {
    font-size: 15px;
}

.btn-cta {
    background: var(--teal-gradient);
    color: #000;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-cta i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
    background: #000000;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* Social Proof in Hero */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.proof-avatars {
    display: flex;
    padding-left: 10px;
}

.proof-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-left: -14px;
    background: #1a1a1a;
    object-fit: contain;
    padding: 6px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.proof-avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text p {
    margin: 0;
    line-height: 1.3;
    font-size: 14px;
    color: var(--text-primary);
}

.proof-text strong {
    color: var(--primary-light);
    font-weight: 700;
}

.proof-sub {
    color: var(--text-secondary) !important;
    font-size: 13px !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
    .hero-social-proof {
        justify-content: center;
        margin-top: 50px; /* Add space below floating phone */
        position: relative;
        z-index: 5; /* Ensure it's above background shapes */
    }

    .hide-desktop {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }
}

@media (min-width: 969px) {
    .hide-desktop {
        display: none;
    }

    .hide-mobile {
        display: flex;
    }
}


/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 2000px;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 45px;
    padding: 14px;
    
    position: relative;
    transform: rotateY(-20deg) rotateX(8deg) translateZ(50px);
    animation: floatPhone 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes floatPhone {
    0%, 100% {
        transform: rotateY(-20deg) rotateX(8deg) translateZ(50px) translateY(0);
    }
    50% {
        transform: rotateY(-20deg) rotateX(8deg) translateZ(50px) translateY(-20px);
    }
}

.phone-mockup:hover {
    transform: rotateY(-15deg) rotateX(5deg) translateZ(50px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f0f 0%, #000 100%);
    border-radius: 35px;
    padding: 24px 18px;
    overflow: hidden;
    position: relative;
}

.phone-time {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.notifications {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notification {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideInNotification 0.6s ease-out;
    animation-fill-mode: both;
}

.notification:nth-child(1) {
    animation-delay: 0.3s;
}

.notification:nth-child(2) {
    animation-delay: 0.5s;
    opacity: 0.85;
}

.notification:nth-child(3) {
    animation-delay: 0.7s;
    opacity: 0.7;
}

.notification:nth-child(4) {
    animation-delay: 0.9s;
    opacity: 0.55;
}

@keyframes slideInNotification {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        transform: translateX(0);
    }
}

.notification-icon {
    width: 42px;
    height: 42px;
    background: var(--teal-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-size: 13px;
}

.notification-text > div:first-child {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 3px;
}

.notification-value {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Hero Background Shape - Gradiente suave e natural */
.hero-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 160% 130% at 70% 50%,
        transparent 0%,
        transparent 35%,
        rgba(43, 217, 185, 0.02) 42%,
        rgba(43, 217, 185, 0.04) 48%,
        rgba(43, 217, 185, 0.07) 54%,
        rgba(43, 217, 185, 0.09) 60%,
        rgba(38, 191, 163, 0.08) 66%,
        rgba(38, 191, 163, 0.06) 72%,
        rgba(25, 25, 25, 0.3) 78%,
        rgba(18, 18, 18, 0.5) 84%,
        rgba(10, 10, 10, 0.7) 90%,
        rgba(5, 5, 5, 0.85) 95%,
        #000000 100%
    );
    filter: blur(130px);
}

.hero-bg-shape::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 75%;
    height: 100%;
    background: radial-gradient(ellipse at 45% 50%,
        rgba(43, 217, 185, 0.12) 0%,
        rgba(43, 217, 185, 0.08) 20%,
        rgba(38, 191, 163, 0.06) 35%,
        rgba(43, 217, 185, 0.04) 50%,
        rgba(43, 217, 185, 0.02) 65%,
        rgba(25, 25, 25, 0.2) 78%,
        rgba(15, 15, 15, 0.4) 88%,
        transparent 100%
    );
    filter: blur(150px);
}

/* Why Section */
.why-section {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Why Section Background Shape */
.why-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse at 30% 50%,
        rgba(43, 217, 185, 0.08) 0%,
        rgba(38, 191, 163, 0.06) 25%,
        rgba(43, 217, 185, 0.04) 45%,
        rgba(43, 217, 185, 0.02) 65%,
        rgba(15, 15, 15, 0.3) 82%,
        transparent 100%
    );
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at 70% 50%,
        rgba(43, 217, 185, 0.06) 0%,
        rgba(38, 191, 163, 0.05) 30%,
        rgba(43, 217, 185, 0.03) 55%,
        rgba(43, 217, 185, 0.015) 75%,
        rgba(15, 15, 15, 0.25) 88%,
        transparent 100%
    );
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}

.why-section > .container {
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.why-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(43, 217, 185, 0.2);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(43, 217, 185, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    padding-left: 32px;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.accordion-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon i {
    font-size: 24px;
    color: #000;
}

.accordion-title-group h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.accordion-title-group p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.accordion-arrow {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 28px 24px;
}

.accordion-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Devs Section */
.devs-section {
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Devs Section - SEM Background Shape */

.devs-section > .container {
    position: relative;
    z-index: 1;
}

.devs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.code-block {
    position: relative;
    border: 1px solid var(--border-color);
    background: rgba(18, 18, 18, 0.9);
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
}

.code-block .code-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
    gap: 8px;
}

.code-block .code-title {
    font-size: 12px;
    color: var(--text-secondary);
}

.code-block pre {
    margin: 0;
    padding: 12px;
    overflow: auto;
    color: #f1f5f9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.7;
}

.code-block .btn-copy {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 6px;
    background: transparent;
    border: 0;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.code-block .btn-copy:hover,
.code-block .btn-copy:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    outline: none;
}

.code-block .btn-copy i { 
    font-size: 16px; 
}

.devs-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.devs-kicker {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.devs-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.devs-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

.btn-docs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--teal-gradient);
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Social Section - SEM Background Shape */

.social-section > .container {
    position: relative;
    z-index: 1;
}

.social-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.social-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.social-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(43, 217, 185, 0.2);
    transform: translateY(-2px);
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.social-icon {
    width: 46px;
    height: 46px;
    background: var(--teal-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 22px;
    color: #000;
}

.social-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.social-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.social-card-actions {
    display: flex;
    gap: 10px;
}

.social-card a.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
}

/* Footer - SEM gradientes/shapes */
.footer {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    max-width: 520px;
}

.footer-logo {
    width: 140px;
    display: block;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

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

.footer-links,
.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social i {
    font-size: 18px;
    color: var(--primary-dark);
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0 26px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .header {
        width: calc(100% - 60px);
        top: 15px;
    }

    .hero-container {
        gap: 60px;
    }

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

@media (max-width: 968px) {
    .header {
        width: calc(100% - 40px);
        padding: 10px 24px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .phone-mockup {
        width: 300px;
        height: 600px;
        transform: none;
    }

    .phone-mockup:hover {
        transform: none;
    }

    @keyframes floatPhone {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }

    .why-section {
        padding: 80px 0;
    }

    .why-title {
        font-size: 36px;
    }

    .why-description {
        font-size: 16px;
    }

    .accordion-header {
        padding: 20px 20px;
    }

    .accordion-header:hover {
        padding-left: 20px;
    }

    .accordion-header-content {
        gap: 16px;
    }

    .accordion-icon {
        width: 42px;
        height: 42px;
    }

    .accordion-icon i {
        font-size: 20px;
    }

    .accordion-title-group h3 {
        font-size: 18px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-content.active {
        padding: 0 20px 20px;
    }

    .devs-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    
    .devs-content { 
        order: 1; 
    }
    
    .devs-grid .code-block { 
        order: 2; 
    }

    .social-title {
        font-size: 36px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top .container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .logo-text {
        width: 100px;
    }

    .header {
        width: calc(100% - 30px);
        padding: 10px 20px;
        top: 10px;
    }

    .nav {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 14px;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
    }

    .phone-time {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .notification {
        padding: 12px;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-description {
        font-size: 15px;
    }

    .accordion-header {
        padding: 16px;
    }

    .accordion-header-content {
        gap: 12px;
    }

    .accordion-icon {
        width: 38px;
        height: 38px;
    }

    .accordion-icon i {
        font-size: 18px;
    }

    .accordion-title-group h3 {
        font-size: 16px;
    }

    .accordion-title-group p {
        font-size: 13px;
    }

    .accordion-content p {
        font-size: 14px;
    }

    .devs-section { 
        padding: 60px 0 30px 0; 
    }
    
    .code-block pre { 
        font-size: 13px; 
        max-height: 280px; 
    }
    
    .devs-title { 
        font-size: 28px; 
    }
    
    .btn-docs { 
        width: 100%; 
        justify-content: center; 
    }

    .social-section {
        padding: 70px 0;
    }
    
    .social-title {
        font-size: 28px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Awards Section */
.awards-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Background shape similar to other sections */
.awards-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.awards-section > .container {
    position: relative;
    z-index: 1;
}

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.awards-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.awards-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    /* Allow overlap */
}

.award-item {
    text-align: center;
    transition: all 0.4s ease;
    width: 240px;
    position: relative;
    flex-shrink: 0;
}

.award-card-bg {
    border-radius: 4px; /* More rectangular frame look */
    padding: 24px 16px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Inner border effect for "Frame" look */
.award-card-bg::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    pointer-events: none;
}

/* Specific styling for the podium effect */

/* Center (Diamond) */
.award-item:nth-child(3) {
    z-index: 10;
    transform: scale(1.15) translateY(0);
    margin: 0 -10px;
}

/* Immediate Neighbors (Gold, Emerald) */
.award-item:nth-child(2),
.award-item:nth-child(4) {
    z-index: 5;
    transform: scale(1.0) translateY(10px);
    filter: brightness(0.85);
}

.award-item:nth-child(2) { margin-right: -30px; }
.award-item:nth-child(4) { margin-left: -30px; }

/* Outer Neighbors (Silver, Bronze) */
.award-item:nth-child(1),
.award-item:nth-child(5) {
    z-index: 1;
    transform: scale(0.85) translateY(20px);
    filter: brightness(0.6);
}

.award-item:nth-child(1) { margin-right: -40px; }
.award-item:nth-child(5) { margin-left: -40px; }


/* Hover Effects */
.award-item:hover {
    transform: translateY(-10px) scale(1.05) !important; /* Override the scale slightly on hover */
    filter: brightness(1.1) !important;
    z-index: 20;
}

.award-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.award-item:hover .award-image {
    transform: scale(1.05);
}

.award-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-goal {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 700;
    background: rgba(43, 217, 185, 0.08);
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(43, 217, 185, 0.1);
}

/* Responsive for Awards */
@media (max-width: 1024px) {
    .award-item {
        width: 180px;
    }
    .award-card-bg {
        height: 260px;
        padding: 16px;
    }
    .award-image {
        max-width: 120px;
    }
    .award-name {
        font-size: 16px;
    }
    .award-goal {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 12.5vw 40px 12.5vw; /* Center the 75vw card */
        gap: 10px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .awards-grid::-webkit-scrollbar {
        height: 4px;
        display: none; /* Hide scrollbar for cleaner look */
    }

    .awards-grid::-webkit-scrollbar-thumb {
        background: transparent !important;
        border-radius: 4px;
    }

    .award-item, 
    .award-item:nth-child(n) {
        width: 75vw; /* Slightly narrower to see edges of next cards */
        min-width: 75vw;
        margin: 0 !important;
        transform: none !important;
        filter: none !important;
        scroll-snap-align: center;
        transition: all 0.3s ease;
    }

    .award-item:nth-child(3) {
        grid-column: auto;
        order: 0;
    }
    
    .award-card-bg {
        height: auto;
        min-height: 280px;
        padding: 30px 20px;
    }

    .award-image {
        max-width: 180px; /* Bigger image on mobile */
        margin-bottom: 20px;
    }

    .award-name {
        font-size: 22px; /* Bigger text */
    }
}