@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #fafafa;
    color: #1a1625;
    padding-top: 70px;
}

.hero-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 22, 37, 0.85) 0%,
        rgba(124, 58, 237, 0.6) 50%,
        rgba(26, 22, 37, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.hero-label-code {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hero-label-text {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terminal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(250, 250, 250, 0.97) 0px,
            rgba(250, 250, 250, 0.97) 24px,
            rgba(245, 245, 245, 0.5) 24px,
            rgba(245, 245, 245, 0.5) 25px
        );
    pointer-events: none;
    z-index: 0;
}

.hero-code-snippets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 2;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    white-space: pre;
    overflow: hidden;
}

.hero-code-snippets::before {
    content: 'const fredDigital = { \A\A  services: [ \A    "branding", \A    "corporate-services", \A    "websites", \A    "e-commerce" \A  ], \A\A  location: "Philippines", \A  expertise: "local + global", \A\A  build(client) { \A    return this.createSolutions(client); \A  } \A}; \A\Aasync function innovate() { \A  const solutions = await fredDigital.build(requirements); \A  return solutions.deliver(); \A} \A\Aclass BusinessSolution { \A  constructor(config) { \A    this.branding = config.branding; \A    this.services = config.services; \A    this.infrastructure = config.infrastructure; \A  } \A\A  launch() { \A    console.log("Empowering your business..."); \A    return this.deploy(); \A  } \A}';
    white-space: pre;
    position: absolute;
    animation: codeScroll 60s linear infinite;
}

.hero-code-snippets::after {
    content: 'export const fredDigitalAPI = { \A\A  async createBranding(options) { \A    return await fetch("/api/branding", { \A      method: "POST", \A      body: JSON.stringify(options) \A    }); \A  }, \A\A  async buildWebsite(specs) { \A    const website = new Website(specs); \A    return website.deploy(); \A  }, \A\A  async setupEcommerce(config) { \A    return new EcommercePlatform(config); \A  } \A}; \A\Aconst pipeline = [ \A  fredDigitalAPI.createBranding, \A  fredDigitalAPI.buildWebsite, \A  fredDigitalAPI.setupEcommerce \A]; \A\Aasync function deliverSolution(client) { \A  for (const step of pipeline) { \A    await step(client.requirements); \A  } \A}';
    white-space: pre;
    position: absolute;
    top: -100%;
    left: 60%;
    animation: codeScroll 80s linear infinite;
    animation-delay: -30s;
}

@keyframes codeScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

.cursor-blink {
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(124, 58, 237, 0.3);
    top: 0;
    left: 0;
    animation: cursorBlink 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes cursorBlink {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100vw);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.console-prompt {
    margin-bottom: 3rem;
    text-align: left;
    font-size: 1.1rem;
    font-family: 'Fira Code', monospace;
    color: #ffffff;
    min-height: 30px;
}

.prompt-sign {
    color: #ffffff;
    margin-right: 0.5rem;
}

.typing-text {
    color: #ffffff;
}

.console-prompt .cursor {
    display: inline-block;
    background: #ffffff;
    width: 2px;
    height: 1.2em;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e5e7eb;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}


.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .code-snippets {
        font-size: 12px;
    }
}

/* About Section */
.about-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.about-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.label-code {
    color: #9ca3af;
    font-style: italic;
}

.label-text {
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1625;
    line-height: 1.2;
    text-align: left;
}

