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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #263238;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-blue: #2196F3;
    --dark-blue: #1976D2;
    --light-blue: #64B5F6;
    --primary-green: #4CAF50;
    --dark-green: #388E3C;
    --light-green: #81C784;
    --dark-gray: #263238;
    --light-gray: #78909C;
    --white: #FFFFFF;
    --light-bg: #F5F5F5;
    --border-color: #E0E0E0;
    --safety-red: #F44336;
    --warning-orange: #FF9800;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-signup {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-signup:hover {
    background-color: var(--dark-green);
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: var(--white);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    padding: 1rem 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    min-width: 120px;
    text-align: center;
}

/* Community Section */
.community {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Pixelgrade Section */
.pixelgrade {
    padding: 80px 0;
    background-color: var(--white);
}

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

.pixelgrade-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pixelgrade-text .section-description {
    margin-bottom: 2rem;
}

/* Business Reinvention Section */
.business-reinvention {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.reinvention-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.reinvention-text .section-description {
    margin-bottom: 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-gray);
    font-weight: 500;
}

/* Footer Design Section */
.footer-design {
    padding: 80px 0;
    background-color: var(--white);
}

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

.footer-design-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-design-text .section-description {
    margin-bottom: 2rem;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.author-company {
    color: var(--light-gray);
}

.client-logos-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.client-logo-small {
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.meet-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    cursor: pointer;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.copyright {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-green);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.email-input {
    display: flex;
    gap: 0.5rem;
}

.email-field {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: var(--light-gray);
    color: var(--white);
}

.email-field::placeholder {
    color: var(--white);
    opacity: 0.7;
}

.email-submit {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.email-submit:hover {
    background-color: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--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-buttons {
        display: none;
    }

    .hero-container,
    .pixelgrade-content,
    .reinvention-content,
    .footer-design-content,
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .statistics {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-logos {
        gap: 1rem;
    }

    .client-logo {
        min-width: 100px;
        padding: 0.8rem 1.5rem;
    }
}

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .feature-cards,
    .blog-cards {
        grid-template-columns: 1fr;
    }

    .client-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

.top_img-hero, .top_img-safety, .top_img-privacy, .top_img-tipse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 2rem auto;
  padding: 1rem 0;
}

.top_img-hero img,
.top_img-safety img,
.top_img-privacy img {
  width: 100%;
  max-width: 480px;
  height: 580px;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(33, 150, 243, 0.10), 0 1.5px 6px 0 rgba(60, 60, 60, 0.08);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f8f9fa;
}

.top_img-hero img:hover,
.top_img-safety img:hover,
.top_img-privacy img:hover {
  transform: scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 48px 0 rgba(33, 150, 243, 0.18), 0 3px 12px 0 rgba(60, 60, 60, 0.12);
}
.top_img-tipse img {
    width: 100%;
  max-width: 480px;
  height: 580px;
 border-top-left-radius: 15px;
 border-top-right-radius: 15px;
  box-shadow: 0 6px 32px 0 rgba(33, 150, 243, 0.10), 0 1.5px 6px 0 rgba(60, 60, 60, 0.08);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: #f8f9fa;
}

/* Responsive tweaks for image containers */
@media (max-width: 768px) {
  .top_img-hero img,
  .top_img-safety img,
  .top_img-privacy img {
    max-width: 98vw;
    aspect-ratio: 16/11;
  }
}

@media (max-width: 480px) {
  .top_img-hero img,
  .top_img-safety img,
  .top_img-privacy img {
    max-width: 100vw;
    border-radius: 10px;
    aspect-ratio: 16/12;
  }
}