/* ============================================
HERO SECTION — Glint inspired
Split layout, bold headline, floating elements
============================================ */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0E3251 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -100px;
}

.hero-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--aqua);
    bottom: -100px;
    left: -100px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 184, 169, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 169, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 184, 169, 0.15);
    border: 1px solid rgba(0, 184, 169, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-badge span {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--teal-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-headline .line-teal {
    color: var(--teal-light);
}

.hero-headline .line-accent {
    position: relative;
    display: inline-block;
}

.hero-headline .line-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
}

.hero-desc {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-light);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-resume-mockup {
    width: 360px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

.resume-header-mock {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mint);
}

.resume-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.resume-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.resume-role {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
}

.resume-section-mock {
    margin-bottom: 16px;
}

.resume-section-title-mock {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.resume-line {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    margin-bottom: 6px;
}

.resume-line.w-full {
    width: 100%;
}

.resume-line.w-3q {
    width: 75%;
}

.resume-line.w-half {
    width: 50%;
}

.resume-line.highlight {
    background: var(--mint);
}

.floating-badge-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--navy);
    border: 2px solid var(--teal);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 4s ease-in-out infinite 1s;
}

.floating-badge-2 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--teal);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 184, 169, 0.4);
    z-index: 3;
    animation: float 5s ease-in-out infinite 0.5s;
}

.badge-icon {
    font-size: 18px;
}

/* ============================================
 BRAND LOGOS SECTION — Digitek inspired
 Clients who trust us — scrolling marquee
============================================ */
#brands {
    padding: 40px 0;
    background: var(--off-white);
    border-top: 1px solid rgba(0, 184, 169, 0.1);
    border-bottom: 1px solid rgba(0, 184, 169, 0.1);
    overflow: hidden;
}

.brands-label {
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-300);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
    letter-spacing: 1px;
}

.brand-item:hover {
    color: var(--teal);
}

.brand-dot {
    width: 6px;
    height: 6px;
    background: var(--teal-light);
    border-radius: 50%;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================
 ABOUT COMPANY — Digitek inspired
 Left image, right staggered text blocks
============================================ */
#about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(0, 184, 169, 0.2), transparent 70%);
}

.about-card-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.about-card-stat {
    position: relative;
    z-index: 2;
}

.about-card-stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.about-card-stat-num span {
    color: var(--teal-light);
}

.about-card-stat-label {
    color: var(--gray-300);
    font-size: 15px;
    margin-top: 8px;
}

.about-floating-stats {
    position: absolute;
    top: 24px;
    right: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}

.about-mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.about-mini-stat-val {
    font-weight: 700;
    color: var(--teal);
    font-family: var(--font-mono);
}

.about-mini-stat-label {
    color: var(--gray-700);
}

.about-content {
    padding-left: 20px;
}

.about-intro {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--mint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
 INDUSTRIES SERVED — JobAway inspired
 Grid of industry cards with icons
============================================ */
#industries {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-sub {
    color: var(--gray-500);
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mint), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: var(--shadow);
}

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

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

.industry-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.industry-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--teal);
    position: relative;
    z-index: 1;
}

/* ============================================
 START WITH US — MortalAI inspired
 Bold CTA with feature steps
============================================ */
#start {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    position: relative;
    overflow: hidden;
}

.start-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.start-bg-b1 {
    width: 500px;
    height: 500px;
    background: var(--teal);
    top: -200px;
    right: -100px;
}

.start-bg-b2 {
    width: 300px;
    height: 300px;
    background: var(--aqua);
    bottom: -100px;
    left: 200px;
}

.start-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.start-left .section-title {
    color: white;
}

.start-desc {
    color: var(--gray-300);
    font-size: 16px;
    margin: 20px 0 40px;
    line-height: 1.8;
}

.start-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.start-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.start-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(0, 184, 169, 0.15);
    border: 1px solid rgba(0, 184, 169, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--teal-light);
    flex-shrink: 0;
}

.step-content-title {
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.step-content-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-connector {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0, 184, 169, 0.3), transparent);
    margin-left: 24px;
    margin-top: -10px;
    margin-bottom: -10px;
}

/* ============================================
 RESUME TEMPLATES — Invena inspired
 Scrollable template gallery grid
============================================ */
#templates {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.templates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.templates-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) var(--mint);
    scroll-snap-type: x mandatory;
}

.templates-scroll::-webkit-scrollbar {
    height: 4px;
}

.templates-scroll::-webkit-scrollbar-track {
    background: var(--mint);
    border-radius: 2px;
}

.templates-scroll::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 2px;
}

.template-card {
    min-width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 2px solid var(--gray-100);
    position: relative;
}

.template-card:hover {
    transform: scale(1.03);
    border-color: var(--teal);
    box-shadow: var(--shadow);
}

