/* ==========================================
   MAS INFOTECH — GLOBAL VARIABLES & STYLES
   ========================================== */
:root {
    --primary-navy: #0B1F3A;
    --deep-navy: #061426;
    --secondary-blue: #123B68;
    --accent-blue: #2F80ED;
    --accent-blue-hover: #1c6ad9;
    --white: #FFFFFF;
    --soft-bg: #F5F8FC;
    --dark-text: #101828;
    --muted-text: #667085;
    --border-color: #DCE5F0;
    --card-shadow: 0 10px 30px -10px rgba(11, 31, 58, 0.08);
    --card-shadow-hover: 0 20px 40px -15px rgba(11, 31, 58, 0.16);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Reset & Base Setup */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Global Utility Components */
.mas-global-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), #60A5FA);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

.mas-global-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.25);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.mas-global-back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mas-global-back-to-top:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.mas-global-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--accent-blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(47, 128, 237, 0.3);
}

.mas-global-button-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 128, 237, 0.4);
}

.mas-global-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: var(--primary-navy);
    border: 1.5px solid var(--border-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mas-global-button-secondary:hover {
    border-color: var(--primary-navy);
    background-color: rgba(11, 31, 58, 0.03);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION 1 — HEADER & NAVIGATION
   ========================================== */
.header-section-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: all var(--transition-normal);
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.header-section-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(6, 20, 38, 0.06);
    border-bottom: 1px solid var(--border-color);
}

.header-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.header-section-logo-icon {
    width: auto;
    max-width: 100px;
    height: auto;
    /* background-color: var(--primary-navy); */
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section-logo-text span {
    color: var(--accent-blue);
}

.header-section-nav {
    display: flex;
    align-items: center;
}

.header-section-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-section-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-text);
    position: relative;
    padding: 4px 0;
}

.header-section-link:hover,
.header-section-link.active {
    color: var(--accent-blue);
}

.header-section-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

.header-section-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-section-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.header-section-toggle-close {
    display: none;
    color: white;
}

.header-section-mobile-cta {
    display: none;
}

/* ==========================================
   SECTION 2 — HERO SECTION
   ========================================== */
.hero-section-wrapper {
    position: relative;
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-section-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
}

.hero-section-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 128, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: #93C5FD;
    margin-bottom: 24px;
}

