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

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --tertiary-black: #141414;
    --accent-gold: #fbbf24;
    --accent-emerald: #10b981;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #000000;
    --bg-black: #000000;
    --bg-card: #0a0a0a;
    --bg-elevated: #141414;
    --border-dark: #262626;
    --gradient-black: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    --gradient-card: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.8);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.9), 0 2px 4px -1px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.95), 0 4px 6px -2px rgba(0, 0, 0, 0.9);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.98), 0 10px 10px -5px rgba(0, 0, 0, 0.95);
    --shadow-gold: 0 8px 25px rgba(251, 191, 36, 0.35);
    --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.2);
    --shadow-glow-strong: 0 0 60px rgba(251, 191, 36, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--bg-black);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

/* Header & Navigation - Enhanced & Eye-catching */
header {
    background: var(--gradient-black);
    color: #ffffff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--border-dark);
}

header.scrolled {
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), var(--shadow-glow);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
    color: var(--bg-black);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    transform: rotateY(180deg) scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.logo-text strong {
    font-weight: 800;
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.975rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
}

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

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-cta {
    background: var(--gradient-gold);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    color: var(--bg-black) !important;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 350px;
    height: 350px;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.55);
    color: var(--bg-black) !important;
}

/* Hero Section */
.hero {
    background: var(--gradient-black);
    color: #ffffff;
    padding: 11rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.05); }
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    color: var(--accent-gold);
    margin-bottom: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        white-space: nowrap;
    }
}

.hero p {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    margin-bottom: 1.25rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.96);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Apply justified alignment and hyphenation across main content for better UI */
section p,
.section-subtitle,
.intro-text,
.feature-card p,
.industry-card p,
.detail-box p,
.footer-section p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Keep list items left-aligned for clarity */
.feature-card ul,
.detail-box ul {
    text-align: left;
}

/* On small screens, centre the last line to avoid ragged final lines looking odd */
@media (max-width: 600px) {
    section p,
    .section-subtitle,
    .intro-text,
    .feature-card p,
    .industry-card p,
    .detail-box p,
    .footer-section p {
        text-align-last: center;
        -moz-text-align-last: center;
    }
}

/* Special highlighted line under hero subtitle */
.hero-highlight {
    font-size: clamp(1rem, 2.1vw, 1.15rem);
    color: rgba(255,255,255,0.95);
    max-width: 920px;
    margin: 0.5rem auto 1.25rem auto;
    line-height: 1.7;
    font-weight: 600;
    opacity: 0.98;
}

/* Responsive improvements for hero text and buttons */
@media (max-width: 1024px) {
    .hero {
        padding: 8rem 1.25rem 4.5rem;
        min-height: 75vh;
    }

    .hero h1 {
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        letter-spacing: 2.5px;
        margin-bottom: 1rem;
    }

    .hero p, .hero-highlight {
        font-size: clamp(0.98rem, 2.6vw, 1.05rem);
        line-height: 1.6;
        padding: 0 0.5rem;
        text-align: justify;
        text-justify: inter-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        text-align-last: center;
    }

    .hero-badges {
        margin: 2rem 0;
        gap: 0.9rem;
    }

    .btn {
        min-width: 150px;
        padding: 0.95rem 1.75rem;
        font-size: 0.975rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 5.5rem 1rem 3.5rem;
        min-height: 60vh;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 8vw, 2.6rem);
        line-height: 1.12;
        letter-spacing: -0.4px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.8px;
        margin-bottom: 0.75rem;
    }

    .hero p, .hero-highlight {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 0.5rem;
        text-align: justify;
        text-justify: inter-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        text-align-last: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.85rem;
        align-items: center;
        margin-top: 1.75rem;
    }

    .btn {
        width: 100%;
        min-width: 0;
        padding: 0.9rem 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }

    .badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Further mobile readability improvements: limit line length, reduce subtitle tracking */
@media (max-width: 600px) {
    .hero-content {
        max-width: 92%;
        padding-top: 0.6rem;
    }

    /* limit characters per line for optimal readability */
    .hero p, .hero-highlight {
        max-width: 45ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.7;
        font-weight: 500;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.6px;
        text-transform: none;
        margin-bottom: 0.6rem;
    }

    /* slightly reduce heading size so it doesn't push content too far down */
    .hero h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem);
        margin-bottom: 0.9rem;
    }

    /* make CTAs visually separated from paragraphs */
    .cta-buttons {
        margin-top: 2.25rem;
    }
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.18);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: default;
    letter-spacing: 0.5px;
}

