@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== HERO SECTION ===== */
.adellton-hero-section {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    background-image: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #0f172a 100%);
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.ad-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ad-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .ad-grid { grid-template-columns: 1.2fr 1fr; } }

/* Text Elements */
.ad-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 9999px;
    background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc; font-size: 14px; margin-bottom: 24px;
}
.ad-title { font-size: clamp(38px, 5vw, 64px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; }
.ad-gradient-text { background: linear-gradient(to right, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ad-desc { font-size: 19px; color: #94a3b8; margin-bottom: 32px; line-height: 1.6; max-width: 600px; }

/* Buttons */
.ad-btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.ad-btn-fill { background: white; color: #0f172a; padding: 18px 36px; border-radius: 9999px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; text-decoration: none; display: inline-block; }
.ad-btn-outline { background: transparent; color: white; border: 1px solid #334155; padding: 18px 36px; border-radius: 9999px; font-weight: 600; cursor: pointer; transition: 0.3s; text-decoration: none; display: inline-block; }
.ad-btn-fill:hover { transform: translateY(-2px); background: #f8fafc; }
.ad-btn-outline:hover { background: rgba(255,255,255,0.05); }

/* FIX: TRUSTED LOGO BAR */
.ad-trust-section { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.ad-trust-section p { font-size: 14px; color: #64748b; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }

.ad-logo-bar { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 40px; 
    align-items: center;
    opacity: 0.5; 
    filter: grayscale(100%); 
    transition: all 0.5s ease;
}
.ad-logo-bar:hover { opacity: 1; filter: grayscale(0%); }
.ad-logo-bar svg { height: 32px; width: auto; color: white; fill: currentColor; }

/* Visual Mockup */
.ad-visual-wrapper { position: relative; }
.ad-mockup-card { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.ad-floating { position: absolute; background: white; padding: 12px 18px; border-radius: 12px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 15px rgba(0,0,0,0.2); color: #0f172a; font-size: 13px; z-index: 20; }

/* ===== WHO WE ARE SECTION ===== */
.ad-who-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

.ad-who-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ad-who-container { flex-direction: row; }
    .ad-who-col { width: 50%; }
}

/* Image Styling */
.ad-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    line-height: 0;
}

.ad-who-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ad-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px;
}

.ad-quote {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Text Styling */
.ad-who-label {
    color: #4f46e5;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.ad-who-title {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ad-who-text {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.ad-who-text b { color: #0f172a; }

/* Features Grid */
.ad-feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .ad-feat-grid { grid-template-columns: 1fr 1fr; }
}

.ad-feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ad-feat-icon {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.ad-feat-icon svg { width: 24px; height: 24px; }

.ad-feat-title { font-weight: 700; color: #0f172a; margin: 0 0 4px 0; }
.ad-feat-desc { font-size: 14px; color: #64748b; margin: 0; }

/* ===== EXPERTISE SECTION ===== */
.ad-expertise-section {
    padding: 100px 0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.ad-expertise-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
}

.ad-expertise-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Common Row Styling */
.ad-exp-row {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ad-exp-row { flex-direction: row; }
    .ad-exp-col { width: 50%; }
    .ad-exp-row.reverse { flex-direction: row-reverse; }
}

/* Content Card */
.ad-exp-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    height: 100%;
}

.ad-exp-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.ad-exp-icon-box svg { width: 28px; height: 28px; }

/* Image Styling */
.ad-exp-img-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.ad-exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.ad-exp-img-wrapper:hover .ad-exp-img { transform: scale(1.05); }

.ad-exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(15, 23, 42, 0.4), transparent);
}

/* List & Small Cards */
.ad-check-list { list-style: none; padding: 0; margin: 0; }
.ad-check-list li { display: flex; gap: 12px; margin-bottom: 12px; color: #475569; font-size: 15px; }
.ad-check-list svg { color: #22c55e; width: 18px; margin-top: 3px; }

.ad-teal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.ad-teal-box {
    background: #f0fdfa;
    padding: 16px;
    border-radius: 12px;
}
.ad-teal-box h4 { margin: 0 0 4px 0; color: #115e59; font-size: 14px; }
.ad-teal-box p { margin: 0; font-size: 12px; color: #475569; line-height: 1.4; }

/* ===== PHILOSOPHY SECTION ===== */
.ad-philosophy-section {
    padding: 100px 0;
    background: #0f172a;
    color: #ffffff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.ad-phil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1240px;
    margin: 60px auto;
    padding: 0 24px;
}

.ad-phil-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.ad-phil-card:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
}

.ad-phil-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.ad-phil-card:hover .ad-phil-icon {
    background: #6366f1;
    color: #ffffff;
}

.ad-phil-card h3 { font-size: 20px; margin-bottom: 12px; font-weight: 700; }
.ad-phil-card p { color: #94a3b8; font-size: 14px; line-height: 1.6; }

/* ===== STATS BANNER ===== */
.ad-stats-banner {
    background: #4f46e5;
    padding: 60px 0;
    color: white;
}

.ad-stats-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .ad-stats-container { grid-template-columns: repeat(4, 1fr); }
    .ad-stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.2); }
}

.ad-stat-val { font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.ad-stat-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #e0e7ff; }

/* ===== PARTNER/CONTACT SECTION ===== */
.ad-partner-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ad-bg-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.ad-partner-card {
    max-width: 500px;
    margin: 50px auto 0;
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 1;
    text-align: left;
}

.ad-btn-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    display: inline-block;
}

.ad-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

.ad-input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-bottom: 12px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.ad-btn-dark {
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.ad-btn-dark:hover {
    background: #1e293b;
}

/* ===== ABOUT PAGE ===== */
.ad-about-wrapper { position: relative; padding: 80px 0; background-color: #ffffff; overflow: hidden; font-family: 'Inter', system-ui, sans-serif; }
@media (min-width: 1024px) { .ad-about-wrapper { padding: 128px 0; } }
.ad-blur-top { position: absolute; top: 0; right: 0; margin-right: -5rem; margin-top: -5rem; width: 24rem; height: 24rem; border-radius: 9999px; background-color: #eef2ff; filter: blur(64px); opacity: 0.6; }
.ad-blur-bottom { position: absolute; bottom: 0; left: 0; margin-left: -5rem; margin-bottom: -5rem; width: 18rem; height: 18rem; border-radius: 9999px; background-color: #eff6ff; filter: blur(64px); opacity: 0.6; }
.ad-about-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10; }
.ad-about-flex { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .ad-about-flex { flex-direction: row; gap: 4rem; } }
.ad-about-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background-color: #f1f5f9; border: 1px solid #e2e8f0; color: #475569; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.ad-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background-color: #6366f1; }
.ad-about-h1 { font-size: 1.875rem; font-weight: 700; color: #0f172a; line-height: 1.1; letter-spacing: -0.025em; }
@media (min-width: 768px) { .ad-about-h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .ad-about-h1 { font-size: 3.75rem; } }
.text-gradient { background: linear-gradient(to right, #4f46e5, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ad-about-p { font-size: 1.125rem; color: #64748b; line-height: 1.625; font-weight: 300; border-left: 4px solid #e0e7ff; padding-left: 1rem; }
.ad-stats-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 1rem; padding-top: 1rem; }
@media (min-width: 640px) { .ad-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }
.ad-stat-card { background-color: #f8fafc; padding: 1rem; border-radius: 0.75rem; border: 1px solid #f1f5f9; }
.ad-stat-number { font-size: 1.875rem; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.ad-stat-label { font-size: 0.875rem; color: #64748b; font-weight: 500; }
.ad-img-container { width: 100%; position: relative; margin-top: 2.5rem; }
@media (min-width: 1024px) { .ad-img-container { width: 50%; margin-top: 0; } }
.ad-main-card { position: relative; background: white; padding: 0.5rem; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); border: 1px solid #e2e8f0; transition: transform 0.5s ease; }
@media (min-width: 768px) { .ad-main-card { transform: rotate(1deg); } }
.ad-main-card:hover { transform: rotate(0deg); }
.ad-icon-badge { position: absolute; top: -1rem; left: -1rem; width: 4rem; height: 4rem; background-color: #4f46e5; border-radius: 1rem; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3); z-index: 20; }
.ad-main-img { border-radius: 0.75rem; width: 100%; height: 300px; object-fit: cover; filter: contrast(1.05); }
@media (min-width: 768px) { .ad-main-img { height: 500px; } }
.ad-floating-badge { position: absolute; bottom: 1rem; right: 1rem; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(4px); padding: 0.75rem 1rem; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border: 1px solid #f1f5f9; max-width: 250px; animation: ad-bounce 4s infinite; }
@keyframes ad-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ad-check-circle { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background-color: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; }
.ad-mission-section { padding: 60px 0; background-color: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; font-family: 'Inter', system-ui, sans-serif; }
@media (min-width: 768px) { .ad-mission-section { padding: 80px 0; } }
.ad-mission-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.ad-mission-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .ad-mission-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.ad-mission-card { background-color: #ffffff; border-radius: 1.25rem; padding: 2rem; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); transition: all 0.3s ease; }
@media (min-width: 1024px) { .ad-mission-card { padding: 2.5rem; } }
.ad-mission-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.ad-icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.ad-icon-wrap.blue { background-color: #eff6ff; color: #2563eb; }
.ad-icon-wrap.indigo { background-color: #eef2ff; color: #4f46e5; }
.ad-card-title { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem; }
.ad-card-text { color: #475569; line-height: 1.625; display: flex; flex-direction: column; gap: 1rem; }
.ad-highlight { font-weight: 600; color: #0f172a; }
.ad-quote-box { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #f1f5f9; }
.ad-quote-text { font-size: 0.875rem; font-weight: 500; color: #64748b; font-style: italic; }
.ad-leader-section { padding: 60px 0; background-color: #ffffff; font-family: 'Inter', system-ui, sans-serif; }
@media (min-width: 768px) { .ad-leader-section { padding: 80px 0; } }
.ad-leader-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.ad-leader-flex { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) { .ad-leader-flex { flex-direction: row; gap: 4rem; } .ad-sticky-col { width: 33.333%; } .ad-grid-col { width: 66.666%; } .ad-sticky-content { position: sticky; top: 6rem; } }
.ad-exec-card { background: white; border-radius: 1.25rem; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; max-width: 384px; }
.ad-exec-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); transform: translateY(-4px); }
.ad-img-box { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background-color: #f1f5f9; }
.ad-exec-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ad-exec-card:hover .ad-exec-img { transform: scale(1.05); }
.ad-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent); }
.ad-overlay-text { position: absolute; bottom: 0; left: 0; padding: 1.5rem; color: white; }
.ad-values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .ad-values-grid { grid-template-columns: repeat(2, 1fr); } }
.ad-value-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; border-radius: 0.75rem; border: 1px solid #f1f5f9; background-color: #f8fafc; transition: all 0.2s ease; }
.ad-value-item:hover { background-color: white; border-color: #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.ad-value-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s ease; }
.ad-v-indigo { background: #e0e7ff; color: #4f46e5; }
.ad-v-blue { background: #dbeafe; color: #2563eb; }
.ad-v-green { background: #dcfce7; color: #16a34a; }
.ad-v-purple { background: #f3e8ff; color: #9333ea; }
.ad-value-item:hover .ad-v-indigo { background: #4f46e5; color: white; }
.ad-value-item:hover .ad-v-blue { background: #2563eb; color: white; }
.ad-value-item:hover .ad-v-green { background: #16a34a; color: white; }
.ad-value-item:hover .ad-v-purple { background: #9333ea; color: white; }
.ad-label { color: #4f46e5; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; display: block; margin-bottom: 0.75rem; }
.ad-section-h { font-size: 1.875rem; font-weight: 700; color: #0f172a; margin-bottom: 2rem; }
.ad-social-btn { width: 2rem; height: 2rem; border-radius: 999px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #64748b; text-decoration: none; transition: 0.2s; }
.ad-social-btn:hover { background: #0f172a; color: white; }
.gem-services-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-family: 'Inter', sans-serif; color: #334155; }
.gem-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.gem-badge { color: #4f46e5; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-tracking: 1px; display: block; margin-bottom: 10px; }
.gem-title { font-size: 32px; color: #0f172a; margin-bottom: 15px; line-height: 1.2; }
.gem-subtitle { font-size: 18px; color: #64748b; }
.gem-cards-stack { display: flex; flex-direction: column; gap: 30px; }
.gem-card { background: #fff; border-radius: 20px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.gem-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.gem-card-inner { display: flex; flex-direction: column; }
.gem-image-side { position: relative; min-height: 250px; background: #f1f5f9; overflow: hidden; }
.gem-image-side img { width: 100%; height: 100%; object-fit: cover; position: absolute; opacity: 0.8; mix-blend-mode: multiply; }
.gem-overlay { position: absolute; inset: 0; padding: 30px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(to right, rgba(30, 27, 75, 0.85), transparent); }
.gem-overlay-right { background: linear-gradient(to left, rgba(30, 58, 138, 0.85), transparent); align-items: flex-end; text-align: right; }
.gem-icon-box { width: 56px; height: 56px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.gem-icon-box svg { width: 24px; height: 24px; color: white; }
.gem-card-title { color: white; font-size: 24px; font-weight: 700; margin: 0; }
.gem-content-side { padding: 40px; }
.gem-description { font-size: 17px; line-height: 1.6; color: #475569; margin-bottom: 25px; }
.gem-list-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 15px; color: #0f172a; }
.gem-grid-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.gem-list-item { font-size: 14px; display: flex; gap: 8px; align-items: center; color: #475569; }
.gem-list-item i { color: #6366f1; font-style: normal; font-weight: bold; }
.gem-highlight-box { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #f1f5f9; }
.gem-bullet-list { list-style: none; padding: 0; margin: 0; }
.gem-bullet-list li { font-size: 14px; margin-bottom: 8px; padding-left: 20px; position: relative; }
.gem-bullet-list li::before { content: "•"; color: #3b82f6; position: absolute; left: 0; font-weight: bold; }
.gem-grid-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.gem-mini-box { background: #f0fdfa; border: 1px solid #ccfbf1; padding: 15px; border-radius: 8px; }
.gem-mini-box strong { display: block; font-size: 13px; color: #134e4a; }
.gem-mini-box small { font-size: 11px; color: #0f766e; }
@media (min-width: 1024px) { .gem-card-inner { flex-direction: row; min-height: 400px; } .gem-image-side { width: 40%; } .gem-content-side { width: 60%; } .gem-reverse { flex-direction: row-reverse; } .gem-grid-list { grid-template-columns: 1fr 1fr; } .gem-overlay-right { align-items: flex-start; text-align: left; padding-left: 50px; } }
.custom-cta-section { padding: 80px 20px; background-color: #ffffff; border-top: 1px solid #e2e8f0; font-family: 'Inter', sans-serif; text-align: center; }
.cta-container { max-width: 800px; margin: 0 auto; }
.cta-icon-wrapper { width: 64px; height: 64px; background-color: #f5f3ff; color: #4f46e5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px auto; }
.cta-icon { width: 24px; height: 24px; }
.cta-heading { font-size: 30px; font-weight: 700; color: #0f172a; margin-bottom: 24px; line-height: 1.2; }
.cta-text { font-size: 18px; color: #64748b; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-button-group { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.btn-primary { background-color: #0f172a; color: #ffffff; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 18px; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.btn-primary:hover { background-color: #1e293b; transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.btn-secondary { background-color: #ffffff; color: #334155; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 18px; border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.3s ease; }
.btn-secondary:hover { background-color: #f8fafc; }
@media (min-width: 640px) { .cta-heading { font-size: 40px; } .cta-button-group { flex-direction: row; } }

/* ===== CONTACT PAGE STYLES ===== */
.gem-contact-hero { position: relative; background-color: #f8fafc; min-height: 90vh; display: flex; align-items: center; padding: 80px 0; overflow: hidden; font-family: 'Inter', sans-serif; }
.gem-grid-bg { position: absolute; inset: 0; background-image: radial-gradient(#e2e8f0 1px, transparent 1px); background-size: 30px 30px; opacity: 0.4; pointer-events: none; }
.gem-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent, rgba(248,250,252,0.8)); pointer-events: none; }
.gem-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; width: 100%; }
.gem-flex-row { display: flex; flex-wrap: wrap; gap: 60px; }
.gem-col-left { flex: 1; min-width: 320px; }
.gem-col-right { flex: 1.2; min-width: 320px; }
.gem-badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: #f5f3ff; border: 1px solid #e0e7ff; border-radius: 99px; color: #4f46e5; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; }
.gem-pulse-dot { width: 8px; height: 8px; background: #6366f1; border-radius: 50%; animation: gem-pulse 2s infinite; }
@keyframes gem-pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.gem-hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #0f172a; line-height: 1.1; margin-bottom: 25px; }
.gem-hero-desc { font-size: 18px; color: #475569; line-height: 1.6; margin-bottom: 40px; }
.gem-mini-label { font-size: 13px; font-weight: 800; text-transform: uppercase; color: #0f172a; letter-spacing: 1px; margin-bottom: 20px; }
.gem-partner-list { list-style: none; padding: 0; margin-bottom: 40px; }
.gem-partner-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 500; color: #334155; transition: color 0.3s; }
.gem-partner-icon { width: 40px; height: 40px; border-radius: 10px; background: white; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.gem-partner-icon svg { width: 18px; height: 18px; }
.icon-indigo { color: #6366f1; }
.icon-blue { color: #3b82f6; }
.icon-green { color: #10b981; }
.gem-quote-box { background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); padding: 20px; border-radius: 16px; border: 1px solid #e2e8f0; font-style: italic; color: #1e293b; }
.gem-form-card { background: white; padding: 40px; border-radius: 24px; border: 1px solid #e2e8f0; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.gem-form-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, #3b82f6, #6366f1, #a855f7); }
.gem-form-title { font-size: 24px; font-weight: 700; margin-bottom: 30px; color: #0f172a; }
.gem-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; }
.gem-form-group { display: flex; flex-direction: column; gap: 8px; }
.gem-form-group label { font-size: 14px; font-weight: 600; color: #334155; }
.gem-form-group label span { font-weight: 400; color: #94a3b8; }
.gem-form-group input, .gem-form-group select, .gem-form-group textarea { background: #f8fafc; border: 1px solid #e2e8f0; padding: 12px 16px; border-radius: 12px; font-size: 15px; transition: all 0.3s; }
.gem-form-group input:focus, .gem-form-group textarea:focus { outline: none; border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); }
.full-width { grid-column: 1 / -1; }
.gem-submit-btn { width: 100%; padding: 16px; background: #0f172a; color: white; border: none; border-radius: 12px; font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; transition: all 0.3s; }
.gem-submit-btn:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.btn-icon { width: 18px; height: 18px; }
.gem-form-footer { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 20px; }
.gem-form-footer a { color: #64748b; text-decoration: underline; }
@media (max-width: 1024px) { .desktop-only { display: none; } .gem-flex-row { flex-direction: column; } }

/* Collaborators Section */
.gem-collaborators-section { padding: 64px 20px; background-color: #ffffff; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; font-family: 'Inter', sans-serif; }
.gem-collaborators-container { max-width: 1200px; margin: 0 auto; }
.gem-collaborators-header { text-align: center; margin-bottom: 48px; }
.gem-collab-badge { display: block; color: #4f46e5; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 12px; }
.gem-collab-title { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: #0f172a; margin: 0; }
.gem-collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; justify-items: center; }
.gem-collab-item { display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; transition: all 0.5s ease; filter: grayscale(100%); opacity: 0.6; }
.gem-collab-item:hover { filter: grayscale(0%); opacity: 1; }
.gem-collab-icon { width: 64px; height: 64px; background-color: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: all 0.3s ease; }
.gem-collab-icon svg { width: 28px; height: 28px; }
.gem-collab-name { font-size: 12px; font-weight: 600; color: #64748b; transition: all 0.3s ease; }
.group-indigo:hover .gem-collab-icon { background-color: #f5f3ff; color: #4f46e5; }
.group-indigo:hover .gem-collab-name { color: #4f46e5; }
.group-blue:hover .gem-collab-icon { background-color: #eff6ff; color: #2563eb; }
.group-blue:hover .gem-collab-name { color: #2563eb; }
.group-green:hover .gem-collab-icon { background-color: #f0fdf4; color: #16a34a; }
.group-green:hover .gem-collab-name { color: #16a34a; }
.group-purple:hover .gem-collab-icon { background-color: #faf5ff; color: #9333ea; }
.group-purple:hover .gem-collab-name { color: #9333ea; }
.group-orange:hover .gem-collab-icon { background-color: #fff7ed; color: #ea580c; }
.group-orange:hover .gem-collab-name { color: #ea580c; }
@media (min-width: 768px) { .gem-collab-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gem-collab-grid { grid-template-columns: repeat(5, 1fr); } }

/* FAQ Section */
.faq-section { padding: 80px 20px; background-color: #f8fafc; font-family: 'Inter', sans-serif; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-title { font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.faq-subtitle { color: #64748b; font-size: 18px; }
.faq-toggle { display: none; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; margin-bottom: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; font-weight: 500; font-size: 18px; color: #1e293b; user-select: none; }
.faq-icon { width: 32px; height: 32px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: all 0.3s ease; }
.faq-icon svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #ffffff; }
.faq-answer-content { padding: 0 24px 24px 24px; color: #475569; line-height: 1.6; border-top: 1px solid #f1f5f9; padding-top: 16px; margin: 0 24px; }
.faq-toggle:checked ~ .faq-answer { max-height: 500px; }
.faq-toggle:checked ~ .faq-question .faq-icon { background-color: #e0e7ff; color: #4f46e5; }
.faq-toggle:checked ~ .faq-question .faq-icon svg { transform: rotate(45deg); }

/* HQ Section */
.hq-section { padding: 80px 20px; background-color: #ffffff; font-family: 'Inter', sans-serif; }
.hq-container { max-width: 1200px; margin: 0 auto; }
.hq-card { background-color: #0f172a; border-radius: 24px; overflow: hidden; position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hq-pattern { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(#6366f1 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.hq-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hq-grid { grid-template-columns: 1fr 1fr; } }
.hq-content { padding: 40px; position: relative; z-index: 10; }
@media (min-width: 768px) { .hq-content { padding: 64px; } }
.hq-title { color: #ffffff; font-size: 30px; font-weight: 700; margin-bottom: 24px; }
.hq-description { color: #cbd5e1; font-size: 18px; line-height: 1.6; margin-bottom: 32px; }
.hq-contact-list { display: flex; flex-direction: column; gap: 24px; }
.hq-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.hq-icon-box { width: 48px; height: 48px; background-color: #1e293b; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #818cf8; flex-shrink: 0; }
.hq-icon-box svg { width: 20px; height: 20px; }
.hq-label { color: #ffffff; font-weight: 700; font-size: 18px; margin: 0; }
.hq-value { color: #94a3b8; margin-top: 4px; line-height: 1.5; }
.hq-map-wrapper { position: relative; background-color: #1e293b; height: 320px; }
@media (min-width: 1024px) { .hq-map-wrapper { height: auto; } }
.hq-map-img { width: 100%; height: 100%; object-cover: cover; opacity: 0.4; mix-blend-mode: overlay; }
.hq-pin-container { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hq-pin { width: 64px; height: 64px; background-color: #4f46e5; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(79, 70, 229, 0.6); animation: hq-bounce 2s infinite; }
.hq-pin svg { width: 24px; height: 24px; }
@keyframes hq-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Newsletter Section */
.newsletter-section { padding: 64px 20px; background-color: #f8fafc; border-top: 1px solid #e2e8f0; font-family: 'Inter', sans-serif; }
.newsletter-container { max-width: 896px; margin: 0 auto; text-align: center; }
.newsletter-header { margin-bottom: 32px; }
.newsletter-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background-color: #ffffff; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); color: #4f46e5; margin-bottom: 24px; }
.newsletter-icon-box svg { width: 32px; height: 32px; }
.newsletter-title { font-size: clamp(24px, 5vw, 36px); font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.newsletter-subtitle { font-size: 18px; color: #64748b; max-width: 650px; margin: 0 auto; line-height: 1.6; }
.newsletter-form { max-width: 512px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; height: 56px; padding: 0 20px; border-radius: 12px; border: 1px solid #e2e8f0; background-color: #ffffff; font-size: 16px; color: #0f172a; transition: all 0.2s ease; outline: none; }
.newsletter-input:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); }
.newsletter-button { height: 56px; padding: 0 32px; border-radius: 12px; background-color: #4f46e5; color: #ffffff; font-weight: 700; border: none; cursor: pointer; box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3); transition: all 0.2s ease; white-space: nowrap; }
.newsletter-button:hover { background-color: #4338ca; box-shadow: 0 15px 20px -5px rgba(79, 70, 229, 0.4); transform: translateY(-1px); }
.newsletter-footer-text { font-size: 12px; color: #94a3b8; margin-top: 16px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate {
    animation: slideInUp 0.7s ease-out forwards;
}

.animate-on-scroll.animate-left {
    animation: slideInRight 0.7s ease-out forwards;
}

.animate-on-scroll.animate-right {
    animation: slideInLeft 0.7s ease-out forwards;
}

.animate-on-scroll.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-on-load {
    opacity: 0;
}

.animate-on-load.animate {
    animation: slideInUp 0.8s ease-out forwards;
}

/* Apply page entrance animations */
body {
    animation: fadeIn 0.6s ease-out;
}

/* Hero section animations */
.adellton-hero-section {
    animation: fadeIn 0.8s ease-out;
}

.ad-badge {
    animation: slideInDown 0.7s ease-out 0.1s both;
}

.ad-title {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.ad-desc {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.ad-btn-row {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.ad-btn-fill,
.ad-btn-outline {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ad-btn-fill:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.ad-btn-outline:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Logo bar animation */
.ad-logo-bar {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Section animations */
section {
    animation: fadeIn 0.8s ease-out;
}

/* Card animations */
.ad-who-card,
.ad-feat-box,
.ad-exp-card,
.ad-stat-item {
    animation: slideInUp 0.7s ease-out backwards;
}

.ad-who-card:nth-child(1) { animation-delay: 0.1s; }
.ad-who-card:nth-child(2) { animation-delay: 0.2s; }

.ad-feat-box:nth-child(1) { animation-delay: 0.1s; }
.ad-feat-box:nth-child(2) { animation-delay: 0.2s; }

.ad-exp-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ad-exp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ad-stat-item {
    transition: all 0.3s ease-out;
}

.ad-stat-item:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Philosophy boxes */
.ad-phil-box {
    animation: slideInUp 0.7s ease-out backwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ad-phil-box:nth-child(1) { animation-delay: 0.1s; }
.ad-phil-box:nth-child(2) { animation-delay: 0.2s; }
.ad-phil-box:nth-child(3) { animation-delay: 0.3s; }
.ad-phil-box:nth-child(4) { animation-delay: 0.4s; }

.ad-phil-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.2);
}

/* About page animations */
.gem-about-hero {
    animation: slideInUp 0.8s ease-out;
}

.gem-mission-card,
.gem-leadership-item,
.gem-service-card,
.gem-cta-section {
    animation: slideInUp 0.7s ease-out backwards;
}

.gem-mission-card:nth-child(1) { animation-delay: 0.1s; }
.gem-mission-card:nth-child(2) { animation-delay: 0.2s; }

.gem-leadership-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gem-leadership-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.15);
}

.gem-service-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gem-service-card:hover {
    transform: translateY(-8px) translateX(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.gem-value-box {
    animation: slideInUp 0.7s ease-out backwards;
    transition: all 0.3s ease-out;
}

.gem-value-box:nth-child(1) { animation-delay: 0.1s; }
.gem-value-box:nth-child(2) { animation-delay: 0.2s; }
.gem-value-box:nth-child(3) { animation-delay: 0.3s; }
.gem-value-box:nth-child(4) { animation-delay: 0.4s; }

.gem-value-box:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Contact page animations */
.gem-contact-hero {
    animation: slideInUp 0.8s ease-out;
}

.gem-col-left,
.gem-col-right {
    animation: slideInUp 0.7s ease-out backwards;
}

.gem-col-left { animation-delay: 0.1s; }
.gem-col-right { animation-delay: 0.2s; }

.gem-form-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gem-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.1);
}

.gem-form-group input,
.gem-form-group textarea,
.gem-form-group select {
    transition: all 0.3s ease-out;
}

.gem-form-group input:focus,
.gem-form-group textarea:focus,
.gem-form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

.gem-submit-btn {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gem-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.3);
}

.gem-collab-item {
    animation: slideInUp 0.7s ease-out backwards;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gem-collab-item:nth-child(1) { animation-delay: 0.1s; }
.gem-collab-item:nth-child(2) { animation-delay: 0.15s; }
.gem-collab-item:nth-child(3) { animation-delay: 0.2s; }
.gem-collab-item:nth-child(4) { animation-delay: 0.25s; }
.gem-collab-item:nth-child(5) { animation-delay: 0.3s; }

.gem-collab-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* FAQ animations */
.faq-item {
    animation: slideInUp 0.7s ease-out backwards;
    transition: all 0.3s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.faq-item:hover {
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

/* HQ Card animations */
.hq-card {
    animation: slideInRight 0.8s ease-out 0.1s both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.hq-contact-item {
    animation: slideInUp 0.6s ease-out backwards;
}

.hq-contact-item:nth-child(1) { animation-delay: 0.1s; }
.hq-contact-item:nth-child(2) { animation-delay: 0.2s; }
.hq-contact-item:nth-child(3) { animation-delay: 0.3s; }

/* Newsletter section animations */
.newsletter-section {
    animation: slideInUp 0.8s ease-out;
}

.newsletter-form {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.newsletter-input {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-input:focus {
    transform: translateY(-2px);
}

.newsletter-button {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.4);
}

/* Header animations */
.header-fixed {
    animation: slideInDown 0.6s ease-out;
}

.nav-link {
    transition: color 0.3s ease-out;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.cta-button-header {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.3);
}

/* Footer animations */
.main-footer {
    animation: slideInUp 0.8s ease-out;
}

.footer-col {
    animation: slideInUp 0.7s ease-out backwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

.footer-links a,
.social-link {
    transition: all 0.3s ease-out;
}

.footer-links a:hover {
    color: #818cf8;
    transform: translateX(4px);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
}

/* ===== HEADER STYLES ===== */
.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1e293b;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    animation: slideInDown 0.6s ease-out;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #9333ea);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 20px;
}

.logo-text {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-desktop {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-button-header {
    display: none;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transition: opacity 0.2s;
}

@media (min-width: 768px) {
    .cta-button-header {
        display: inline-flex;
    }
}

.cta-button-header:hover {
    opacity: 0.9;
}

.mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
}

.mobile-cta {
    background: #4f46e5;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 20px 32px 20px;
    border-top: 1px solid #1e293b;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #9333ea);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo-icon svg {
    width: 16px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 18px;
}

.social-link:hover {
    background-color: #4f46e5;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 16px;
}

.footer-links, .footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #818cf8;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    width: 16px;
    color: #6366f1;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 14px;
    color: #64748b;
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.footer-legal a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Adjust main content for fixed header */
body {
    padding-top: 80px;
}

/* ===== GLOBAL UTILITIES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
}
