:root {
    --primary-blue: #003366;
    --primary-red: #cc0000;
    --accent-yellow: #ffcc00;
    --accent-green: #2ecc71;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.25);
}

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

body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10%;
    background: var(--white);
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-link { 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 64px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.5));
}

.logo-text {
    display: flex;
    gap: 5px;
}

.logo .sgt { 
    color: var(--accent-yellow); 
    font-weight: 700;
}

.logo .congo { 
    color: var(--primary-blue); 
    font-weight: 700;
}

.nav-links { 
    display: flex; 
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-links li { 
    position: relative;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--primary-blue); 
    font-weight: 600; 
    transition: color 0.3s ease;
    padding: 8px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.text {
    position: relative;
    z-index: 2;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover .nav-underline {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-red), #ff3333) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3) !important;
}

.btn-contact .nav-underline {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px 10%;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-underline {
        height: 2px;
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, rgba(0,51,102,0.9), rgba(204,0,0,0.7)), url('assets/hero-bg.jpg') center/cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    animation: drift 5s infinite;
}

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

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--accent-yellow);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight { 
    color: var(--accent-yellow); 
    text-shadow: 2px 2px 8px rgba(255,204,0,0.3);
}

/* Button Styles */
.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-yellow), #ffb800);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(255,204,0,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,204,0,0.4);
}

/* About Section */
.about-section {
    padding: 100px 10%;
    background: white;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
    border-left: 5px solid var(--primary-red);
    padding-left: 25px;
}

.about-highlight {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-green);
    margin-top: 30px;
}

.about-highlight h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Services Section */
.services-main {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}

.services-main h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 60px;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.service-card-main {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-main:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-red);
}

.service-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.service-card-main:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card-main:hover .service-icon {
    transform: scale(1.15) rotate(15deg);
}

.service-card-main h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-intro {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-details {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Services Details Section */
.services-details-section {
    padding: 100px 10%;
    background: white;
}

.services-details-section h2 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 50px 40px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.service-detail-block:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-detail-block.reverse {
    direction: rtl;
}

.service-detail-block.reverse .detail-content,
.service-detail-block.reverse .detail-image {
    direction: ltr;
}

.detail-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 10px;
    opacity: 0.3;
}

.detail-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 15px 0;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li strong {
    color: var(--primary-red);
    font-weight: 700;
}

.detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: transform 0.4s ease;
}

.service-detail-block:hover .detail-image {
    transform: scale(1.1);
}

/* Engagement Section */
.engagement-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, var(--primary-blue), #004d7a);
    color: white;
}

.engagement-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--accent-yellow);
}

.engagement-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.engagement-item {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.engagement-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.engagement-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: transform 0.4s ease;
}

.engagement-item:hover .engagement-icon {
    transform: scale(1.15) rotateZ(10deg);
}

.engagement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.engagement-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* Contact Section */
.contact-section {
    padding: 90px 10%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
}

.contact-intro,
.contact-form {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 37, 77, 0.08);
}

.contact-intro {
    padding: 36px 32px;
}

.contact-label {
    margin-bottom: 18px;
}

.contact-intro h2 {
    color: var(--primary-blue);
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.contact-intro p {
    color: #4d5d70;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-direct {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.contact-direct p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.contact-direct i {
    color: var(--primary-red);
}

.contact-form {
    padding: 36px 32px;
    display: grid;
    gap: 14px;
}

.contact-form label {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 51, 102, 0.12);
    border-radius: 14px;
    font: inherit;
    color: var(--dark-gray);
    background: #fbfdff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-submit {
    justify-self: start;
    margin-top: 8px;
}

/* Footer */
footer { 
    background: #1a1a1a; 
    color: white; 
    padding: 60px 10% 20px; 
}

.footer-content { 
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #333; 
    padding-bottom: 40px; 
}

.footer-links a { 
    color: #888; 
    text-decoration: none; 
    margin-left: 20px; 
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.copyright { 
    text-align: center; 
    padding-top: 25px; 
    color: #555; 
    font-size: 0.85rem; 
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px 10%;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav-underline {
        height: 2px;
    }

    .logo-image {
        height: 49px;
    }

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

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-main, .engagement-section, .contact-section {
        padding: 60px 5%;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
    }

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

    .services-main h2 {
        font-size: 2rem;
    }

    .about-section {
        padding: 60px 5%;
    }

    footer {
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 3%;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        margin: 4px 0;
    }

    .logo-image {
        height: 42px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .nav-links {
        top: 60px;
        padding: 15px 5%;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .service-card-main {
        padding: 25px 15px;
    }

    .engagement-content {
        gap: 20px;
    }

    .contact-intro,
    .contact-form {
        padding: 24px 18px;
    }

    .contact-intro h2 {
        font-size: 1.9rem;
    }
}

/* Founder Page */
.founder-page {
    background:
        radial-gradient(circle at top right, rgba(255, 204, 0, 0.12), transparent 24%),
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 52%, #eef3f8 100%);
}

.founder-hero {
    padding: 90px 10% 70px;
    position: relative;
    overflow: hidden;
}

.founder-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 204, 0, 0.12), transparent 22%),
        linear-gradient(135deg, rgba(3, 34, 68, 0.97), rgba(18, 66, 112, 0.95));
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.founder-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 50px;
    align-items: center;
}

