/* Service Hero Section - Standardized */
.service-hero-custom {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--secondary-dark), #1a1520);
    position: relative;
    overflow: hidden;
}

.service-hero-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(147, 112, 219, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.service-hero-custom .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-tag-custom {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(147, 112, 219, 0.2));
    color: var(--accent-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.service-title-custom {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-title-custom span {
    background: linear-gradient(135deg, var(--accent-gold), #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-desc-custom {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Branding Page - Specific Styles */
.why-brand {
    padding: 5rem 0;
    position: relative;
}

.why-brand-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-brand-header h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.why-brand-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Why Website Section */
.why-website-section {
    margin-bottom: 6rem;
    padding: 0 5%;
}

.why-website-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-stat-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.8), rgba(20, 20, 28, 0.9));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.why-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 168, 83, 0.1);
}

.why-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.why-stat-label {
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.why-stat-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    opacity: 0.8;
}

.why-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.why-stat-number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #9370db);
    border-radius: 2px;
    transition: width 1s ease-out;
}

.why-stat-number.counted::after {
    width: 100%;
}

.why-website-message {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(10, 10, 15, 0.5));
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.2);
    position: relative;
    overflow: hidden;
}

.why-website-message h3 {
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.why-website-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.why-brand-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-brand-header h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.why-brand-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.why-card {
    background: linear-gradient(180deg, rgba(30, 28, 38, 0.8), rgba(20, 18, 28, 0.9));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.3);
}

.why-card-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 168, 83, 0.1);
    line-height: 1;
}

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

.why-card h3 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Brand Story Section */
.brand-story {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.03), transparent);
    position: relative;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(147, 112, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-text h2 span {
    color: var(--accent-gold);
}

.story-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-text ul {
    list-style: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.story-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(212, 168, 83, 0.05);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.story-text li:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateX(8px);
}

.story-text li:last-child {
    margin-bottom: 0;
}

.story-text li .item-icon {
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(147, 112, 219, 0.2));
    border-radius: 12px;
    border: 2px solid rgba(212, 168, 83, 0.4);
}

.story-text li .item-text {
    flex: 1;
}

.story-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-logo {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(147, 112, 219, 0.15));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px solid rgba(212, 168, 83, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 40px rgba(212, 168, 83, 0.1),
        inset 0 0 30px rgba(212, 168, 83, 0.05);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 168, 83, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(212, 168, 83, 0.4); }
}

.visual-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px dashed rgba(212, 168, 83, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.visual-ring::before {
    content: '●';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 0.8rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Services Grid */
.brand-services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-card {
    background: var(--card-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.3);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--accent-gold);
}

/* How We Help */
.brand-how {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(147, 112, 219, 0.03), transparent);
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.how-header {
    text-align: center;
    margin-bottom: 3rem;
}

.how-header h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(212, 168, 83, 0.3);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    position: relative;
    z-index: 2;
}

.how-step h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* CTA */
.brand-cta {
    padding: 6rem 0;
    text-align: center;
}

.brand-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 50px;
}

.brand-cta h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.brand-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .how-step:nth-child(4), .how-step:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .story-visual {
        order: -1;
        height: 250px;
    }
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-step:nth-child(3), .how-step:nth-child(4), .how-step:nth-child(5) {
        display: none;
    }
}

/* Market Overview Cards */
.market-overview {
    margin-bottom: 6rem;
}

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

.overview-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.8), rgba(20, 20, 28, 0.9));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

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

.overview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 168, 83, 0.1);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.overview-stat {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.overview-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.8;
}

.overview-message {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(10, 10, 15, 0.5));
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.2);
    position: relative;
    overflow: hidden;
}

.overview-message::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(212, 168, 83, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.overview-message h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.overview-message p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.overview-message p strong {
    color: var(--accent-gold);
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .overview-message h3 {
        font-size: 1.2rem;
    }
}

/* Service Intro Section */
.service-intro {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), rgba(10, 10, 15, 0.3));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.15);
    margin-bottom: 6rem;
}

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