.badge:hover {
    background: rgba(255,255,255,0.28);
    border-color: var(--accent-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta-buttons {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.075rem;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    min-width: 180px;
    text-align: center;
}

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--bg-black);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}
/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Section Styles */
section {
    padding: 7rem 2rem;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: #d1d5db;
    text-align: justify;
    text-align-last: center;
    margin-bottom: 4.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
    font-weight: 400;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* What We Do Section */
.what-we-do {
    background: var(--secondary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.75rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-dark);
    opacity: 1;
    transform: translateY(0);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    border-color: var(--accent-gold);
    background: var(--bg-elevated);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-card);
    color: var(--accent-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-dark);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.12);
    box-shadow: 0 10px 35px rgba(251, 191, 36, 0.5);
    border-color: var(--accent-gold);
}

.feature-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card p, .feature-card ul {
    color: #d1d5db;
    line-height: 1.85;
    font-size: 1.05rem;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-card ul li {
    padding: 0.65rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Industries Section */
.industries-overview {
    background: var(--bg-black);
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.75rem;
    margin-top: 3.5rem;
}

.industry-card {
    background: var(--gradient-card);
    color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-dark);
}

.industry-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 65%);
    transform: scale(0);
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 3px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    transform: scale(1);
}

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

.industry-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), var(--shadow-glow-strong);
    border-color: var(--accent-gold);
}

.industry-icon {
    font-size: 3.75rem;
    margin-bottom: 1.75rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.25) rotate(8deg);
}

.industry-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    line-height: 1.3;
}

.industry-card p {
    font-size: 1.1rem;
    line-height: 1.85;
    opacity: 0.96;
    position: relative;
    z-index: 1;
    color: #e5e7eb;
}

.industry-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.industry-link:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

/* Industry Detail Sections */
.industry-detail-section {
    background: var(--secondary-black);
    padding: 7rem 2rem;
}

.industry-detail-section.alt {
    background: var(--bg-black);
}

.industry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industry-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.industry-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.industry-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.detail-box {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.detail-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    border-color: var(--accent-gold);
    background: var(--bg-elevated);
}

.detail-box h3 {
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border-dark);
    padding-bottom: 1rem;
}

.detail-box ul {
    list-style: none;
    padding-left: 0;
}

.detail-box ul li {
    padding: 0.9rem 0;
    padding-left: 2rem;
    position: relative;
    color: #d1d5db;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    line-height: 1.7;
}

.detail-box ul li:hover {
    padding-left: 2.5rem;
    color: var(--text-light);
}

.detail-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.detail-box ul li:hover::before {
    left: 0.5rem;
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* Why Choose Us */
.why-choose {
    background: var(--secondary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-dark);
    opacity: 1;
    transform: scale(1);
}

.benefit-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.benefit-item:hover {
    background: var(--bg-elevated);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.benefit-item h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-item p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.step.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-card);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-dark);
    position: relative;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    border-color: var(--accent-gold);
}

.step h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
}

/* Shariah Section */
.shariah-section {
    background: var(--secondary-black);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.shariah-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0.7;
}

.shariah-section .container {
    position: relative;
    z-index: 1;
}

.shariah-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.shariah-feature {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.shariah-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    border-color: var(--accent-gold);
    background: var(--bg-elevated);
}

.shariah-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.shariah-feature:hover .feature-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

.shariah-feature h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.shariah-feature p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.05rem;
}

.disclaimer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
    margin-top: 3rem;
    font-style: italic;
}

/* Who We Work With Section */
.who-we-work-with {
    background: var(--bg-black);
    padding: 7rem 2rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.client-type {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
    border-color: var(--accent-gold);
    background: var(--bg-elevated);
}

.client-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-dark);
}

.client-type:hover .client-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    border-color: var(--accent-gold);
}

.client-type h3 {
    color: var(--text-light);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-type p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.05rem;
}