.hero-section-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-section-title span {
    color: var(--accent-blue);
    background: linear-gradient(135deg, #60A5FA, #2F80ED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section-description {
    font-size: 1.125rem;
    color: #94A3B8;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-section-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-section-cta-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-section-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.hero-section-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #CBD5E1;
}

.hero-section-trust-item i {
    color: var(--accent-blue);
    width: 18px;
}

.hero-section-visual {
    position: relative;
}

.hero-section-browser {
    background-color: var(--primary-navy);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-section-browser-bar {
    background-color: rgba(6, 20, 38, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section-browser-dots {
    display: flex;
    gap: 6px;
}

.hero-section-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-section-browser-url {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.hero-section-browser-body {
    position: relative;
}

.hero-section-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-section-ui-card {
    position: absolute;
    background-color: rgba(11, 31, 58, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-section-card-1 {
    top: 20px;
    left: -20px;
}

.hero-section-card-2 {
    bottom: 20px;
    right: -20px;
}

.hero-section-card-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-card-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-section-card-sub {
    font-size: 0.75rem;
    color: #94A3B8;
}

/* ==========================================
   SECTION 3 — TRUST & VALUE HIGHLIGHTS
   ========================================== */
.trust-section-wrapper {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-section-card {
    padding: 20px;
    border-radius: var(--radius-md);
    background-color: var(--soft-bg);
    border: 1px solid var(--border-color);
}

.trust-section-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(47, 128, 237, 0.1);
    color: var(--accent-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.trust-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.trust-section-desc {
    font-size: 0.875rem;
    color: var(--muted-text);
}

/* ==========================================
   SECTION 4 — ABOUT MAS INFOTECH
   ========================================== */
.about-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.about-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section-visual {
    position: relative;
}

.about-section-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-section-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-section-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section-badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.about-section-badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.about-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-section-description {
    font-size: 1.05rem;
    color: var(--muted-text);
    margin-bottom: 30px;
}

.about-section-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-section-value-item {
    display: flex;
    gap: 16px;
}

.about-section-value-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-section-value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.about-section-value-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.about-section-cta-group {
    display: flex;
    gap: 16px;
}

/* ==========================================
   SECTION 5 — SERVICES OVERVIEW
   ========================================== */
.services-section-wrapper {
    background-color: var(--soft-bg);
    padding: 100px 0;
}

.services-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.services-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.services-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.services-section-subtitle {
    color: var(--muted-text);
    font-size: 1.05rem;
}

.services-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-section-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.services-section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-blue);
}

.services-section-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(11, 31, 58, 0.05);
    color: var(--primary-navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.services-section-card:hover .services-section-icon {
    background-color: var(--accent-blue);
    color: var(--white);
}

.services-section-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.services-section-card-desc {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.services-section-benefits {
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.services-section-benefits li {
    font-size: 0.85rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.services-section-benefits i {
    width: 14px;
    color: var(--accent-blue);
}

.services-section-card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.services-section-card-link:hover {
    gap: 8px;
}

/* ==========================================
   SECTION 6 — WHY CHOOSE US
   ========================================== */
.why-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.why-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.why-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.why-section-desc {
    color: var(--muted-text);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.why-section-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.why-section-feature {
    display: flex;
    gap: 20px;
}

.why-section-feature-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-blue);
    background-color: rgba(47, 128, 237, 0.1);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-section-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.why-section-feature-desc {
    font-size: 0.925rem;
    color: var(--muted-text);
}

.why-section-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-section-bento-card {
    background-color: var(--soft-bg);
    border: 1px solid var(--border-color);
    padding: 28px 20px;
    border-radius: var(--radius-md);
}

.why-section-bento-dark {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.why-section-bento-card i {
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.why-section-bento-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-section-bento-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ==========================================
   SECTION 7 — PROJECTS PORTFOLIO
   ========================================== */
.projects-section-wrapper {
    background-color: var(--soft-bg);
    padding: 100px 0;
}

.projects-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.projects-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.projects-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.projects-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.projects-section-subtitle {
    color: var(--muted-text);
    max-width: 400px;
    text-align: right;
}

.projects-section-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.projects-section-filter {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    transition: all var(--transition-fast);
}

.projects-section-filter:hover,
.projects-section-filter.active {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.projects-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projects-section-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
}

.projects-section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.projects-section-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.projects-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-section-card:hover .projects-section-image {
    transform: scale(1.05);
}

.projects-section-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(6, 20, 38, 0.85);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.projects-section-body {
    padding: 24px;
}

.projects-section-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.projects-section-tag-item {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.projects-section-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.projects-section-card-desc {
    font-size: 0.875rem;
    color: var(--muted-text);
    margin-bottom: 20px;
}

.projects-section-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.projects-section-button {
    width: 100%;
    font-size: 0.85rem;
    padding: 8px 12px;
}

/* founder section */

/* =========================================
   MAS INFOTECH — FOUNDER SECTION
   Light Theme | Responsive | Animated
========================================= */

.founder-section-wrapper {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background: var(--white);
    color: var(--dark-text);
    font-family: var(--font-main);
    isolation: isolate;
}

/* Background Decorative Elements */

.founder-section-wrapper::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(47, 128, 237, 0.045);
    border: 1px solid rgba(47, 128, 237, 0.08);
    z-index: -1;
    animation: founder-section-orbit 18s linear infinite;
}

.founder-section-wrapper::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -220px;
    left: -180px;
    border-radius: 50%;
    background: rgba(18, 59, 104, 0.035);
    border: 1px solid rgba(18, 59, 104, 0.06);
    z-index: -1;
}

.founder-section-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Section Header */

.founder-section-header {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.founder-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--soft-bg);
    color: var(--secondary-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.founder-section-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(47, 128, 237, 0.10);
    animation: founder-section-pulse 2s ease-in-out infinite;
}

.founder-section-title {
    margin: 0;
    color: var(--primary-navy);
    font-size: clamp(32px, 4.2vw, 55px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.founder-section-title-highlight {
    display: block;
    color: var(--accent-blue);
    margin-top: 7px;
}

.founder-section-subtitle {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted-text);
    font-size: 16px;
    line-height: 1.85;
}

/* Main Card */

.founder-section-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition:
        box-shadow var(--transition-normal),
        transform var(--transition-normal);
}

.founder-section-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.founder-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 60px;
    padding: 60px;
}

/* Founder Image */

.founder-section-visual {
    min-width: 0;
    position: relative;
}

.founder-section-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 465px;
    margin: 0 auto;
    padding: 22px;
}

.founder-section-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    background: rgba(47, 128, 237, 0.14);
    filter: blur(65px);
    animation: founder-section-glow 5s ease-in-out infinite;
    pointer-events: none;
}

.founder-section-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, var(--primary-navy), var(--secondary-blue));
    border: 7px solid var(--white);
    outline: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.13);
    transform: translateZ(0);
}

.founder-section-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.founder-section-image-frame:hover .founder-section-image {
    transform: scale(1.04);
}

.founder-section-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(6, 20, 38, 0.82) 0%,
            rgba(6, 20, 38, 0.12) 48%,
            transparent 75%);
    pointer-events: none;
}

.founder-section-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.founder-section-image-label-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

.founder-section-image-label-icon svg {
    width: 20px;
    height: 20px;
}

.founder-section-image-label strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.founder-section-image-label span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 2px;
}

/* Floating Cards */

.founder-section-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 220px;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.12);
    backdrop-filter: blur(15px);
    animation: founder-section-float 5s ease-in-out infinite;
}

.founder-section-floating-card-top {
    top: 30px;
    right: -15px;
}

.founder-section-floating-card-bottom {
    bottom: 35px;
    left: -15px;
    animation-delay: -2.5s;
}

.founder-section-floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    color: var(--accent-blue);
    background: rgba(47, 128, 237, 0.09);
}

