/* ============================================
   STONEGATE CAPITAL STYLE - EXACT MATCH
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fafaf9;
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    background: #fafaf9;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

nav a.active {
    color: #0099ff;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main.content {
    width: 100%;
}

/* ============================================
   SECTIONS - BASE STYLES
   ============================================ */

.section {
    width: 100%;
    min-height: 80vh;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 50vh;
    padding: 0;
    overflow: visible;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}

.split-section .section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.split-section .section-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.split-left,
.split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
}

.split-center-cta {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.split-cta-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    background: #1a1a1a;
}

.split-cta-link:hover {
    border-color: #2563eb;
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
    animation: buttonGlow 0.6s ease;
}

.split-cta-link .arrow-down {
    display: inline-block;
    transition: transform 0.3s;
}

.split-cta-link:hover .arrow-down {
    transform: translateY(4px);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-number {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: none;
}

.section-label-small {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 2rem;
}

/* Light sections */
.light-section {
    background-color: #fafaf9;
    color: #1a1a1a;
}

/* Dark sections */
.dark-section {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-section .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.dark-section .section-number {
    color: #ffffff;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 60vh;
    padding-top: 1rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(236, 72, 153, 0.25) 40%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 50%;
    filter: blur(80px);
    animation: subtleGradientFlow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-terminal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    perspective: 600px;
    min-height: 400px;
    animation: subtleFloat 6s ease-in-out infinite;
}

.hero-terminal :global(.computer-container) {
    transform-origin: center;
    animation: tiltHover 8s ease-in-out infinite;
    width: 100%;
    max-width: 1200px;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes tiltHover {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(-8px);
    }
    75% {
        transform: translateY(-4px);
    }
}

.hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-section .section-header {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    background: linear-gradient(-45deg, #2563eb 0%, #1e40af 25%, #2563eb 50%, #1e40af 75%, #2563eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    width: fit-content;
}

.cta-link:hover {
    gap: 1rem;
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.cta-link .arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.cta-link:hover .arrow {
    transform: translateX(4px);
}

.dark-section .cta-link {
    color: #ffffff;
    background: linear-gradient(-45deg, #2563eb 0%, #1e40af 25%, #2563eb 50%, #1e40af 75%, #2563eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    border-color: transparent;
}

.dark-section .cta-link:hover {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.hero-image,
.problem-image,
.results-image {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #ddd 0%, #888 100%);
    border-radius: 0;
    z-index: 1;
    opacity: 0.3;
}

.hero-image,
.problem-image,
.results-image {
    display: none;
}

/* ============================================
   GRADIENT ANIMATION
   ============================================ */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes subtleGradientFlow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(100px, -100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-heading {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
}

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.dark-section .section-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION WITH BACKGROUND IMAGE
   ============================================ */

.section-with-bg {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 0;
    position: relative;
}

.section-content-wrapper {
    padding: 12rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.section-bg-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ddd 0%, #888 100%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 33.33%;
    z-index: 1;
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */

.how-we-work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 900px;
}

.work-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.work-label {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 1rem;
}

.work-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.work-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.work-price {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.section-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
    padding: 0.65rem 1rem;
    border-radius: 2px;
    background: linear-gradient(-45deg, #2563eb 0%, #1e40af 25%, #2563eb 50%, #1e40af 75%, #2563eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    margin-top: 2rem;
    width: fit-content;
}

.section-cta-link:hover {
    gap: 1rem;
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.section-cta-link .arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.section-cta-link:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   HOW WE DO IT SECTION
   ============================================ */

.how-we-do-it {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
}

.how-we-do-it-item {
    padding: 0;
}

.how-we-do-it-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.how-we-do-it-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.dark-section .how-we-do-it-title {
    color: #ffffff;
}

.dark-section .how-we-do-it-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION TECH GRID
   ============================================ */

.section-tech-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 100%;
}

.tech-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.tech-grid-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.tech-grid-item:hover .tech-grid-logo {
    opacity: 1;
    transform: translateY(-2px);
}

.tech-grid-name {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* ============================================
   ABOUT & TESTIMONIALS SECTION
   ============================================ */

.about-testimonials-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 2rem 5%;
    align-items: start;
}

.about-left .section-header {
    display: none;
}

.about-left .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-top: 0;
}

.testimonials-right .section-header {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.testimonials-right .section-label {
    font-size: 12px;
    color: #888;
    text-align: right;
    display: block;
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ddd 0%, #888 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.about-left .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-left .section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.about-list li {
    margin-bottom: 0.5rem;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
}

.testimonials-right .section-header {
    margin-bottom: 3rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    margin-top: 0;
}

.testimonial-block {
    padding-bottom: 0;
    border-bottom: none;
}

.dark-section .testimonial-block {
    border-bottom-color: transparent;
}

.testimonial-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.testimonial-quote {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.dark-section .testimonial-quote {
    color: #ffffff;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.dark-section .testimonial-author {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-role {
    font-size: 0.7rem;
    color: #888;
    font-weight: 400;
    margin: 0;
}

.dark-section .testimonial-role {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-linkedin {
    font-size: 0.65rem;
    color: #0a66c2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 0.15rem;
}

.testimonial-linkedin:hover {
    color: #004182;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
}

.blog-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.dark-section .blog-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.blog-item:last-child {
    border-bottom: none;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.dark-section .blog-date {
    color: rgba(255, 255, 255, 0.6);
}

.blog-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.dark-section .blog-title {
    color: #ffffff;
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.dark-section .blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.dark-section .blog-link {
    color: #ffffff;
}

.blog-link:hover {
    gap: 1rem;
}

/* ============================================
   RULES SECTION
   ============================================ */

.subtitle {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    color: #666;
}

.rules-header {
    margin-bottom: 4rem;
}

.rules-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #888;
    margin-top: 0.5rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 2rem;
    max-width: 1200px;
}

.rule-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.rule-number {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.rule-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.rule-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d0d0;
}

.rule-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.dark-section .rule-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-section .rule-title {
    color: #ffffff;
}

.dark-section .rule-subtitle {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dark-section .rule-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */

.tech-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.tech-names-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.tech-name-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.tech-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

.tech-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.tech-carousel::-webkit-scrollbar {
    height: 3px;
}

.tech-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.tech-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.tech-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tech-logo-item {
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tech-logo-item:hover .tech-logo-placeholder {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
    min-height: auto;
}

.cta-section .section-heading {
    margin-left: auto;
    margin-right: auto;
}

.cta-section .section-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-link.large {
    font-size: 16px;
    padding: 0.75rem 1.25rem;
    margin-top: 2rem;
    width: fit-content;
    background: linear-gradient(-45deg, #2563eb 0%, #1e40af 25%, #2563eb 50%, #1e40af 75%, #2563eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
    border: 2px solid transparent;
}

.cta-link.large:hover {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
}

.dark-section .cta-subtext {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTION CONTENT
   ============================================ */

.section-content {
    position: relative;
    z-index: 2;
}

.section-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    z-index: 1;
    opacity: 0.1;
}

.dark-section .section-image {
    opacity: 0.05;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #1a1a1a;
    color: #888;
    font-size: 0.9rem;
}

.footer-blog-section {
    border-top: 1px solid #333;
    padding: 4rem 5%;
}

.footer-blog-header {
    margin-bottom: 3rem;
}

.footer-blog-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-blog-section .blog-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.footer-blog-section .blog-date {
    color: rgba(255, 255, 255, 0.6);
}

.footer-blog-section .blog-title {
    color: #ffffff;
}

.footer-blog-section .blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

.footer-blog-section .blog-link {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 5%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .footer-blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section {
        padding: 8rem 5%;
        min-height: auto;
    }

    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-left,
    .split-right {
        padding: 8rem 5%;
        min-height: auto;
    }

    .split-center-cta {
        position: static;
        transform: none;
        margin: 3rem 0;
        display: flex;
        justify-content: center;
    }

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

    .section-content-wrapper {
        padding: 8rem 5%;
    }

    .section-bg-image {
        width: 100%;
        height: 200px;
        position: relative;
        right: 0;
        top: auto;
        bottom: auto;
    }

    .about-testimonials-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 8rem 5%;
    }

    .about-image {
        height: 250px;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-terminal {
        min-height: 350px;
    }

    .hero-terminal :global(.computer-container) {
        max-width: 1000px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .how-we-work {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-we-do-it {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .section-tech-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem;
        margin-top: 3rem;
    }

    .tech-grid-logo {
        width: 30px;
        height: 30px;
    }

    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .tech-names-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .tech-intro {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .footer-blog-section {
        padding: 3rem 5%;
    }

    .footer-blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .footer-blog-title {
        font-size: 1.25rem;
    }

    .section {
        padding: 6rem 5%;
    }

    .split-left,
    .split-right {
        padding: 6rem 5%;
    }

    .split-center-cta {
        margin: 2.5rem 0;
    }

    .section-content-wrapper {
        padding: 6rem 5%;
    }

    .about-testimonials-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 6rem 5%;
    }

    .about-image {
        height: 220px;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 5%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-terminal {
        min-height: 300px;
    }

    .hero-terminal :global(.computer-container) {
        max-width: 90vw;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .how-we-do-it-title {
        font-size: 1.25rem;
    }

    .section-tech-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .tech-grid-logo {
        width: 28px;
        height: 28px;
    }

    .tech-grid-name {
        font-size: 0.7rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-we-do-it {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rule-number {
        font-size: 2rem;
    }

    .rule-title {
        font-size: 1.25rem;
    }

    .tech-names-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .tech-name-item {
        font-size: 0.85rem;
    }

    .tech-intro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .tech-carousel-wrapper {
        margin-top: 0.75rem;
    }

    .tech-logo-placeholder {
        width: 55px;
        height: 55px;
    }

    .tech-logo-item {
        flex: 0 0 60px;
    }

    .hero-image,
    .problem-image,
    .results-image {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-blog-section {
        padding: 2rem 5%;
    }

    .footer-blog-section .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-blog-title {
        font-size: 1.1rem;
    }

    .footer-blog-header {
        margin-bottom: 2rem;
    }

    .section {
        padding: 4rem 5%;
    }

    .split-left,
    .split-right {
        padding: 4rem 5%;
    }

    .split-center-cta {
        margin: 2rem 0;
    }

    .split-cta-link {
        font-size: 14px;
    }

    .section-content-wrapper {
        padding: 4rem 5%;
    }

    .about-testimonials-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 5%;
    }

    .about-left .section-heading {
        font-size: 1.5rem;
    }

    .about-image {
        height: 200px;
    }

    .section-tech-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .tech-grid-logo {
        width: 26px;
        height: 26px;
    }

    .tech-grid-name {
        font-size: 0.65rem;
    }

    .hero-section {
        padding: 2rem 5%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 0.9rem;
    }

    .cta-link {
        font-size: 14px;
    }

    nav {
        gap: 1.5rem;
    }

    nav a {
        font-size: 12px;
    }

    .tech-names-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin-bottom: 1.25rem;
    }

    .tech-name-item {
        font-size: 0.8rem;
    }

    .tech-intro {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .tech-carousel-wrapper {
        margin-top: 0.5rem;
    }

    .tech-logo-item {
        flex: 0 0 55px;
    }

    .tech-logo-placeholder {
        width: 50px;
        height: 50px;
    }
}