.credit-philosophy {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left: 6px solid var(--accent-emerald);
    padding: 3.5rem;
    border-radius: 20px;
    margin: 4rem auto 0;
    max-width: 900px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.credit-philosophy:hover {
    box-shadow: var(--shadow-lg), 0 0 40px rgba(16, 185, 129, 0.3);
    transform: translateX(8px);
}

.credit-philosophy h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.credit-philosophy p {
    color: #d1d5db;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.credit-philosophy p.emphasis {
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.credit-philosophy ul {
    list-style: none;
    padding-left: 0;
}

.credit-philosophy ul li {
    padding: 0.9rem 0;
    padding-left: 2rem;
    position: relative;
    color: #d1d5db;
    font-size: 1.08rem;
    transition: all 0.2s ease;
}

.credit-philosophy ul li:hover {
    padding-left: 2.5rem;
    color: var(--text-light);
}

.credit-philosophy ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.2s ease;
}

.credit-philosophy ul li:hover::before {
    left: 0.5rem;
    color: var(--accent-gold);
}

/* Contact Section */
.contact {
    background: var(--gradient-black);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0.7;
}

.contact .section-title,
.contact .section-subtitle {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.contact .section-subtitle {
    text-align: justify;
    text-align-last: center;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-dark);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 0.975rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.15rem 1.35rem;
    border: 2px solid var(--border-dark);
    border-radius: 14px;
    background: var(--bg-elevated);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2), var(--shadow-glow-strong);
    background: var(--bg-elevated);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

/* Footer */
footer {
    background: var(--primary-black);
    color: #ffffff;
    padding: 4rem 2rem 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p,
.footer-section ul {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.footer-section ul li:hover {
    padding-left: 0.5rem;
    color: var(--accent-gold);
}

.footer-section a {
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-gold) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

/* Accent Divider */
.accent-divider {
    width: 120px;
    height: 6px;
    background: var(--gradient-gold);
    margin: 0 auto 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.7s ease-out forwards;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: var(--accent-gold);
    color: var(--bg-black);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--bg-black);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--tertiary-black);
    border-radius: 6px;
    border: 2px solid var(--primary-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    section {
        padding: 5rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-detail-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--gradient-black);
        flex-direction: column;
        align-items: flex-start;
        padding: 7rem 2.5rem 2rem;
        gap: 0;
        transition: right 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.95);
        overflow-y: auto;
        margin: 0;
        border-left: 1px solid var(--border-dark);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        margin: 0;
    }
    
    .nav-menu li a {
        padding: 1.4rem 0;
        display: block;
        font-size: 1.15rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1.5rem;
        text-align: center;
        width: 100%;
        display: block;
        padding: 1rem 2rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 8rem 1.25rem 4rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.95rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    .hero-badges {
        gap: 0.9rem;
        margin: 2.5rem 0;
    }
    
    .badge {
        font-size: 0.875rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Sections */
    section {
        padding: 3.5rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }
    
    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .btn {
        width: 100%;
        padding: 1.15rem 2rem;
        font-size: 1.05rem;
    }
    
    /* Grids */
    .features-grid,
    .industry-cards,
    .benefits-grid,
    .steps,
    .shariah-features,
    .client-grid,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cards */
    .feature-card,
    .benefit-item,
    .client-type,
    .shariah-feature {
        padding: 2rem 1.5rem;
    }
    
    .industry-card {
        padding: 2.5rem 1.75rem;
    }
    
    .detail-box {
        padding: 2.25rem 1.75rem;
    }
    
    .feature-card h3,
    .industry-card h3 {
        font-size: 1.35rem;
    }
    
    .industry-detail-section {
        padding: 4rem 1rem;
    }
    
    .industry-icon-large {
        font-size: 3.5rem;
    }
    
    .intro-text {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .credit-philosophy {
        padding: 2.5rem 1.75rem;
        margin-top: 3rem;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 2.5rem 1.75rem;
        margin-top: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.9rem 1.25rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 7.5rem 1rem 3.5rem;
        min-height: 75vh;
    }
    
    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.2px;
    }
    
    .badge {
        font-size: 0.825rem;
        padding: 0.6rem 1rem;
    }
    
    section {
        padding: 3.5rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-icon,
    .benefit-icon,
    .client-icon {
        width: 65px;
        height: 65px;
        font-size: 1.9rem;
    }
    
    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
    
    .industry-cards {
        gap: 1.75rem;
    }
    
    .features-grid {
        gap: 1.75rem;
    }
    
    .industry-detail-section {
        padding: 3.5rem 1.25rem;
    }
    
    .industry-icon-large {
        font-size: 3rem;
    }
    
    .detail-box {
        padding: 2rem 1.5rem;
    }
    
    .credit-philosophy {
        padding: 2rem 1.5rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid,
    .industry-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .shariah-features,
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    header {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero::before,
    .contact::before {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        height: auto;
        padding: 0;
        box-shadow: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}