.template-preview {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.template-preview-inner {
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: scale(0.85);
    transform-origin: top left;
    width: 117%;
    height: 117%;
}

.tmpl-header-bar {
    height: 28px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.tmpl-line {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 4px;
}

.tmpl-section-bar {
    height: 10px;
    border-radius: 3px;
    width: 40%;
    margin: 10px 0 6px;
}

.template-card-info {
    padding: 14px 16px;
    background: var(--off-white);
}

.template-card-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.template-card-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--teal);
    margin-top: 3px;
}

.template-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Template Color Themes */
.tmpl-1 .tmpl-header-bar {
    background: linear-gradient(90deg, var(--navy), var(--teal));
}

.tmpl-1 .tmpl-line {
    background: #e8ecf0;
}

.tmpl-1 .tmpl-section-bar {
    background: var(--teal);
}

.tmpl-1 .template-preview {
    background: #fff;
}

.tmpl-2 .tmpl-header-bar {
    background: linear-gradient(90deg, #2d1b69, #7c3aed);
}

.tmpl-2 .tmpl-line {
    background: #ede9fe;
}

.tmpl-2 .tmpl-section-bar {
    background: #7c3aed;
}

.tmpl-2 .template-preview {
    background: #faf5ff;
}

.tmpl-3 .tmpl-header-bar {
    background: linear-gradient(90deg, #1e3a5f, #2563eb);
}

.tmpl-3 .tmpl-line {
    background: #dbeafe;
}

.tmpl-3 .tmpl-section-bar {
    background: #2563eb;
}

.tmpl-3 .template-preview {
    background: #f8faff;
}

.tmpl-4 .tmpl-header-bar {
    background: linear-gradient(90deg, #14532d, var(--teal-dark));
}

.tmpl-4 .tmpl-line {
    background: #dcfce7;
}

.tmpl-4 .tmpl-section-bar {
    background: var(--teal-dark);
}

.tmpl-4 .template-preview {
    background: #f0fff4;
}

.tmpl-5 .tmpl-header-bar {
    background: linear-gradient(90deg, #7c2d12, #ea580c);
}

.tmpl-5 .tmpl-line {
    background: #ffedd5;
}

.tmpl-5 .tmpl-section-bar {
    background: #ea580c;
}

.tmpl-5 .template-preview {
    background: #fff7ed;
}

.tmpl-6 .tmpl-header-bar {
    background: linear-gradient(90deg, #111827, #374151);
}

.tmpl-6 .tmpl-line {
    background: #f3f4f6;
}

.tmpl-6 .tmpl-section-bar {
    background: #374151;
}

.tmpl-6 .template-preview {
    background: #fff;
}

/* ============================================
 VIDEO SECTION — TopResume inspired
 Full-width dark section with embedded video
============================================ */
#video-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.video-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-inner .section-title {
    color: white;
    margin-bottom: 16px;
}

.video-inner .section-sub {
    color: var(--gray-300);
    max-width: 560px;
    margin: 0 auto 48px;
}

.video-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 0 12px rgba(0, 184, 169, 0.2);
    z-index: 2;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(0, 184, 169, 0.15);
}

.video-play-btn svg {
    margin-left: 5px;
}

.video-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    user-select: none;
    letter-spacing: -2px;
}

.video-preview-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.8), transparent);
}

.video-preview-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
}

.video-preview-sub {
    color: var(--gray-300);
    font-size: 14px;
}

/* ============================================
 REVIEWS / TESTIMONIALS — Digitek + GenAI
 3-column card layout
============================================ */
#testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(0, 184, 169, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--mint);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--teal);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 184, 169, 0.1);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.author-title {
    font-size: 12px;
    color: var(--gray-500);
}

.author-result {
    margin-left: auto;
    text-align: right;
}

.author-result-val {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
}

.author-result-label {
    font-size: 10px;
    color: var(--gray-500);
}

/* ============================================
 MEET THE TEAM — JobAway inspired
 Cards with rounded avatar, teal accent
============================================ */
#team {
    padding: 100px 0;
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid rgba(0, 184, 169, 0.08);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.team-card-body {
    padding: 20px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.team-role {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin: 4px 0 12px;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.team-exp {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social {
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.team-social:hover {
    background: var(--teal);
}

/* ============================================
 FAQ — GenAI inspired
 Accordion style
============================================ */
#faq {
    padding: 100px 0;
    background: white;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left-desc {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 28px;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-cat {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-cat:hover,
.faq-cat.active {
    background: var(--mint);
    color: var(--teal-dark);
}

.faq-cat .faq-cat-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--teal);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    background: white;
    transition: background 0.2s;
}

.faq-item.open .faq-question {
    background: var(--off-white);
}

.faq-q-text {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
    font-weight: bold;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--teal);
    color: white;
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.75;
}

/* ============================================
 STAY CONNECTED / NEWSLETTER — Digitek
============================================ */
#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.newsletter-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
    padding: 16px 28px;
    background: white;
    color: var(--teal-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--navy);
    color: white;
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
}





/* ============================================
 RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-floating-stats {
        display: none;
    }

    .start-inner {
        grid-template-columns: 1fr;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-inner {
        padding: 40px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }


    .templates-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}