.founder-section-floating-icon svg {
    width: 19px;
    height: 19px;
}

.founder-section-floating-card strong {
    display: block;
    color: var(--primary-navy);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
}

.founder-section-floating-card span:not(.founder-section-floating-icon) {
    display: block;
    margin-top: 3px;
    color: var(--muted-text);
    font-size: 10px;
    line-height: 1.4;
}

/* Content */

.founder-section-content {
    min-width: 0;
}

.founder-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: var(--radius-full);
    color: var(--secondary-blue);
    background: var(--soft-bg);
    border: 1px solid var(--border-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.founder-section-badge svg {
    width: 15px;
    height: 15px;
    color: var(--accent-blue);
}

.founder-section-card-title {
    margin: 23px 0 20px;
    color: var(--primary-navy);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.1px;
}

.founder-section-card-title span {
    display: block;
    color: var(--accent-blue);
}

.founder-section-description {
    margin: 0 0 13px;
    color: var(--muted-text);
    font-size: 14px;
    line-height: 1.85;
}

.founder-section-description strong {
    color: var(--primary-navy);
    font-weight: 800;
}

/* Values Grid */

.founder-section-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    padding-top: 27px;
    border-top: 1px solid var(--border-color);
}

.founder-section-value {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 0;
    border-radius: 12px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.founder-section-value:hover {
    transform: translateY(-3px);
}

.founder-section-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--soft-bg);
    color: var(--accent-blue);
    border: 1px solid var(--border-color);
}

.founder-section-value-icon svg {
    width: 18px;
    height: 18px;
}

.founder-section-value h4 {
    margin: 0 0 4px;
    color: var(--primary-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.founder-section-value p {
    margin: 0;
    color: var(--muted-text);
    font-size: 11px;
    line-height: 1.6;
}

/* CTAs */

.founder-section-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.founder-section-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
}

.founder-section-cta svg {
    width: 17px;
    height: 17px;
    transition: transform var(--transition-fast);
}

.founder-section-cta:hover {
    transform: translateY(-3px);
}

.founder-section-cta:hover svg {
    transform: translateX(3px);
}

.founder-section-cta:focus-visible {
    outline: 3px solid rgba(47, 128, 237, 0.35);
    outline-offset: 4px;
}

.founder-section-cta-secondary {
    color: var(--primary-navy);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.founder-section-cta-secondary:hover {
    background: var(--soft-bg);
    border-color: var(--accent-blue);
}

/* Bottom Trust Strip */

.founder-section-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
    padding: 23px 60px;
    border-top: 1px solid var(--border-color);
    background: var(--soft-bg);
}

.founder-section-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--secondary-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
}

.founder-section-bottom-item svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: var(--accent-blue);
}

/* Animations */

