/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-orange: #ff914d;
    --primary-orange-hover: #e07b3c;
    --bg-white: #ffffff;
    --bg-light-gray: #fcfcfd;
    --bg-dark-navy: #0b1120;
    --gradient-orange: linear-gradient(135deg, #ff914d 0%, #ff6b2b 100%);
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #ffffff;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.bg-light-gray {
    background-color: var(--bg-light-gray);
}

/* =========================================
   2. UTILITY CLASSES (Effects & Buttons)
   ========================================= */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hover-shadow {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 15px 30px rgba(255, 145, 77, 0.2);
    transform: translateY(-3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(255, 145, 77, 0.3);
    transform: translateY(-2px);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--text-light);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-orange);
    border: 2px solid var(--bg-white);
}

.btn-white:hover {
    background-color: var(--bg-light-gray);
    color: var(--primary-orange);
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links > li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links .dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-links .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-radius: 12px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-links > li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary-orange);
    background-color: var(--bg-light-gray);
    padding-left: 32px;
}

/* =========================================
   4. HERO SECTION (HOME PAGE)
   ========================================= */
.hero {
    padding: 150px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-orange);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* =========================================
   5. GENERAL SECTION STYLES & GRIDS
   ========================================= */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* GRIDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4-cols { grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-5-cols { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-6-cols { grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* =========================================
   6. SERVICES SECTION (Home)
   ========================================= */
.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-orange);
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* =========================================
   7. SMART SOLUTIONS SECTION (Dark Navy)
   ========================================= */
.dark-section-wrapper {
    background-color: var(--bg-dark-navy);
    width: 100%;
}

.smart-solutions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.smart-solutions-content h2, 
.smart-solutions-content .section-subtitle,
.smart-solutions-content p {
    color: var(--text-light);
    text-align: left;
}

.smart-solutions-content .section-subtitle {
    color: var(--primary-orange);
}

.smart-solutions-content p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.solution-item .icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.solution-item h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.solution-item p {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

/* =========================================
   8. PROJECTS SECTION
   ========================================= */
.projects-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.projects-header-flex .section-header {
    text-align: left;
    margin-bottom: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    background: var(--bg-white);
}

.project-image {
    width: 100%;
    height: 180px;
    background-color: #e5e7eb;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info .category {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.project-info h4 {
    font-size: 1.1rem;
}

/* =========================================
   9. INSIGHTS SECTION
   ========================================= */
.insights-wrapper {
    background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 100%);
    width: 100%;
    padding: 80px 0;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.insights-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.insights-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.insight-image {
    width: 100%;
    height: 150px;
    background-color: #ddd;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-info {
    padding: 20px;
}

.insight-info h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.read-more {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background-color: var(--bg-dark-navy);
    color: #9ca3af;
    padding: 80px 20px 20px;
    width: 100%;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
    height: 35px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-links a:hover {
    background: var(--primary-orange);
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* =========================================
   11. CONTACT PAGE STYLES
   ========================================= */

.contact-page-wrapper {
    background-color: var(--bg-light-gray);
    padding-top: 100px;
}

.contact-hero {
    position: relative;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.contact-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero-content span {
    color: var(--primary-orange);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-light-gray) 0%, rgba(252,252,253,0) 100%);
}

.contact-main-section {
    padding: 20px 20px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

.contact-form-card, .contact-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-card h3, .contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.advault-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label span {
    color: red;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.1);
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--primary-orange);
}

.info-text h4 {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.info-text .highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-text .sub-text {
    font-size: 0.85rem;
    color: #9ca3af;
}

.section-title-left {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feat-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid rgba(255, 145, 77, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon i {
    color: var(--primary-orange);
}

.feat-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feat-text p {
    font-size: 0.85rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.faq-item summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.faq-content {
    padding-top: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.map-container {
    position: relative;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    background-color: #e5e7eb;
}

.map-card {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    min-width: 250px;
}

.map-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-map-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.cta-box {
    background-color: rgba(255, 145, 77, 0.05);
    border: 1px solid rgba(255, 145, 77, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    margin-bottom: 25px;
}

/* =========================================
   12. SERVICE INTERNAL PAGE STYLES
   ========================================= */

.service-detail-page {
    padding-top: 100px;
}

.service-hero {
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-hero-content h1 span {
    color: var(--primary-orange);
}

.service-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.service-hero-image img {
    width: 100%;
    height: auto;
}

.hero-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.hero-feat-item {
    text-align: center;
}

.hero-feat-item i {
    font-size: 24px;
    margin-bottom: 15px;
    background: rgba(255, 145, 77, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 12px;
}

.hero-feat-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hero-feat-item p {
    font-size: 0.85rem;
}

/* Sub-Services Grid */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sub-service-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.sub-service-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 145, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-service-card .card-icon i {
    font-size: 24px;
    color: var(--primary-orange);
}

.sub-service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sub-service-card p {
    font-size: 0.9rem;
}

/* Process Timeline Section */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 2px;
    border-top: 2px dashed #d1d5db;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--primary-orange);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 10px var(--bg-white);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
}

/* Technology Stack Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.tech-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 45px;
}

.tech-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Rocket CTA Section */
.rocket-cta-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.rocket-cta-container {
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.05) 0%, rgba(255, 145, 77, 0.15) 100%);
    border-radius: 24px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.rocket-image {
    width: 40%;
    margin-top: -30px;
}

.rocket-image img {
    width: 100%;
    height: auto;
}

.rocket-content {
    width: 60%;
    padding: 60px 0;
}

.rocket-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.rocket-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* =========================================
   13. DIGITAL MARKETING PAGE STYLES
   ========================================= */

.ai-banner-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-banner-container {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.ai-banner-content h2 {
    color: #a5b4fc;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ai-banner-content h3 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.ai-banner-content p {
    color: #cbd5e1;
    font-size: 1rem;
}

.ai-banner-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ai-feat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ai-feat i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background: rgba(255, 145, 77, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.ai-feat h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 5px;
}

.ai-feat p {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin: 0;
}

.ai-banner-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.marketing-bottom-grid-section {
    padding: 80px 20px;
}

.marketing-metrics-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.metrics-col h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255, 145, 77, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
    padding-top: 15px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.platforms-grid i {
    font-size: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.platforms-grid i:hover {
    transform: scale(1.1);
}

.more-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.marketing-cta-section {
    padding: 40px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.marketing-cta-container {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.marketing-cta-container .cta-content {
    position: relative;
    z-index: 2;
}

.marketing-cta-container h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.marketing-cta-container p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-bg-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120%;
    z-index: 1;
    opacity: 0.8;
}

/* =========================================
   14. SEO PAGE STYLES (Success Cards)
   ========================================= */
.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.success-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.success-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.badge-green { background: #e6f4ea; color: #10b981; }
.badge-purple { background: #f3e8ff; color: #8b5cf6; }
.badge-blue { background: #e0f2fe; color: #3b82f6; }
.badge-orange { background: #ffedd5; color: #f97316; }

.success-card h4 { font-size: 0.95rem; margin-bottom: 5px; color: var(--text-dark); }
.success-card h2 { font-size: 2.5rem; margin-bottom: 10px; }
.text-green { color: #10b981; }
.text-purple { color: #8b5cf6; }
.text-blue { color: #3b82f6; }
.text-orange { color: #f97316; }
.success-card p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 20px; }
.success-sparkline { width: 100%; height: auto; margin-top: auto; }

.cta-checkmarks {
    display: flex;
    justify-content: flex-start; 
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.cta-checkmarks span {
    color: #cbd5e1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.cta-checkmarks i {
    color: var(--primary-orange);
}

/* =========================================
   15. CONTENT CREATION STYLES
   ========================================= */
.content-stats-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.content-stats-container { 
    background-color: var(--bg-dark-navy); 
    border-radius: 24px; 
    padding: 50px; 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    gap: 40px; 
    align-items: center; 
    color: var(--text-light); 
}
.content-testimonial { 
    display: flex; flex-direction: column; gap: 20px; 
    border-right: 1px solid rgba(255,255,255,0.1); padding-right: 40px; 
}
.content-testimonial h3 { color: var(--text-light); font-size: 1.3rem; font-weight: 400; line-height: 1.5; margin: 0; }
.content-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.c-stat-item i { font-size: 2rem; color: var(--primary-orange); margin-bottom: 15px; }
.c-stat-item h2 { color: var(--primary-orange); font-size: 2.5rem; margin-bottom: 5px; }
.c-stat-item p { color: #cbd5e1; font-size: 0.9rem; margin: 0; }

.content-cta-container { 
    background: var(--gradient-orange); 
    border-radius: 24px; 
    padding: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    position: relative; 
    overflow: hidden; 
    color: var(--text-light); 
}
.content-cta-container h2 { color: var(--text-light); font-size: 2.2rem; margin-bottom: 15px; }
.content-cta-container p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }

/* =========================================
   16. PORTFOLIO PAGE STYLES (Bento Layout)
   ========================================= */
.portfolio-hero {
    background: linear-gradient(135deg, #0b1120 0%, #1e1b4b 100%);
    padding: 180px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.portfolio-hero-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.portfolio-hero h1 { color: var(--text-light); font-size: 3.8rem; margin-bottom: 20px; }
.portfolio-hero h1 span { color: var(--primary-orange); }
.portfolio-hero p { color: #cbd5e1; font-size: 1.15rem; }

.filter-section { max-width: 1200px; margin: -35px auto 0; position: relative; z-index: 10; display: flex; justify-content: center; padding: 0 20px; }
.filter-bar { display: inline-flex; gap: 10px; padding: 10px; border-radius: 50px; background: rgba(255, 255, 255, 0.95); flex-wrap: wrap; justify-content: center; }
.filter-btn { background: transparent; border: none; padding: 10px 24px; border-radius: 30px; font-family: var(--font-primary); font-weight: 600; font-size: 0.9rem; color: var(--text-gray); cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover { color: var(--primary-orange); }
.filter-btn.active { background: var(--primary-orange); color: var(--text-light); box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3); }

.featured-project-section { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.featured-project-card { position: relative; border-radius: 24px; overflow: hidden; display: flex; align-items: center; background-color: var(--bg-dark-navy); min-height: 500px; }
.featured-image { position: absolute; top: 0; right: 0; width: 65%; height: 100%; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.featured-content { position: relative; z-index: 2; width: 50%; margin-left: 40px; padding: 50px; border-radius: 20px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); }
.project-tags { display: flex; gap: 10px; margin-bottom: 15px; }
.project-tags .tag { padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.featured-content h3 { font-size: 2.2rem; margin-bottom: 15px; }
.featured-content p { color: var(--text-gray); margin-bottom: 25px; }
.featured-stats { display: flex; gap: 40px; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 20px; }
.featured-stats h4 { font-size: 1.8rem; color: var(--primary-orange); margin-bottom: 0; }
.featured-stats span { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

.bento-portfolio-section { padding: 80px 20px; }
.bento-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 300px); gap: 20px; }
.bento-item { position: relative; border-radius: 20px; overflow: hidden; background-color: var(--bg-dark-navy); cursor: pointer; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.08); }
.bento-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px 30px; background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0) 100%); color: var(--text-light); transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.bento-item:hover .bento-overlay { transform: translateY(0); opacity: 1; }
.bento-overlay .category { color: var(--primary-orange); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.bento-overlay h3 { color: var(--text-light); font-size: 1.4rem; margin-bottom: 5px; }
.bento-overlay p { color: #cbd5e1; font-size: 0.9rem; margin: 0; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-square { grid-column: span 1; }

/* =========================================
   17. CLIENT SUCCESS STYLES
   ========================================= */
.video-player-card:hover .video-overlay { background: rgba(11, 17, 32, 0.2) !important; }
.video-player-card:hover .play-button { transform: scale(1.1); background: var(--text-light) !important; }
.video-player-card:hover .play-button i { color: var(--primary-orange) !important; }

/* =========================================
   18. NEWS & EDITORIAL STYLES
   ========================================= */
.editorial-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.featured-news-card { position: relative; border-radius: 20px; overflow: hidden; display: block; min-height: 500px; background: var(--bg-dark-navy); }
.featured-news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-news-card:hover .featured-news-img { transform: scale(1.05); }
.featured-news-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 40px 40px; background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0) 100%); color: var(--text-light); }
.featured-news-overlay h2 { color: var(--text-light); font-size: 2.2rem; margin-bottom: 15px; line-height: 1.3; }
.news-meta { display: flex; gap: 20px; font-size: 0.85rem; color: #cbd5e1; }
.news-meta i { color: var(--primary-orange); margin-right: 5px; }

.side-news-panel { padding: 30px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); background: var(--bg-white); }
.side-news-list { display: flex; flex-direction: column; }
.side-news-item { padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: block; }
.side-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.side-news-item .category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.side-news-item h4 { font-size: 1.1rem; margin-bottom: 8px; transition: color 0.3s ease; }
.side-news-item:hover h4 { color: var(--primary-orange); }
.side-news-item .date { font-size: 0.8rem; color: var(--text-gray); }

.editorial-masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-article-card { border-radius: 16px; overflow: hidden; background: var(--bg-white); border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.wide-article { grid-column: span 2; flex-direction: row; }
.wide-article .article-img { width: 50%; height: 100%; }
.wide-article .article-content { width: 50%; justify-content: center; }
.article-img { height: 220px; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-article-card:hover .article-img img { transform: scale(1.05); }
.article-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.article-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.article-content p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; }
.read-more-link { margin-top: auto; font-size: 0.9rem; font-weight: 600; color: var(--primary-orange); }

/* =========================================
   19. ARTICLE DETAIL STYLES
   ========================================= */
.article-body h2 { font-size: 1.8rem; margin: 40px 0 20px; color: var(--text-dark); }
.article-body p { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.8; }
.article-body ul { margin-bottom: 25px; padding-left: 20px; }
.article-body ul li { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 10px; position: relative; list-style: disc; padding-left: 10px; }
.article-body ul li strong { color: var(--text-dark); }
.article-body blockquote { font-size: 1.4rem; font-style: italic; color: var(--primary-orange); border-left: 4px solid var(--primary-orange); padding: 20px 30px; background: rgba(255, 145, 77, 0.05); margin: 40px 0; border-radius: 0 16px 16px 0; line-height: 1.6; }
.social-share a:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* =========================================
   20. INSIGHTS MAIN PAGE STYLES
   ========================================= */
.featured-blog-card {
    display: flex;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-white);
    overflow: hidden;
}
.featured-blog-img { width: 50%; height: 400px; }
.featured-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-blog-content { width: 50%; padding: 50px; }

.insights-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.blog-post-card {
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-post-img { position: relative; height: 200px; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-post-card:hover .blog-post-img img { transform: scale(1.05); }
.blog-badge { position: absolute; top: 15px; left: 15px; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; z-index: 2; }
.blog-post-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-post-content h4 { font-size: 1.15rem; margin-bottom: 20px; color: var(--text-dark); line-height: 1.4; }
.blog-post-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; font-size: 0.85rem; color: var(--text-gray); border-top: 1px solid rgba(0,0,0,0.05); padding-top: 15px; }
.read-link { color: var(--primary-orange); font-weight: 600; }

.insights-sidebar .sidebar-widget { background: var(--bg-white); border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); padding: 30px; margin-bottom: 30px; }
.trending-list li { margin-bottom: 15px; }
.trending-list li:last-child { margin-bottom: 0; }
.trending-list a { color: var(--text-gray); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; transition: color 0.3s ease; }
.trending-list i { font-size: 0.5rem; color: var(--primary-orange); }
.trending-list a:hover { color: var(--primary-orange); }

.resource-list { display: flex; flex-direction: column; gap: 15px; }
.resource-item { display: flex; align-items: center; justify-content: space-between; padding: 15px; background: var(--bg-light-gray); border-radius: 12px; border: 1px solid rgba(0,0,0,0.03); transition: all 0.3s ease; }
.resource-item:hover { background: #fff3ec; border-color: var(--primary-orange); transform: translateY(-2px); }
.resource-item .icon-left { color: #f97316; font-size: 1.5rem; }
.resource-item .res-text h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--text-dark); }
.resource-item .res-text span { font-size: 0.75rem; color: var(--primary-orange); }
.resource-item .icon-right { color: var(--primary-orange); font-size: 0.9rem; }

.popular-item { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background: var(--bg-white); border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }
.popular-item .num { color: var(--primary-orange); font-weight: 700; font-size: 1.2rem; }
.popular-item p { margin: 0; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }

.why-item { text-align: center; }
.why-item i { font-size: 2rem; color: var(--primary-orange); margin-bottom: 15px; }
.why-item h4 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.85rem; color: var(--text-gray); }

/* =========================================
   21. RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================= */
@media (max-width: 992px) {
    .hero, .smart-solutions, .insights-container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid, .insights-grid, .grid-3-cols, .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-5-cols { grid-template-columns: repeat(3, 1fr); }
    .grid-6-cols { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-hero-bg { display: none; }

    .service-hero-top { grid-template-columns: 1fr; text-align: center; }
    .hero-features-bar { grid-template-columns: repeat(2, 1fr); }
    .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .rocket-cta-container { flex-direction: column; padding: 40px; text-align: center; }
    .rocket-image { width: 60%; margin-top: 0; }
    .rocket-content { width: 100%; padding: 0 0 30px; }
    .hero-actions { justify-content: center; }

    .ai-banner-container { grid-template-columns: 1fr; text-align: center; }
    .ai-feat { text-align: left; }
    .marketing-metrics-grid { grid-template-columns: 1fr; }
    .marketing-cta-container { flex-direction: column; text-align: center; gap: 30px; }
    .cta-bg-image { opacity: 0.2; }
    
    .success-grid { grid-template-columns: repeat(2, 1fr); }
    .marketing-cta-container .cta-content { text-align: center !important; }
    .cta-checkmarks { justify-content: center; flex-wrap: wrap; position: relative !important; bottom: auto !important; }

    .content-stats-container { grid-template-columns: 1fr; text-align: center; }
    .content-testimonial { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 40px; }
    .content-testimonial .client-info { justify-content: center; }
    .content-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .content-cta-container { flex-direction: column; text-align: center; gap: 30px; }

    /* Portfolio Mobile */
    .featured-project-card { flex-direction: column; min-height: auto; }
    .featured-image { position: relative; width: 100%; height: 300px; }
    .featured-content { width: 90%; margin: -50px auto 30px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; grid-auto-rows: 300px; }
    .bento-wide, .bento-square, .bento-tall { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-row: span 2; }
    .bento-overlay { transform: translateY(0); opacity: 1; background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.2) 100%); }
    
    /* Client Success Mobile */
    .video-testimonial-container { grid-template-columns: 1fr !important; text-align: center; }
    .video-content .client-info { justify-content: center; }
    
    /* News Responsive */
    .editorial-hero-grid { grid-template-columns: 1fr; }
    .editorial-masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .wide-article { grid-column: span 2; }
    
    /* Article Detail Mobile */
    .article-content-wrapper { grid-template-columns: 1fr; }
    .article-sidebar { position: relative; top: 0; margin-top: 40px; }

    /* Insights Updates */
    .featured-blog-card { flex-direction: column; }
    .featured-blog-img, .featured-blog-content { width: 100%; }
    .insights-main-layout { grid-template-columns: 1fr; }
    .bottom-meta-grid { grid-template-columns: 1fr; }
    .why-insights-grid { grid-template-columns: repeat(2, 1fr); }
    .inline-newsletter { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .projects-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid, .insights-grid, .grid-3-cols, .grid-4-cols, .grid-5-cols, .grid-6-cols { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .advault-form .form-row { grid-template-columns: 1fr; }
    .features-grid, .faq-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; gap: 30px; }
    .map-card { left: 20px; right: 20px; min-width: auto; }

    .hero-features-bar { grid-template-columns: 1fr; }
    .sub-services-grid { grid-template-columns: 1fr; }
    .process-timeline { flex-direction: column; gap: 30px; }
    .process-timeline::before { display: none; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .rocket-image { width: 100%; }

    .stats-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-actions.cta-actions { flex-direction: column; width: 100%; }
    
    .success-grid { grid-template-columns: 1fr; }

    .portfolio-hero h1 { font-size: 2.8rem; }
    .filter-bar { border-radius: 15px; padding: 15px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide, .bento-square, .bento-tall { grid-column: span 1; }

    /* News Responsive Mobile */
    .editorial-masonry-grid { grid-template-columns: 1fr; }
    .wide-article { grid-column: span 1; flex-direction: column; }
    .wide-article .article-img, .wide-article .article-content { width: 100%; }
    .newsletter-form { flex-direction: column; }
    
    /* Article Detail Mobile */
    .article-hero h1 { font-size: 2.2rem; }
    .article-featured-image div { height: 300px; }
    .article-body blockquote { font-size: 1.2rem; padding: 15px 20px; }

    /* Insights Updates */
    .latest-articles-grid { grid-template-columns: 1fr; }
    .why-insights-grid { grid-template-columns: 1fr; }
    .popular-grid { grid-template-columns: 1fr; }
}