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

body {
    font-family: Inter, sans-serif;
    color: #070308;
    background: white;
}

/* Typography */
h1, h2, h3 {
    font-family: Fraunces, serif;
    font-weight: 700;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 25%, rgba(45, 27, 78, 0.9) 50%, rgba(26, 31, 58, 0.9) 75%, rgba(10, 14, 39, 0.9) 100%);
    height: 72px;
    padding: 0 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Subtle background effects for header to match hero */
.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.header-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo-section img {
    height: 40px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c084fc;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Section Styles */
.section {
    padding: 112px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.section-white {
    background: white;
}

.section-light {
    background: #F1F5FF;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.content-wrapper > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/* Hero Section */
.hero-title {
    width: 100%;
    max-width: 1002px;
    text-align: center;
    font-size: 84px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 92.40px;
    color: #070308;
}

.hero-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #070308;
    margin: 0;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Button Styles */
.button-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.button-group-center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn {
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 18px;
    font-family: Arial;
    font-weight: 500;
    line-height: 27px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    color: white;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    color: white;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}


.btn-link {
    color: #070308;
    background: transparent;
}

/* Section Headers */
.section-label {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #070308;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 60px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 72px;
    color: #070308;
    margin: 0;
    width: 100%;
}

.section-description {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #070308;
    margin: 0;
    width: 100%;
}

/* Strategy Cards */
.strategy-grid {
    display: flex;
    gap: 48px;
    width: 100%;
}

.strategy-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.strategy-icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.strategy-icon div {
    position: absolute;
    background: #070308;
}

.icon-square {
    width: 36.61px;
    height: 36.61px;
    left: 5.70px;
    top: 5.69px;
}

.icon-line {
    width: 32.61px;
    height: 3.42px;
    left: 7.70px;
    top: 5.69px;
}

.icon-shape {
    width: 40.61px;
    height: 38.87px;
    left: 3.70px;
    top: 3.43px;
}

.card-title {
    text-align: center;
    font-size: 40px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 52px;
    color: #070308;
}

.card-description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
}

/* Content Image */
.content-image {
    width: 100%;
    height: 738px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.avatar {
    border-radius:400px;
}

/* Testimonial */
.testimonial {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 20px;
    height: 20px;
    background: url('./images/star.svg') no-repeat center center;
}

.testimonial-text {
    text-align: center;
    font-size: 32px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 41.60px;
    color: #070308;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #070308;
}

.author-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
}

.divider {
    width: 61px;
    height: 0px;
    transform: rotate(90deg);
    outline: 1px solid rgba(7, 3, 8, 0.15);
    outline-offset: -0.50px;
}

.company-logo {
    height: 48px;
}

/* Footer */
.footer {
    padding: 80px 64px;
    background: white;
}

.footer-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer-main {
    display: flex;
    gap: 64px;
}

.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    width: 84px;
    height: 36px;
    position: relative;
}

.footer-logo-inner {
    width: 70px;
    height: 36px;
    left: 6.67px;
    top: 0px;
    position: absolute;
}

.footer-logo-inner div {
    position: absolute;
    background: #070308;
}

.logo-part-1 {
    width: 18.81px;
    height: 15.95px;
    left: 50.82px;
    top: 10.87px;
}

.logo-part-2 {
    width: 19.44px;
    height: 24.68px;
    left: 34.33px;
    top: 11.32px;
}

.logo-part-3 {
    width: 18.81px;
    height: 15.95px;
    left: 18.55px;
    top: 10.87px;
}

.logo-part-4 {
    width: 21.60px;
    height: 16.19px;
    left: 0px;
    top: 10.24px;
}

.logo-part-5 {
    width: 15.13px;
    height: 9.29px;
    left: 1.15px;
    top: 0px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #070308;
}

.info-value {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #070308;
}

.info-value a {
    color: #070308;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.social-icon div {
    position: absolute;
    background: #070308;
}

.social-icon-1 div {
    width: 20px;
    height: 20px;
    left: 2px;
    top: 2.24px;
}

.social-icon-2 div {
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3.24px;
}

.social-icon-3 div {
    width: 18px;
    height: 16px;
    left: 3px;
    top: 4.24px;
}

.social-icon-4 div {
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3.24px;
}

.social-icon-5 div {
    width: 20.01px;
    height: 14.01px;
    left: 1.99px;
    top: 5px;
}

.footer-links {
    flex: 1;
    max-width: 400px;
    display: flex;
    gap: 24px;
}

.footer-link-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-link-item {
    padding: 8px 0;
}

.footer-link-item a {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #070308;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-divider {
    width: 100%;
    height: 0px;
    outline: 1px solid rgba(7, 3, 8, 0.15);
    outline-offset: -0.50px;
}

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

.copyright {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #070308;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 24px;
    color: #070308;
}

/* Arrow Icon */
.arrow-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.arrow-icon div {
    width: 6.69px;
    height: 11.62px;
    left: 8.51px;
    top: 6.17px;
    position: absolute;
    background: #070308;
    border: 1px solid #070308;
}

/* About Page Specific Styles */
.section-gray {
    background: #F2F2F2;
}

.section-blue {
    background: #E8EDF1;
}

/* Logo Grid */
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    padding: 8px 0;
    width: 100%;
}