.service-intro-label {
    display: inline-block;
    background: rgba(212, 168, 83, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-intro-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2rem;
    position: relative;
}

.service-intro-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.service-intro .intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Process Card - Glass Style */
.process-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.process-content h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step {
    background: rgba(212, 168, 83, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-arrow {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-intro {
        padding: 2.5rem 1.5rem;
    }
    .service-intro-title {
        font-size: 1.8rem;
    }
    .process-steps {
        gap: 0.3rem;
    }
    .step {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    .step-arrow {
        font-size: 0.7rem;
    }
}

/* Web Design Page - Standard & Harmonious Style */

html,
body {
    overflow-x: hidden;
}

.service-page-container {
    padding: 120px 0 60px;
}

.subpage-header {
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.subpage-header .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.subpage-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.subpage-header .content-wrapper {
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.intro-section {
    margin-bottom: 6rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 2.2;
    color: var(--text-light);
    text-align: justify;
    max-width: 1000px;
}

/* Service Path Blocks */
.path-block {
    margin-bottom: 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.path-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 20px;
}

.path-content h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--accent-gold);
    border-radius: 2px;
}

.path-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.features-list li {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.features-list li:hover {
    background: rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateX(-5px);
}

.features-list li::before {
    display: none;
}

.feature-icon {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
    color: var(--accent-gold);
}

/* Comparison Table Styling */
.table-container {
    margin: 6rem 0;
    background: var(--card-dark);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.standard-table {
    width: 100%;
    border-collapse: collapse;
}

.standard-table th {
    text-align: right;
    padding: 1.5rem;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(212, 168, 83, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
}

.standard-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
}

.standard-table tr:last-child td {
    border-bottom: none;
}

.standard-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
}

/* CTA Box */
.cta-standard {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(10, 10, 15, 0.5));
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.2);
    margin-top: 4rem;
}

.cta-standard h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.cta-standard p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Subpage Portfolio Grid - 4 Columns */
.portfolio-subpage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 6rem;
}

.portfolio-full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.portfolio-full-width .section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.portfolio-subpage-grid .portfolio-card {
    background: var(--card-dark);
    border-radius: 16px !important;
    overflow: hidden;
}

.portfolio-subpage-grid .portfolio-image {
    height: 200px;
    background: #0f0f16;
    position: relative;
    overflow: hidden;
}

.portfolio-subpage-grid .portfolio-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    transition: background-position 4s ease-in-out;
    transform: none !important;
    /* Prevent jumping/scaling */
}

.portfolio-subpage-grid .portfolio-card:hover {
    transform: translateY(-5px);
    /* Reduced movement */
}

.portfolio-subpage-grid .portfolio-card:hover .portfolio-image-bg {
    background-position: bottom center;
    transform: none !important;
    /* Ensure no scale on hover */
}

/* Hide original icon on this page to focus on the scrolling screenshot */
.portfolio-subpage-grid .portfolio-icon {
    display: none;
}

.portfolio-subpage-grid .portfolio-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.portfolio-subpage-grid .portfolio-content p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-subpage-grid .portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.08);
    color: var(--accent-gold);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.portfolio-subpage-grid .portfolio-link::after {
    content: '←';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.portfolio-subpage-grid .portfolio-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.portfolio-subpage-grid .portfolio-link:hover::after {
    transform: translateX(-5px);
}

@media (max-width: 1200px) {
    .portfolio-subpage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-subpage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-subpage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .path-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .path-block .mission-image {
        order: -1;
    }
    .path-block .mission-image img {
        max-width: 80% !important;
    }
}

@media (max-width: 992px) {
    .why-website-grid,
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-website-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .why-website-message,
    .overview-message {
        padding: 1.5rem;
    }
    
    .why-website-message h3,
    .overview-message h3 {
        font-size: 1.3rem;
    }
}

/* About Quick */
.about-quick {
    padding: 0 5%;
    margin-bottom: 3rem;
    text-align: center;
}

.about-quick-content {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(147, 112, 219, 0.1));
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    max-width: 700px;
}

.about-quick-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Simple Circle Grid */
.team-simple {
    padding: 4rem 5% 7rem;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.03));
    position: relative;
    z-index: 1;
}

.team-simple h3 {
    color: var(--text-white);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.team-simple h3::before,
.team-simple h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
    border-radius: 2px;
    animation: lineGrow 1s ease forwards;
}

.team-simple h3::before {
    background: linear-gradient(270deg, transparent, var(--accent-gold));
    animation-delay: 0.3s;
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { width: 40px; opacity: 1; }
}

.team-circle-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.team-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.6);
    border-color: var(--accent-gold);
}

.team-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-info {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    background: rgba(20, 20, 30, 0.95);
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.team-circle:hover .team-member-info {
    opacity: 1;
    visibility: visible;
    bottom: -90px;
}

.team-member-name {
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.team-member-role {
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .about-quick-content {
        padding: 0.8rem 1.5rem;
    }
    .team-circle {
        width: 55px;
        height: 55px;
    }
    .team-circle-grid {
        gap: 1rem;
    }
    .team-simple {
        margin-top: 1.5rem;
    }
    .team-circle::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-quick-content {
        padding: 0.8rem 1.5rem;
    }
}
.team-quick-intro {
    padding: 0 5%;
    margin-bottom: 3rem;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member span {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (max-width: 576px) {
    .team-members {
        gap: 0.8rem;
    }
    .team-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}