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

:root {
    /* Typography Scale - All sizes standardized */
    --text-xs: 0.85rem;         /* 15px - Small labels, metadata */
    --text-sm: 1rem;            /* 18px - Footer, small UI text */
    --text-base: 1.3rem;        /* 23px - ALL body text, lists, descriptions */
    --text-md: 1.4rem;          /* 25px - Section subtitles, larger paragraphs */
    --text-lg: 1.8rem;          /* 32px - Small headings (h3) */
    --text-xl: 3.5rem;          /* 63px - Section titles (h2) */
    --text-2xl: 4.5rem;         /* 81px - Hero title (h1) */

    /* Colors */
    --color-primary: #FFAD00;
    --color-black: #000;
    --color-white: #fff;
    --color-text: #666;
    --color-text-light: #999;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
    font-weight: 200;
    font-size: 18px;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000;
    transition: opacity 0.5s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo span {
    color: #999;
    font-weight: 400;
}

.logo span.accent {
    color: #FFAD00;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.5s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFAD00;
    transition: width 0.5s ease;
}

nav a:hover {
    color: #FFAD00;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 173, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?w=1920&q=80&auto=format&fit=crop') center/cover;
    opacity: 0.25;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.25; }
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.hero h1 .accent {
    color: #FFAD00;
    font-weight: 300;
    text-shadow: 0 0 40px rgba(255, 173, 0, 0.3);
}

.hero p {
    font-size: var(--text-md);
    color: #ccc;
    margin-bottom: 3rem;
    font-weight: 200;
    letter-spacing: 0.2px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-orange {
    background: #FFAD00;
    color: #000;
    border-color: #FFAD00;
}

.btn-orange:hover {
    background: #FF9E00;
    border-color: #FF9E00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 173, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero-specific button overrides for dark background */
.hero .btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.hero .btn:hover {
    background: #f5f5f5;
}

.hero .btn-orange {
    background: #FFAD00;
    color: #000;
    border-color: #FFAD00;
}

.hero .btn-orange:hover {
    background: #FF9E00;
    border-color: #FF9E00;
}

.hero .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero .btn-outline:hover {
    background: #fff;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 173, 0, 0.8);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 1;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 173, 0, 1);
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-left: 2px solid rgba(255, 173, 0, 0.6);
    border-bottom: 2px solid rgba(255, 173, 0, 0.6);
    transform: translateX(-50%) rotate(-45deg);
    animation: arrowBounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes arrowBounce {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0) rotate(-45deg); }
    50% { opacity: 1; transform: translate(-50%, 5px) rotate(-45deg); }
}

.section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.section-title .accent {
    color: #FFAD00;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

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

.about-text p {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: rgba(255, 173, 0, 0.05);
    padding: 2rem;
    border-left: 4px solid #FFAD00;
    border-radius: 8px;
}

.about-list li {
    font-size: var(--text-base);
    color: var(--color-text);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: 700;
}

.about-list li strong {
    font-weight: 500;
    color: #000;
}

.about-highlight {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid #FFAD00;
}

.about-signature {
    font-size: var(--text-md);
    font-weight: 500;
    color: #000;
    margin-top: 3rem;
    font-style: italic;
}

.about-signature span {
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-text);
    font-style: normal;
    display: block;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FFAD00 0%, #FF9E00 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 173, 0, 0.3);
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    opacity: 0.9;
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--color-text);
    font-weight: 300;
    margin-bottom: 4rem;
    max-width: 700px;
}

/* Problem/Solution Section */
.problem-section {
    background: linear-gradient(rgba(249, 249, 249, 0.97), rgba(249, 249, 249, 0.97)),
                url('https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?w=1920&q=80&auto=format&fit=crop') center/cover fixed;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.problem-column h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #000;
}

.problem-list {
    list-style: none;
    font-size: var(--text-base);
    line-height: 2.2;
    color: #555;
    font-weight: 300;
}

.problem-list li {
    opacity: 0.7;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: opacity 0.5s ease;
}

.problem-list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #ccc;
    font-weight: 400;
}