.founder-copy {
    color: var(--white);
}

.founder-kicker,
.section-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.founder-kicker {
    color: var(--primary-blue);
    background: var(--accent-yellow);
}

.section-label {
    color: var(--primary-red);
    background: rgba(204, 0, 0, 0.08);
}

.founder-copy h1 {
    font-size: 4rem;
    line-height: 1.03;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.founder-copy h2 {
    font-size: 1.45rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #dce9f7;
    font-weight: 600;
    max-width: 700px;
}

.founder-copy p {
    font-size: 1.08rem;
    line-height: 1.95;
    max-width: 690px;
    color: rgba(255, 255, 255, 0.88);
}

.founder-portrait-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-portrait-card {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    padding: 16px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 204, 0, 0.58));
    box-shadow:
        0 30px 55px rgba(0, 0, 0, 0.24),
        0 0 0 10px rgba(255, 255, 255, 0.08);
}

.founder-portrait {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.96);
}

.founder-badge {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-blue);
    border-top: 4px solid var(--accent-yellow);
    border-radius: 18px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
    min-width: 210px;
}

.badge-label {
    display: block;
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.founder-story {
    padding: 80px 10%;
}

.founder-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 30px;
    align-items: start;
}

.founder-story-text,
.founder-quote-card,
.highlight-card,
.impact-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 37, 77, 0.07);
}

.founder-story-text {
    padding: 38px;
}

.founder-story-text h3,
.founder-impact-header h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.founder-story-text p {
    font-size: 1.04rem;
    line-height: 1.95;
    color: #46566b;
    margin-bottom: 18px;
}

.founder-quote-card {
    padding: 34px 30px;
    background: linear-gradient(135deg, #0b3d70, #1c5c99);
    color: var(--white);
}

.founder-quote-card i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 18px;
}

.founder-quote-card p {
    font-size: 1.15rem;
    line-height: 1.85;
}

.founder-highlight-band {
    padding: 20px 10% 80px;
}

.founder-highlight-grid,
.founder-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.highlight-card,
.impact-card {
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
}

.highlight-card::before,
.impact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
}

.highlight-number {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0, 51, 102, 0.14);
    margin-bottom: 16px;
}

.highlight-card h3,
.impact-card h4 {
    color: var(--primary-blue);
    margin-bottom: 14px;
}

.highlight-card p,
.impact-card p {
    color: #53657a;
    line-height: 1.8;
}

.founder-impact {
    padding: 0 10% 90px;
}

.founder-impact-header {
    text-align: center;
    margin-bottom: 34px;
}

.impact-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(255, 204, 0, 0.3));
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .founder-hero-inner,
    .founder-story-grid,
    .founder-highlight-grid,
    .founder-impact-grid {
        grid-template-columns: 1fr;
    }

    .founder-copy h1 {
        font-size: 3.2rem;
    }

    .founder-badge {
        bottom: -12px;
    }
}

@media (max-width: 768px) {
    .founder-hero,
    .founder-story,
    .founder-highlight-band,
    .founder-impact {
        padding-left: 5%;
        padding-right: 5%;
    }

    .founder-hero {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .founder-copy h1 {
        font-size: 2.6rem;
    }

    .founder-copy h2 {
        font-size: 1.2rem;
    }

    .founder-portrait-card {
        width: min(100%, 340px);
    }

    .founder-story-text,
    .founder-quote-card,
    .highlight-card,
    .impact-card {
        padding: 28px 22px;
    }

    .founder-story-text h3,
    .founder-impact-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .founder-copy h1 {
        font-size: 2.1rem;
    }

    .founder-copy p,
    .founder-story-text p,
    .founder-quote-card p,
    .highlight-card p,
    .impact-card p {
        font-size: 0.98rem;
    }

    .founder-badge {
        position: static;
        transform: none;
        margin-top: 16px;
    }
}