@keyframes founder-section-pulse {

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

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

@keyframes founder-section-float {

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

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

@keyframes founder-section-glow {

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

    50% {
        opacity: 0.9;
        transform: scale(1.12);
    }
}

@keyframes founder-section-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   LARGE TABLETS
========================================= */

@media (max-width: 1100px) {

    .founder-section-grid {
        gap: 40px;
        padding: 45px;
    }

    .founder-section-bottom {
        padding: 22px 45px;
    }

    .founder-section-floating-card-top {
        right: -5px;
    }

    .founder-section-floating-card-bottom {
        left: -5px;
    }

}

/* =========================================
   TABLETS
========================================= */

@media (max-width: 850px) {

    .founder-section-wrapper {
        padding: 80px 20px;
    }

    .founder-section-header {
        margin-bottom: 40px;
    }

    .founder-section-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 40px;
    }

    .founder-section-image-wrapper {
        max-width: 430px;
    }

    .founder-section-content {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }

    .founder-section-card-title {
        font-size: 34px;
    }

    .founder-section-bottom {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 25px 35px;
    }

    .founder-section-bottom-item {
        justify-content: flex-start;
        text-align: left;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 520px) {

    .founder-section-wrapper {
        padding: 65px 15px;
    }

    .founder-section-header {
        margin-bottom: 30px;
    }

    .founder-section-tag {
        font-size: 10px;
        padding: 8px 13px;
    }

    .founder-section-title {
        font-size: clamp(28px, 8vw, 36px);
        letter-spacing: -1px;
    }

    .founder-section-subtitle {
        font-size: 13px;
        line-height: 1.8;
    }

    .founder-section-card {
        border-radius: 16px;
    }

    .founder-section-grid {
        gap: 35px;
        padding: 25px 18px;
    }

    .founder-section-image-wrapper {
        padding: 13px;
        max-width: 340px;
    }

    .founder-section-image-frame {
        border-width: 5px;
    }

    .founder-section-floating-card {
        max-width: 175px;
        padding: 10px;
        gap: 8px;
        border-radius: 11px;
    }

    .founder-section-floating-card-top {
        top: 12px;
        right: -3px;
    }

    .founder-section-floating-card-bottom {
        bottom: 20px;
        left: -3px;
    }

    .founder-section-floating-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .founder-section-floating-icon svg {
        width: 15px;
        height: 15px;
    }

    .founder-section-floating-card strong {
        font-size: 9px;
    }

    .founder-section-floating-card span:not(.founder-section-floating-icon) {
        font-size: 8px;
    }

    .founder-section-image-label {
        bottom: 13px;
        left: 13px;
        right: 13px;
        gap: 9px;
    }

    .founder-section-image-label-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .founder-section-image-label-icon svg {
        width: 16px;
        height: 16px;
    }

    .founder-section-image-label strong {
        font-size: 11px;
    }

    .founder-section-image-label span {
        font-size: 8px;
    }

    .founder-section-badge {
        font-size: 9px;
        padding: 7px 10px;
    }

    .founder-section-card-title {
        margin-top: 18px;
        font-size: 28px;
        letter-spacing: -0.7px;
    }

    .founder-section-description {
        font-size: 13px;
        line-height: 1.8;
    }

    .founder-section-values {
        grid-template-columns: 1fr;
        gap: 4px;
        margin-top: 22px;
        padding-top: 20px;
    }

    .founder-section-value {
        padding: 9px 0;
    }

    .founder-section-cta-wrap {
        flex-direction: column;
        align-items: stretch;
        margin-top: 25px;
    }

    .founder-section-cta {
        width: 100%;
        min-height: 50px;
        font-size: 11px;
    }

    .founder-section-bottom {
        padding: 22px 20px;
        gap: 15px;
    }

    .founder-section-bottom-item {
        font-size: 10px;
    }

}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .founder-section-wrapper {
        padding: 50px 12px;
    }

    .founder-section-grid {
        padding: 20px 14px;
    }

    .founder-section-image-wrapper {
        padding: 8px;
    }

    .founder-section-floating-card {
        max-width: 145px;
    }

    .founder-section-floating-card strong {
        font-size: 8px;
    }

    .founder-section-floating-card span:not(.founder-section-floating-icon) {
        font-size: 7px;
    }

    .founder-section-card-title {
        font-size: 25px;
    }

}

/* =========================================
   REDUCED MOTION ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .founder-section-wrapper::before,
    .founder-section-tag-dot,
    .founder-section-floating-card,
    .founder-section-image-glow {
        animation: none;
    }

    .founder-section-card,
    .founder-section-image,
    .founder-section-value,
    .founder-section-cta,
    .founder-section-cta svg {
        transition: none;
    }

}

/* ==========================================
   SECTION 8 — FEATURED CASE STUDIES
   ========================================== */
.case-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.case-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.case-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.case-section-subtitle {
    color: var(--muted-text);
}

.case-section-card {
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.case-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.case-section-badge {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-section-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.case-section-step {
    margin-bottom: 20px;
}

.case-section-step-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #93C5FD;
    margin-bottom: 4px;
}

.case-section-step-desc {
    color: #94A3B8;
    font-size: 0.95rem;
}

.case-section-cta-wrap {
    margin-top: 32px;
}

.case-section-mockup {
    background-color: var(--deep-navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
}

.case-section-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-section-mockup-dots {
    display: flex;
    gap: 6px;
}

.case-section-mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.case-section-mockup-title {
    font-size: 0.75rem;
    color: #94A3B8;
}

.case-section-mockup-block {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.header-block {
    height: 30px;
    margin-bottom: 12px;
}

.case-section-mockup-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.main-block {
    flex: 2;
    height: 120px;
}

.side-block {
    flex: 1;
    height: 120px;
}

.case-section-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.grid-block {
    height: 60px;
}

/* ==========================================
   SECTION 9 — DEVELOPMENT PROCESS
   ========================================== */
.process-section-wrapper {
    padding: 100px 0;
    background-color: var(--soft-bg);
}

.process-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.process-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.process-section-subtitle {
    color: var(--muted-text);
}

.process-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-section-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
}

.process-section-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(11, 31, 58, 0.15);
    margin-bottom: 12px;
}

.process-section-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.process-section-card-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.process-section-footer {
    text-align: center;
}

/* ==========================================
   SECTION 10 — TECHNOLOGIES & EXPERTISE
   ========================================== */
.tech-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.tech-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.tech-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tech-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.tech-section-subtitle {
    color: var(--muted-text);
}

.tech-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-section-card {
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.tech-section-card:hover {
    border-color: var(--accent-blue);
    background-color: var(--soft-bg);
}

.tech-section-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tech-section-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.tech-section-card-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* ==========================================
   SECTION 11 — INDUSTRIES WE SERVE
   ========================================== */
.industries-section-wrapper {
    padding: 100px 0;
    background-color: var(--soft-bg);
}

.industries-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.industries-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.industries-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.industries-section-subtitle {
    color: var(--muted-text);
}

.industries-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industries-section-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.industries-section-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(47, 128, 237, 0.1);
    color: var(--accent-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industries-section-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.industries-section-card-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.industries-section-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   SECTION 12 — CLIENT EXPERIENCE
   ========================================== */
.testimonials-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.testimonials-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testimonials-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.testimonials-section-subtitle {
    color: var(--muted-text);
}

.testimonials-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonials-section-card {
    background-color: var(--soft-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.testimonials-section-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonials-section-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.testimonials-section-card-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.testimonials-section-cta-box {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section-cta-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonials-section-cta-box p {
    color: #94A3B8;
    font-size: 0.95rem;
}

/* ==========================================
   SECTION 13 — PRICING / PACKAGES
   ========================================== */
.pricing-section-wrapper {
    padding: 100px 0;
    background-color: var(--soft-bg);
}

.pricing-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.pricing-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.pricing-section-subtitle {
    color: var(--muted-text);
}

.pricing-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-section-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-section-card.featured {
    border-color: var(--accent-blue);
    box-shadow: var(--card-shadow-hover);
}

.pricing-section-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 12px;
}

.pricing-section-badge.popular {
    color: var(--accent-blue);
}

.pricing-section-title-card {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.pricing-section-desc {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 24px;
}

.pricing-section-note {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    padding: 12px;
    background-color: var(--soft-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-section-features {
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-section-features li {
    font-size: 0.9rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-section-features i {
    width: 16px;
    color: var(--accent-blue);
}

.pricing-section-cta {
    width: 100%;
}

.pricing-section-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted-text);
}

/* ==========================================
   SECTION 14 — FAQ SECTION
   ========================================== */
.faq-section-wrapper {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.faq-section-subtitle {
    color: var(--muted-text);
}

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

.faq-section-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-section-item.active {
    border-color: var(--accent-blue);
}

.faq-section-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
}

.faq-section-icon {
    transition: transform var(--transition-fast);
}

.faq-section-item.active .faq-section-icon {
    transform: rotate(180deg);
}

.faq-section-answer {
    padding: 0 24px 20px 24px;
    color: var(--muted-text);
    font-size: 0.95rem;
    display: none;
}

.faq-section-item.active .faq-section-answer {
    display: block;
}

/* ==========================================
   SECTION 15 — BANNER SECTION
   ========================================== */
.banner-section-wrapper {
    padding: 60px 0;
    background-color: var(--white);
}

.banner-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.banner-section-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--deep-navy));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.banner-section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 128, 237, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.banner-section-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.banner-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.banner-section-desc {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.banner-section-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.banner-section-cta-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   SECTION 16 — CONTACT SECTION
   ========================================== */
.contact-section-wrapper {
    padding: 100px 0;
    background-color: var(--soft-bg);
}

.contact-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.contact-section-desc {
    color: var(--muted-text);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-section-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-section-detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    color: var(--accent-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.contact-section-detail-label {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-transform: uppercase;
    font-weight: 600;
}

.contact-section-detail-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.contact-section-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.contact-section-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.contact-section-input,
.contact-section-select,
.contact-section-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact-section-input:focus,
.contact-section-select:focus,
.contact-section-textarea:focus {
    border-color: var(--accent-blue);
}

.contact-section-error {
    font-size: 0.75rem;
    color: #E11D48;
    margin-top: 4px;
    display: none;
}

.contact-section-field.has-error .contact-section-error {
    display: block;
}

.contact-section-field.has-error .contact-section-input,
.contact-section-field.has-error .contact-section-textarea {
    border-color: #E11D48;
}

.contact-section-button {
    width: 100%;
    padding: 14px;
}

.contact-section-status {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.contact-section-status.success {
    color: #10B981;
}

.contact-section-status.error {
    color: #E11D48;
}

/* ==========================================
   SECTION 17 — NEWSLETTER / UPDATES
   ========================================== */
.newsletter-section-wrapper {
    padding: 60px 0;
    background-color: var(--white);
}

.newsletter-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-section-card {
    background-color: var(--soft-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.newsletter-section-desc {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.newsletter-section-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}

.newsletter-section-input {
    width: 280px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    outline: none;
}

.newsletter-section-notice {
    position: absolute;
    bottom: -22px;
    left: 0;
    font-size: 0.75rem;
    color: #10B981;
}

/* ==========================================
   SECTION 18 — FOOTER
   ========================================== */
.footer-section-wrapper {
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-section-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-section-logo-icon {
    width: auto;
    max-width: 100px;
    height: auto;
    /* background-color: var(--border-color); */
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section-logo span span {
    color: var(--accent-blue);
}

.footer-section-desc {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-section-socials {
    display: flex;
    gap: 12px;
}

.footer-section-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-section-social-link:hover {
    background-color: var(--accent-blue);
}

.footer-section-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section-list li {
    margin-bottom: 12px;
}

.footer-section-list a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-section-list a:hover {
    color: var(--white);
}

.footer-section-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94A3B8;
}

.footer-section-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section-legal-link:hover {
    color: var(--white);
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {

    .hero-section-container,
    .about-section-container,
    .why-section-container,
    .case-section-grid,
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-section-grid,
    .services-section-grid,
    .tech-section-grid,
    .industries-section-grid,
    .testimonials-section-grid,
    .pricing-section-grid,
    .process-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-section-top {
        grid-template-columns: 1fr;
    }

    .projects-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .projects-section-subtitle {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header-section-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px 30px;
        transition: right var(--transition-normal);
    }

    .header-section-nav.mobile-active .header-section-menu {
        right: 0;
    }

    .header-section-link {
        color: var(--white);
        font-size: 1.1rem;
    }

    .header-section-toggle {
        display: block;
        z-index: 1000;
    }

    .header-section-cta {
        display: none;
    }

    .trust-section-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section-title {
        font-size: 2.25rem;
    }

    .hero-section-ui-card {
        display: none;
    }

    .newsletter-section-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-section-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-section-input {
        width: 100%;
    }

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

    .testimonials-section-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .projects-section-grid,
    .services-section-grid,
    .tech-section-grid,
    .industries-section-grid,
    .testimonials-section-grid,
    .pricing-section-grid,
    .process-section-grid,
    .trust-section-grid {
        grid-template-columns: 1fr;
    }

    .footer-section-links-group {
        grid-template-columns: 1fr;
    }

    .hero-section-cta-group,
    .banner-section-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-section-cta-primary,
    .hero-section-cta-secondary,
    .banner-section-cta-primary,
    .banner-section-cta-secondary {
        width: 100%;
    }

    .case-section-card {
        padding: 24px;
    }

    .banner-section-card {
        padding: 30px 20px;
    }
}