.problem-list li:hover {
    opacity: 1;
}

.solution-list {
    list-style: none;
    font-size: var(--text-base);
    line-height: 2.2;
    color: #555;
    font-weight: 300;
}

.solution-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.5s ease, padding-left 0.5s ease;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFAD00;
    font-weight: 400;
}

.solution-list li:hover {
    color: #000;
    padding-left: 2rem;
}

/* How It Works */
.how-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1920&q=80&auto=format&fit=crop') center/cover fixed;
    position: relative;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    transition: all 0.5s ease;
    border-radius: 12px;
}

.process-step:hover {
    background: #f9f9f9;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFAD00;
    margin-bottom: 1rem;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.process-step:hover .step-number {
    opacity: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.step-description {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 300;
}

/* Services Section */
.services-section {
    background: #fff;
}

.services-intro {
    font-size: var(--text-md);
    color: var(--color-text);
    max-width: 700px;
    margin-bottom: 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.service-card {
    padding: 3rem 2.5rem;
    border-right: 1px solid #e5e5e5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 173, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:last-child {
    border-right: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFAD00;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    background: rgba(255, 173, 0, 0.03);
}

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

.service-number {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.8;
    font-size: var(--text-base);
}




















































.portfolio-item {
    background: #111;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 500px;
    height: 600px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 173, 0, 0.2);
}

.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    opacity: 0.8;
    transform: scale(1.1);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 50%;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 173, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-label {
    font-size: 0.75rem;
    color: #FFAD00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover .portfolio-label {
    opacity: 1;
}

.portfolio-item h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.portfolio-item p {
    color: #ccc;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.portfolio-link {
    color: #FFAD00;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
}

.portfolio-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.portfolio-link:hover::after {
    transform: translateX(4px);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 173, 0, 0.2);
    border: 1px solid rgba(255, 173, 0, 0.4);
    color: #FFAD00;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-family: Arial, sans-serif;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(255, 173, 0, 0.4);
    border-color: #FFAD00;
    transform: scale(1.1);
}

/* Compliance Section */
.compliance-section {
    background: #f9f9f9;
}

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

.compliance-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 173, 0, 0.12);
    border-color: rgba(255, 173, 0, 0.2);
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.compliance-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000;
}

.compliance-card p {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.8;
    font-weight: 300;
}

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

@media (max-width: 640px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing-section {
    background: #f9f9f9;
}

.pricing-intro {
    font-size: var(--text-md);
    color: var(--color-text);
    max-width: 700px;
    margin-bottom: 4rem;
    line-height: 1.8;
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #ddd;
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card {
    background: #fff;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.5s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 173, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    background: #FFAD00;
}

.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #FFAD00 0%, #FF9E00 100%);
    transform: scale(1.05);
    z-index: 1;
    border-color: #FFAD00;
}

.pricing-card.featured .pricing-tier {
    color: #000;
    font-weight: 600;
}

.pricing-card.featured .pricing-period {
    color: rgba(0, 0, 0, 0.7);
}

.pricing-card.featured ul {
    color: #000;
}

.pricing-card.featured h3 {
    color: #000;
}

.pricing-card.featured li::before {
    color: #000;
    opacity: 1;
}

.pricing-card.featured .btn {
    background: #000;
    color: #FFAD00;
    border-color: #000;
    font-weight: 600;
}

.pricing-card.featured .btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.pricing-card.featured::before {
    background: #000;
    height: 4px;
}

.pricing-card.featured::after {
    background: radial-gradient(circle, rgba(255, 173, 0, 0.15) 0%, transparent 70%);
}

.pricing-tier {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.pricing-roi {
    color: #FFAD00;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
    font-style: italic;
}

.pricing-card.featured .pricing-roi {
    color: rgba(0, 0, 0, 0.8);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    line-height: 2;
    color: var(--color-text);
    font-size: var(--text-base);
    font-weight: 300;
}

.pricing-card li::before {
    content: '✓';
    margin-right: 0.8rem;
    color: #FFAD00;
    font-weight: 400;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.pricing-card:hover li::before {
    opacity: 1;
}

/* Impact/Stats Section */
.impact-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.impact-section .section-title {
    color: #fff;
}

.impact-section .section-subtitle {
    color: #999;
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 173, 0, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: #FFAD00;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    font-weight: 200;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80&auto=format&fit=crop') center/cover fixed;
}

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

.testimonial-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 173, 0, 0.15);
    border-color: rgba(255, 173, 0, 0.2);
}

.quote-mark {
    font-size: 6rem;
    color: rgba(255, 173, 0, 0.15);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: #555;
    font-weight: 200;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 200;
}

/* FAQ Section */
.faq-section {
    background: #f9f9f9;
}

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

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 173, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFAD00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 200;
    margin-bottom: 0;
}