.title-accent {
    color: #7c3aed;
    font-family: 'Fira Code', monospace;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-wrapper {
    position: relative;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 3rem;
}

/* Image Container */
.about-image-wrapper {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


@media (max-width: 1024px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .code-block {
        font-size: 0.85rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .hero-container {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .button-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .console-prompt {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .about-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .code-block {
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .code-line.indent {
        padding-left: 1.5rem;
    }
    
    .code-line.double-indent {
        padding-left: 3rem;
    }
    
    .image-container {
        aspect-ratio: 16 / 9;
    }
}

/* Services Section */
.services-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}


.services-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-left: 3px solid #7c3aed;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.5s;
}



.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2rem;
    color: #7c3aed;
}

.service-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 4px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.service-title {
    margin-bottom: 1rem;
    font-family: 'Fira Code', monospace;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1625;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .services-section {
        padding: 3rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-code {
        font-size: 0.75rem;
    }
}

/* Process Section */
.process-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}


.process-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.process-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: left;
    max-width: 800px;
    margin: 1.5rem 0 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    align-items: stretch;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(124, 58, 237, 0.3) 10%,
        rgba(124, 58, 237, 0.3) 90%,
        transparent 100%
    );
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.step-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #7c3aed;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}


.step-icon {
    font-size: 2rem;
    color: #7c3aed;
}

.step-number {
    font-family: 'Fira Code', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7c3aed;
    letter-spacing: 3px;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.step-content {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.step-title {
    margin-bottom: 0.75rem;
}

.step-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1625;
}

.step-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-section {
        padding: 3rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 2.5rem;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        font-size: 1.75rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-name {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

/* Projects Section */
.projects-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}

.projects-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    text-align: left;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: #7c3aed;
    font-size: 2rem;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid #7c3aed;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1625;
    margin-bottom: 0.5rem;
}

.project-subtitle {
    font-size: 1rem;
    color: #7c3aed;
    font-family: 'Fira Code', monospace;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .projects-section {
        padding: 3rem 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .projects-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .projects-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
}

/* Join Section */
.join-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.join-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    text-align: left;
    line-height: 1.8;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.join-button {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}


.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.join-button:hover::before {
    left: 100%;
}

.join-button:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .join-section {
        padding: 3rem 1.5rem;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .join-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .join-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .join-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}

a{
    text-decoration: none;
}

.features-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.features-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: left;
    margin: 1.5rem 0 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.feature-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(26, 22, 37, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-content {
    padding: 2.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .features-section {
        padding: 3rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}

.stats-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Fira Code', monospace;
}

.stat-plus,
.stat-percent {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .stats-section {
        padding: 3rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background: #fafafa;
    padding: 4rem 2rem;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 4rem;
    text-align: left;
    max-width: 800px;
}

.contact-content {
    margin-top: 3rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Fira Code', monospace;
    color: #4a5568;
}

.label-text-form {
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a1625;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Inter', sans-serif;
}

.form-submit-button {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.form-submit-button:active {
    transform: translateY(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .info-card {
        width: 100%;
    }
    
    .form-submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.navbar-scrolled {
    box-shadow: 0 2px 20px rgba(124, 58, 237, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}

.logo-code {
    color: #9ca3af;
    font-family: 'Fira Code', monospace;
    font-style: italic;
}

.logo-text {
    color: #7c3aed;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #1a1625;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1625;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Footer */
.footer {
    background: #1a1625;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-code {
    color: #9ca3af;
    font-family: 'Fira Code', monospace;
    font-style: italic;
}

.footer-logo .logo-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-description {
    color: #b8bcc8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #b8bcc8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a855f7;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b8bcc8;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #7c3aed;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #b8bcc8;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
        border-top: 1px solid rgba(124, 58, 237, 0.1);
    }
    
    .nav-menu-active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* About Page Styles */
.about-page-section {
    position: relative;
    background: #fafafa;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.about-page-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: #1a1625;
    line-height: 1.2;
    text-align: left;
}

.about-page-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 3rem;
    text-align: left;
}

.about-page-image {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-page-content {
    margin: 4rem 0;
}

.about-page-text {
    margin-bottom: 3rem;
}

.about-page-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 1.5rem;
}

.about-page-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.about-value-item {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 0.75rem;
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .about-page-section {
        padding: 5rem 1.5rem 3rem;
    }
    
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 4rem 1rem 2rem;
    }
    
    .about-page-title {
        font-size: 2rem;
        margin: 1.5rem 0 1rem;
    }
    
    .about-page-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-page-subtitle {
        font-size: 1.5rem;
    }
    
    .about-page-text p {
        font-size: 1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .about-page-image {
        margin: 2rem 0;
    }
}

/* Legal Pages Styles (Terms, Privacy) */
.legal-page-section {
    position: relative;
    background: #fafafa;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.legal-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1a1625;
    line-height: 1.2;
    text-align: left;
}

.legal-page-updated {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    margin-top: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1625;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(124, 58, 237, 0.2);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.legal-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: 600;
}

.legal-section strong {
    color: #1a1625;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .legal-page-section {
        padding: 5rem 1.5rem 3rem;
    }
    
    .legal-page-title {
        font-size: 2.5rem;
    }
    
    .legal-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .legal-page-section {
        padding: 4rem 1rem 2rem;
    }
    
    .legal-page-title {
        font-size: 2rem;
        margin: 1.5rem 0 0.5rem;
    }
    
    .legal-page-updated {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
    }
    
    .legal-section-title {
        font-size: 1.3rem;
    }
    
    .legal-section p,
    .legal-list li {
        font-size: 0.95rem;
    }
}

