/* About Page */

.about-hero {
    position: relative;
    padding: 160px 5% 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8fbff;
}

/* Background */
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
}

.hero-glow-2 {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 123, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hero Layout */
.about-hero-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #007BFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

/* Title */
.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #0A192F;
    line-height: 1.1;
    margin-bottom: 22px;
}

.gradient-text {
    background: linear-gradient(90deg, #007BFF, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: #556075;
    line-height: 1.75;
    margin-bottom: 45px;
    max-width: 540px;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.abt-stat {
    text-align: center;
}

.abt-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #0A192F;
}

.abt-plus {
    font-size: 1.4rem;
    font-weight: 800;
    color: #007BFF;
}

.abt-stat p {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.abt-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Visual Card */
.visual-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 40px 80px rgba(10, 25, 47, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.visual-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f1f5f9;
}

.vc-dots {
    display: flex;
    gap: 6px;
}

.vc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
}

.vc-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-card-body {
    padding: 25px;
}

.network-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.ns-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ns-item i {
    color: #007BFF;
    font-size: 1.2rem;
}

.ns-item strong {
    display: block;
    font-size: 0.9rem;
    color: #0A192F;
    font-weight: 700;
}

.ns-item span {
    font-size: 0.72rem;
    color: #94a3b8;
}

.ns-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
}

.ns-badge.live {
    background: #dcfce7;
    color: #16a34a;
}

/* Bar Chart */
.network-bar-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.nb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nb-item span {
    font-size: 0.75rem;
    color: #64748b;
    width: 55px;
    flex-shrink: 0;
}

.nb-bar {
    flex: 1;
    height: 6px;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
}

.nb-fill {
    height: 100%;
    background: linear-gradient(90deg, #007BFF, #00c6ff);
    border-radius: 50px;
    animation: barGrow 1.5s ease forwards;
    width: 0;
}

@keyframes barGrow {
    to { width: var(--w); }
}

.vc-footer-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #007BFF;
    background: #f0f7ff;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Shared */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #007BFF;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 40px;
}

.blue { color: #007BFF; }

/* Vision Mission */
.about-vm {
    padding: 80px 0;
    background: #ffffff;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.vision-card {
    background: #0A192F;
    color: white;
}

.mission-card {
    background: #f8fbff;
}

.vm-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.blue-icon {
    background: #007BFF;
    color: white;
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-card h3 { color: white; }
.mission-card h3 { color: #0A192F; }

.vm-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vision-card p { color: rgba(255,255,255,0.75); }
.mission-card p { color: #64748b; }

.vm-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.blue-vm-tag {
    background: #e8f3ff;
    color: #007BFF;
}

/* Why Section */
.about-why {
    padding: 80px 0;
    background: #f8fbff;
}

.why-grid {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-card {
    flex: 1;
    padding: 40px;
    border-radius: 24px;
    background: white;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.problem-card { border-top: 4px solid #ff4d4d; }
.solution-card { border-top: 4px solid #007BFF; }

.why-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: #fff5f5;
    color: #ff4d4d;
}

.blue-why-icon {
    background: #e8f3ff;
    color: #007BFF;
}

.why-tag-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.red-pill { background: #fff5f5; color: #ff4d4d; }
.blue-pill { background: #e8f3ff; color: #007BFF; }

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #475569;
}

.why-list li i {
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-card .why-list li i {
    background: #fff5f5;
    color: #ff4d4d;
}

.solution-card .why-list li i {
    background: #e8f3ff;
    color: #007BFF;
}

.why-arrow {
    flex-shrink: 0;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
    font-size: 1rem;
}

/* How It Works */
.about-how {
    padding: 80px 0;
    background: #ffffff;
}

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.how-step {
    flex: 1;
    padding: 35px;
    background: #f8fbff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    position: relative;
    transition: 0.3s ease;
}

.how-step:hover {
    border-color: #007BFF;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.08);
}

.how-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 123, 255, 0.08);
    line-height: 1;
    margin-bottom: 15px;
}

.how-icon {
    width: 52px;
    height: 52px;
    background: #007BFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 18px;
}

.how-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.how-connector {
    color: #cbd5e0;
    font-size: 1rem;
    padding-top: 60px;
    flex-shrink: 0;
}

/* Connect Section */
.about-connect {
    padding: 80px 0;
    background: #f8fbff;
}

.connect-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(10, 25, 47, 0.08);
    border: 1px solid #eef2f6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.connect-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f3ff;
    color: #007BFF;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.connect-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #0A192F;
    line-height: 1.2;
    margin-bottom: 16px;
}

.connect-left p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.connect-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: 0.2s ease;
}

.connect-link:hover { color: #007BFF; }

.connect-link i {
    width: 32px;
    height: 32px;
    background: #f8fbff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007BFF;
    font-size: 0.85rem;
}

.whatsapp-link { color: #16a34a; }
.whatsapp-link:hover { color: #15803d; }
.whatsapp-link i { background: #dcfce7; color: #16a34a; }

/* Form */
.connect-form {
    background: #f8fbff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
}

.connect-form h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 6px;
}

.connect-form p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 22px;
}

.cf-input-group {
    margin-bottom: 14px;
}

.cf-input-group input,
.cf-input-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: #0A192F;
    background: white;
    outline: none;
    transition: 0.2s ease;
}

.cf-input-group input:focus,
.cf-input-group select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

.cf-submit-btn {
    width: 100%;
    padding: 15px;
    background: #16a34a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
    margin-top: 6px;
}

.cf-submit-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s ease forwards;
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .connect-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 130px 5% 60px;
        min-height: auto;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-stats-row {
        gap: 15px;
    }

    .abt-num { font-size: 1.5rem; }

    .why-grid {
        flex-direction: column;
    }

    .why-arrow {
        transform: rotate(90deg);
    }

    .how-steps {
        flex-direction: column;
    }

    .how-connector {
        transform: rotate(90deg);
        padding-top: 0;
        align-self: center;
    }

    .connect-card {
        padding: 28px;
    }

    .connect-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .about-stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .abt-divider { display: none; }
}

/* Franchise Executive Section */
.exec-section {
    padding: 80px 0;
    background: #ffffff;
}

.exec-card {
    background: #f8fbff;
    border-radius: 30px;
    padding: 55px;
    border: 1px solid #eef2f6;
    box-shadow: 0 30px 80px rgba(10, 25, 47, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.exec-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
}

.exec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f3ff;
    color: #007BFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 25px;
}

/* Profile */
.exec-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.exec-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007BFF, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarPulse 3s ease-in-out infinite;
}

.avatar-ring i {
    font-size: 2rem;
    color: white;
}

.avatar-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 15px;
    height: 15px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid white;
}

.avatar-status::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.4;
    animation: statusPing 1.5s ease-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.2); }
    50%       { box-shadow: 0 0 0 12px rgba(0, 123, 255, 0); }
}