.faq-item strong {
    color: #000;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

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

.contact-intro {
    font-size: var(--text-md);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-features {
    margin-bottom: 3rem;
}

.contact-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFAD00 0%, #FF9E00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #000;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 300;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-method h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-method a {
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #FFAD00;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFAD00;
    box-shadow: 0 0 0 3px rgba(255, 173, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    margin-top: 1rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Newsletter Section */
.newsletter-section {
    background: #000;
    color: #fff;
    padding: 4rem 4rem;
}

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

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.newsletter-content p {
    font-size: 1.05rem;
    color: #999;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 450px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #FFAD00;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
    white-space: nowrap;
    padding: 1rem 2.5rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1.2rem 2rem;
    }

    nav ul {
        display: none;
    }

    .hero {
        height: auto;
        padding: 4rem 2rem;
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 5rem 2rem;
    }

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

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

    .about-image {
        order: -1;
    }

    .about-highlight {
        font-size: 1.3rem;
    }

    .two-column,
    .process-grid,
    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .stats-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .pricing-grid {
        gap: 1rem;
        background: transparent;
    }

    .service-card,
    .pricing-card {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

    .pricing-grid {
        background: #f9f9f9;
    }

    .portfolio-grid {
        gap: 1rem;
        background: transparent;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: 100%;
        width: 100%;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
    }
}
/* Portfolio Section - Auto-Scrolling Carousel */
.portfolio-section {
    background: #000;
    color: #fff;
    padding: 6rem 0 !important;
    overflow: hidden;
}

.portfolio-section .section-title {
    color: #fff;
    padding: 0 4rem;
}

.portfolio-section .section-subtitle {
    color: #999;
    padding: 0 4rem;
}

.portfolio-carousel-container {
    position: relative;
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
}

.portfolio-carousel {
    overflow: hidden;
    width: 100%;
}

.portfolio-track {
    display: flex;
    gap: 2rem;
    animation: karussell 30s linear infinite;
    will-change: transform;
}

.portfolio-track:hover {
    animation-play-state: paused;
}

@keyframes karussell {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}

.portfolio-item {
    background: #111;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-width: 600px;
    width: 600px;
    height: 700px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}
    padding: 2rem 4rem;
}

/* Mobile Responsive - Portfolio Carousel */
@media (max-width: 768px) {
    .portfolio-section .section-title,
    .portfolio-section .section-subtitle {
        padding: 0 2rem;
    }
    
    .portfolio-item {
        min-width: 85vw;
        width: 85vw;
        height: 500px;
    }
    
    .portfolio-carousel-container {
        margin-top: 2rem;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        min-width: 90vw;
        width: 90vw;
        height: 450px;
    }
    
    .portfolio-item h3 {
        font-size: 1.4rem;
    }
    
    .portfolio-item p {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 640px) {
    .section {
        padding: 4rem 1.5rem;
    }
    
    .newsletter-section {
        padding: 3rem 2rem;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 0.95rem;
    }
}