.logo-item {
    width: 140px;
    height: 56px;
    position: relative;
}

.logo-item div {
    position: absolute;
    background: #070308;
}

.logo-type-1 {
    width: 132.52px;
    height: 35.87px;
    left: 4px;
    top: 10.50px;
}

.logo-type-2 {
    width: 134.98px;
    height: 22.50px;
    left: 2.50px;
    top: 16.75px;
}

/* Stats Section */
.stats-section {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.stats-image {
    flex: 1;
    height: 568px;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    background-size: cover;
    background-position: center;
}

.stats-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-button {
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.play-button-inner {
    width: 53.33px;
    height: 53.33px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: white;
    border-radius: 50%;
}

.stats-content {
    width: 428px;
    min-width: 428px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: #F2F2F2;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 84px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 92.40px;
    color: #070308;
}

.stat-label {
    font-size: 26px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 36.40px;
    color: #070308;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.team-row {
    display: flex;
    gap: 48px;
}

.team-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 9999px;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.team-info > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.team-name {
    font-size: 26px;
    font-weight: 600;
    line-height: 39px;
    text-align: center;
    color: #070308;
}

.team-role {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #070308;
}

.team-bio {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: #070308;
}

.team-social {
    display: flex;
    gap: 14px;
}

.team-social-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.team-social-icon div {
    position: absolute;
    background: #070308;
}

.team-social-icon-1 div {
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3.24px;
}

.team-social-icon-2 div {
    width: 18px;
    height: 16px;
    left: 3px;
    top: 4.24px;
}

.team-social-icon-3 div {
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
}

/* Testimonial Cards */
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    width: 100%;
    align-items: flex-start;
}

.testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.testimonial-logo {
    width: 120px;
    height: 48px;
    position: relative;
}

.testimonial-logo div {
    width: 115.70px;
    height: 19.29px;
    left: 2.14px;
    top: 14.36px;
    position: absolute;
    background: #070308;
}

.testimonial-quote {
    font-size: 26px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 36.40px;
    text-align: center;
    color: #070308;
    width: 100%;
    margin: 0;
}

.testimonial-author-card {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.testimonial-author-card .author-avatar {
    width: 56px;
    height: 56px;
}

.testimonial-author-card .author-name {
    text-align: center;
}

.testimonial-author-card .author-title {
    text-align: center;
}

/* FAQ Section */
.faq-header {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}

.faq-row {
    display: flex;
    gap: 64px;
}

.faq-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #070308;
}

.faq-answer {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
}

.faq-cta {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.faq-cta-title {
    font-size: 40px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 52px;
    color: #070308;
    text-align: center;
}

.faq-cta-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #070308;
    text-align: center;
}

/* Section Title Left Aligned */
.section-title-left {
    text-align: left;
    font-size: 60px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 72px;
    color: #070308;
    margin: 0;
    width: 100%;
}

.section-description-left {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #070308;
    margin: 0;
    width: 100%;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 100%;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #F2F2F2;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.portfolio-name {
    font-size: 32px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 41.60px;
    color: #070308;
    margin: 0;
}

.portfolio-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
    margin: 0;
    flex: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.portfolio-tag {
    padding: 4px 12px;
    background: #F1F5FF;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #070308;
}

/* Responsive Portfolio Grid */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .portfolio-content {
        padding: 24px;
    }
    
    .portfolio-name {
        font-size: 26px;
        line-height: 33.80px;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-heading {
    font-size: 32px;
    font-family: Fraunces;
    font-weight: 700;
    line-height: 41.60px;
    color: #070308;
    margin: 0;
}

.privacy-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
    margin: 0;
}

.privacy-text a {
    color: #070308;
    text-decoration: underline;
}

.privacy-text strong {
    font-weight: 600;
}

.privacy-list {
    list-style-position: outside;
    padding-left: 24px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
}

@media (max-width: 768px) {
    .privacy-content {
        gap: 32px;
    }
    
    .privacy-heading {
        font-size: 26px;
        line-height: 33.80px;
    }
    
    .privacy-text,
    .privacy-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Contact Page Styles */
.contact-info {
    display: flex;
    gap: 64px;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: flex-start;
}

.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.contact-item .info-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #070308;
    margin-bottom: 4px;
}

.contact-item .info-value {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #070308;
}

.contact-item .info-value a {
    color: #070308;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }
    
    .contact-item {
        text-align: center;
        width: 100%;
        max-width: 400px;
    }
}

/* ========================================
   RESPONSIVE STYLES - TABLET & MOBILE
   ======================================== */

/* Hamburger Menu Styles (600px and below) */
@media (max-width: 600px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }
    
    .nav-links::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        filter: blur(60px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        position: relative;
        z-index: 1;
    }
    
    .nav-links a:hover {
        color: #c084fc;
    }
    
    .header {
        position: relative;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    /* Header */
    .header {
        padding: 0 32px;
        height: auto;
        min-height: 72px;
    }
    
    .logo-section {
        gap: 16px;
    }
    
    .logo-section img {
        height: 36px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    /* Sections */
    .section {
        padding: 80px 32px;
        gap: 64px;
    }
    
    .container {
        gap: 64px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 56px;
        line-height: 64px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .section-title {
        font-size: 48px;
        line-height: 58px;
    }
    
    .section-description {
        font-size: 18px;
        line-height: 28px;
    }
    
    .section-title-left {
        font-size: 48px;
        line-height: 58px;
    }
    
    .section-description-left {
        font-size: 18px;
        line-height: 28px;
    }
    
    /* Strategy Grid */
    .strategy-grid {
        gap: 32px;
        flex-wrap: wrap;
    }
    
    .strategy-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 280px;
    }
    
    .card-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .card-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Images */
    .hero-image {
        height: 500px;
    }
    
    .content-image {
        height: 500px;
    }
    
    /* Stats Section */
    .stats-section {
        flex-direction: column;
    }
    
    .stats-image {
        height: 400px;
        flex: none;
    }
    
    .stats-content {
        width: 100%;
        min-width: auto;
        padding: 32px;
    }
    
    .stat-number {
        font-size: 64px;
        line-height: 72px;
    }
    
    .stat-label {
        font-size: 22px;
        line-height: 30px;
    }
    
    /* Testimonial */
    .testimonial-text {
        font-size: 28px;
        line-height: 36px;
    }
    
    /* FAQ */
    .faq-row {
        flex-direction: column;
        gap: 48px;
    }
    
    .faq-section {
        gap: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 64px 32px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer-content {
        gap: 64px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 0 24px;
        height: auto;
        min-height: 64px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .logo-section {
        gap: 12px;
    }
    
    .logo-section img {
        height: 32px;
    }
    
    .logo-section span {
        font-size: 14px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    /* Sections */
    .section {
        padding: 64px 24px;
        gap: 48px;
    }
    
    .container {
        gap: 48px;
    }
    
    .content-wrapper {
        gap: 24px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 36px;
        line-height: 44px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .section-label {
        font-size: 14px;
        line-height: 20px;
    }
    
    .section-title-left {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }
    
    .section-description-left {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    
    /* Buttons */
    .button-group {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .button-group-center {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 16px;
    }
    
    /* Strategy Grid */
    .strategy-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .strategy-card {
        flex: 1 1 100%;
        min-width: auto;
    }
    
    .card-title {
        font-size: 26px;
        line-height: 34px;
    }
    
    .card-description {
        font-size: 15px;
        line-height: 22px;
    }
    
    /* Images */
    .hero-image {
        height: 300px;
    }
    
    .content-image {
        height: 300px;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    /* Stats Section */
    .stats-section {
        flex-direction: column;
    }
    
    .stats-image {
        height: 300px;
    }
    
    .stats-content {
        padding: 24px;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 48px;
        line-height: 56px;
    }
    
    .stat-label {
        font-size: 18px;
        line-height: 26px;
    }
    
    /* Testimonial */
    .testimonial {
        gap: 24px;
    }
    
    .testimonial-text {
        font-size: 22px;
        line-height: 30px;
    }
    
    .testimonial-author {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .divider {
        display: none;
    }
    
    /* FAQ */
    .faq-header {
        gap: 16px;
    }
    
    .faq-row {
        gap: 32px;
    }
    
    .faq-section {
        gap: 32px;
    }
    
    .faq-question {
        font-size: 18px;
        line-height: 26px;
    }
    
    .faq-answer {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Footer */
    .footer {
        padding: 48px 24px;
    }
    
    .footer-content {
        gap: 48px;
    }
    
    .footer-main {
        gap: 32px;
    }
    
    .footer-brand {
        gap: 24px;
    }
    
    .footer-info {
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-bottom {
        gap: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Contact Info */
    .contact-info {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact-item {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item .info-label {
        font-size: 16px;
    }
    
    .contact-item .info-value {
        font-size: 16px;
    }
    
    /* Team Section */
    .team-row {
        flex-direction: column;
        gap: 32px;
    }
    
    .team-name {
        font-size: 22px;
        line-height: 30px;
    }
    
    .team-role {
        font-size: 18px;
        line-height: 26px;
    }
    
    .team-bio {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========================================
   HERO SECTION VARIATIONS
   ======================================== */

/* Variation 1: Split-Screen Hero (Text Left, Image Right) */
.hero-variant-split {
    padding: 112px 64px;
    background: white;
}

.hero-variant-split .container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    text-align: left;
}

.hero-variant-split .content-wrapper {
    flex: 1;
    align-items: flex-start;
    text-align: left;
}

.hero-variant-split .hero-title {
    text-align: left;
    max-width: 100%;
}

.hero-variant-split .hero-subtitle {
    text-align: left;
}

.hero-variant-split .hero-image {
    flex: 1;
    max-width: 50%;
    height: 600px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-variant-split .button-group {
    justify-content: flex-start;
}

/* Variation 2: Full-Width Image with Overlay Text */
.hero-variant-overlay {
    position: relative;
    padding: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1F4E79 0%, #2d6ba3 100%);
}

.hero-variant-overlay .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-variant-overlay .container {
    position: relative;
    z-index: 1;
}

.hero-variant-overlay .hero-title {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-variant-overlay .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-variant-overlay .hero-subtitle a {
    color: white;
    text-decoration: underline;
}

.hero-variant-overlay .btn-secondary {
    background: white;
    color: #1F4E79;
    outline: none;
    border: 2px solid white;
}

.hero-variant-overlay .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Variation 3: Asymmetric/Offset Layout */
.hero-variant-asymmetric {
    padding: 112px 64px;
    background: linear-gradient(180deg, #F2F5FF 0%, white 50%);
}

.hero-variant-asymmetric .container {
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.hero-variant-asymmetric .content-wrapper {
    align-items: flex-start;
    max-width: 60%;
}

.hero-variant-asymmetric .hero-title {
    text-align: left;
    max-width: 100%;
    font-size: 72px;
    line-height: 80px;
}

.hero-variant-asymmetric .hero-subtitle {
    text-align: left;
    font-size: 22px;
    line-height: 32px;
}

.hero-variant-asymmetric .hero-image {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    height: 500px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Variation 4: Gradient Background with Enhanced Typography - Refined Modern Version */
.hero-variant-gradient {
    padding: 140px 64px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract futuristic background elements */
.hero-variant-gradient::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-variant-gradient::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(168, 85, 247, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

/* Geometric shapes for futuristic look */
.hero-variant-gradient .container::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(45deg);
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.hero-variant-gradient .container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.15) 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(-30deg);
    z-index: 0;
    animation: pulse 10s ease-in-out infinite;
}

/* Mesh gradient overlay for depth */
.hero-variant-gradient {
    background: 
        radial-gradient(at 20% 30%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d1b4e 50%, #1a1f3a 75%, #0a0e27 100%);
}

/* Grid pattern overlay for tech aesthetic */
.hero-variant-gradient {
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
}

.hero-variant-gradient .container {
    position: relative;
    z-index: 1;
}

.hero-variant-gradient .hero-title {
    font-size: 96px;
    line-height: 104px;
    color: #070308;
    position: relative;
    z-index: 2;
}

.hero-variant-gradient .hero-subtitle {
    font-size: 22px;
    line-height: 34px;
    max-width: 800px;
    color: #070308;
    position: relative;
    z-index: 2;
}

.hero-variant-gradient .hero-subtitle a {
    color: #1F4E79;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.hero-variant-gradient .hero-subtitle a:hover {
    color: #2d6ba3;
}

.hero-variant-gradient .button-group {
    position: relative;
    z-index: 2;
}

.hero-variant-gradient .btn-secondary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    color: white;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.hero-variant-gradient .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.hero-variant-gradient .hero-image {
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

/* Variation 5: Minimalist with Enhanced Spacing */
.hero-variant-minimal {
    padding: 160px 64px;
    background: white;
}

.hero-variant-minimal .hero-title {
    font-size: 96px;
    line-height: 104px;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-variant-minimal .hero-subtitle {
    font-size: 24px;
    line-height: 36px;
    max-width: 700px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.hero-variant-minimal .button-group {
    margin-top: 16px;
}

.hero-variant-minimal .hero-image {
    margin-top: 80px;
    border-radius: 8px;
}

/* Responsive adjustments for all hero variants */
@media (max-width: 1024px) {
    .hero-variant-split .container {
        flex-direction: column;
        gap: 48px;
    }
    
    .hero-variant-split .hero-image {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-variant-split .content-wrapper,
    .hero-variant-split .hero-title,
    .hero-variant-split .hero-subtitle {
        text-align: center;
    }
    
    .hero-variant-split .button-group {
        justify-content: center;
    }
    
    .hero-variant-asymmetric .content-wrapper {
        max-width: 100%;
    }
    
    .hero-variant-asymmetric .hero-image {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 48px;
    }
    
    .hero-variant-gradient .hero-title {
        font-size: 64px;
        line-height: 72px;
    }
    
    .hero-variant-gradient .container::before,
    .hero-variant-gradient .container::after {
        width: 200px;
        height: 200px;
    }
    
    .hero-variant-minimal .hero-title {
        font-size: 64px;
        line-height: 72px;
    }
}

@media (max-width: 768px) {
    .hero-variant-overlay {
        min-height: 70vh;
        padding: 80px 24px;
    }
    
    .hero-variant-asymmetric,
    .hero-variant-gradient,
    .hero-variant-minimal {
        padding: 80px 24px;
    }
    
    .hero-variant-gradient::before {
        width: 500px;
        height: 500px;
        top: -20%;
        left: -15%;
    }
    
    .hero-variant-gradient::after {
        width: 400px;
        height: 400px;
        bottom: -15%;
        right: -10%;
    }
    
    .hero-variant-gradient .container::before {
        width: 150px;
        height: 150px;
        top: 5%;
        right: 5%;
    }
    
    .hero-variant-gradient .container::after {
        width: 120px;
        height: 120px;
        bottom: 10%;
        left: 5%;
    }
    
    .hero-variant-gradient {
        background-size: 30px 30px;
    }
    
    .hero-variant-gradient .hero-title,
    .hero-variant-minimal .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-variant-gradient .hero-subtitle,
    .hero-variant-minimal .hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .hero-variant-gradient .hero-image {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.25);
    }
}