@keyframes statusPing {
    0%   { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.2); opacity: 0; }
}

.exec-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 3px;
}

.exec-info > span {
    font-size: 0.8rem;
    color: #64748b;
}

.exec-available {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #22c55e;
    margin-top: 5px;
}

.avail-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: statusPing 1.5s ease-out infinite;
}

.exec-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.exec-desc strong { color: #0A192F; }

/* Action Buttons */
.exec-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exec-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-whatsapp {
    background: #22c55e;
    color: white;
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35);
}

.btn-call {
    background: #0A192F;
    color: white;
}

.btn-call:hover {
    background: #007BFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
}

.btn-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
}

.btn-small-text {
    font-size: 0.65rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-main-text {
    font-size: 0.92rem;
    font-weight: 700;
}

.btn-arrow {
    margin-left: auto;
    opacity: 0.6;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.exec-btn:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Phone shake animation */
.btn-call .btn-icon-circle i {
    animation: ringShake 2.5s ease-in-out infinite;
}

@keyframes ringShake {
    0%, 60%, 100% { transform: rotate(0deg); }
    65%  { transform: rotate(-15deg); }
    70%  { transform: rotate(15deg); }
    75%  { transform: rotate(-10deg); }
    80%  { transform: rotate(10deg); }
    85%  { transform: rotate(0deg); }
}

/* WhatsApp bounce */
.btn-whatsapp .btn-icon-circle i {
    animation: waBounce 2.5s ease-in-out infinite;
}

@keyframes waBounce {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.18); }
}

/* Right Side */
.exec-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.brand-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.brand-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-wrap img {
    width: 85px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 123, 255, 0.2));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.logo-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 123, 255, 0.2);
    animation: orbitSpin 12s linear infinite;
}

.logo-orbit-2 {
    inset: -15px;
    border-color: rgba(0, 123, 255, 0.1);
    animation: orbitSpin 18s linear infinite reverse;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0A192F;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #007BFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exec-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

/* Social */
.exec-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.exec-social p {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    background: white;
}

.social-icon:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.social-icon.instagram:hover { background: #E1306C; color: white; border-color: #E1306C; }
.social-icon.linkedin:hover  { background: #0077B5; color: white; border-color: #0077B5; }
.social-icon.twitter:hover   { background: #000; color: white; border-color: #000; }
.social-icon.facebook:hover  { background: #1877F2; color: white; border-color: #1877F2; }

/* Scarcity */
.scarcity-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8f0;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.78rem;
    color: #92400e;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.scarcity-note i { color: #f97316; }

@media (max-width: 900px) {
    .exec-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .exec-right {
        border-top: 1px solid #e2e8f0;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .exec-card { padding: 22px; }
    .exec-btn  { padding: 13px 15px; }
}
