/* ========================================
   HOME PAGE - BLACK & WHITE MINIMAL DESIGN
   Clean, professional, no decorations
   ======================================== */

/* ========================================
   REMOVE ALL COLORED EFFECTS & OUTLINES
   ======================================== */

/* Remove all blue outlines and focus rings */
* {
    outline: none !important;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

i, .fas, .fab, .far {
    outline: none !important;
    border: none !important;
}

a:focus, button:focus {
    outline: none !important;
}

/* Hide or simplify the page loader for minimal design */
#page-loader {
    background: #ffffff !important;
}

#page-loader .loader-background {
    background: #ffffff !important;
    opacity: 0.3 !important;
}

#page-loader .loader-background * {
    opacity: 0.2 !important;
    color: #cccccc !important;
    border-color: #e0e0e0 !important;
}

.loader-content .company-name {
    color: #000000 !important;
}

.loader-logo img {
    filter: grayscale(0) !important;
}

.terminal-prompt {
    color: #666666 !important;
}

.cursor-blink {
    color: #000000 !important;
}

/* ========================================
   HERO SECTION - MINIMAL
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff !important;
    overflow: visible;
    padding-top: 70px;
}

/* Remove all gradient backgrounds */
.hero::before {
    display: none !important;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0rem 0 0rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #000000 !important;
}

.hero-title-accent {
    background: none !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: #000000 !important;
    position: relative;
    font-weight: 800;
    border-bottom: 3px solid #000000;
    display: inline-block;
    padding-bottom: 0.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #555555 !important;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Minimal Button Styles */
.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.btn-primary:hover {
    background: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.btn-secondary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    box-shadow: none !important;
}

.btn-secondary:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ========================================
   HERO VISUAL - MINIMAL
   ======================================== */

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Enhanced floating elements with icons */
.floating-element {
    position: absolute;
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.floating-element i {
    font-size: 2.5rem;
    color: #000000;
}

.element-1 {
    width: 140px;
    height: 140px;
    top: 5%;
    right: 5%;
    animation: floatMinimal 6s ease-in-out infinite;
}

.element-1 i {
    font-size: 3rem;
}

.element-2 {
    width: 100px;
    height: 100px;
    top: 55%;
    left: 0%;
    animation: floatMinimal 8s ease-in-out infinite 1s;
}

.element-3 {
    width: 110px;
    height: 110px;
    bottom: 8%;
    right: 10%;
    animation: floatMinimal 7s ease-in-out infinite 2s;
}

@keyframes floatMinimal {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.floating-element:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    transform: scale(1.05);
}

/* Enhanced Minimal Code Window */
.code-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
    animation: codeWindowFloat 4s ease-in-out infinite;
    z-index: 2;
}

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

.code-header {
    background: #f5f5f5 !important;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid #e0e0e0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cccccc !important;
    transition: background 0.3s ease;
}

.code-dots span:nth-child(1) {
    background: #ff5f57 !important;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e !important;
}

.code-dots span:nth-child(3) {
    background: #28ca42 !important;
}

.code-filename {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    background: #fafafa !important;
}

.code-line {
    margin-bottom: 0.4rem;
    color: #333333 !important;
    line-height: 1.6;
}

.code-indent {
    padding-left: 2rem;
}

.code-blank {
    height: 0.8rem;
}

.code-keyword {
    color: #000000 !important;
    font-weight: 700;
}

.code-variable {
    color: #333333 !important;
    font-weight: 600;
}

.code-operator {
    color: #666666 !important;
}

.code-bracket {
    color: #000000 !important;
    font-weight: 600;
}

.code-property {
    color: #444444 !important;
}

.code-value {
    color: #000000 !important;
    font-weight: 600;
}

.code-string {
    color: #555555 !important;
    font-style: italic;
}

.code-number {
    color: #000000 !important;
    font-weight: 700;
}

.code-comment {
    color: #999999 !important;
    font-style: italic;
}

/* ========================================
   SCROLL INDICATOR - MINIMAL
   ======================================== */

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999999 !important;
    font-size: 0.85rem;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite, fadeInUp 1s ease 1.5s backwards;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #cccccc !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow i {
    color: #666666 !important;
    font-size: 0.9rem;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ========================================
   REMOVE ALL COMPLEX ANIMATIONS & EFFECTS
   ======================================== */

/* Remove or simplify AOS animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure body background is white */
body {
    background: #ffffff !important;
}

.main {
    background: #ffffff !important;
}

.section {
    background: #ffffff !important;
}

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

@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 350px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .code-window {
        width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding: 4rem 0 3rem;
    }

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

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-visual {
        height: 300px;
    }

    .code-window {
        width: 300px;
    }

    .element-1,
    .element-2,
    .element-3 {
        width: 80px !important;
        height: 80px !important;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-visual {
        height: 250px;
    }

    .code-window {
        width: 260px;
    }

    .code-content {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }
}

/* ========================================
   STATS SECTION - MINIMAL & COMPACT
   ======================================== */

.stats-section {
    padding: 3rem 0;
    background: #ffffff !important;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    border-color: #cccccc !important;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #000000 !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    outline: none !important;
    box-shadow: none !important;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #ffffff !important;
    outline: none !important;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666 !important;
    font-weight: 500;
}

/* ========================================
   SERVICES PREVIEW SECTION - MINIMAL
   ======================================== */

.services-preview {
    padding: 4rem 0;
    background: #fafafa !important;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666666 !important;
    line-height: 1.6;
}

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

.service-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    border-color: #cccccc !important;
}

.service-icon {
    width: 45px;
    height: 45px;
    background: #000000 !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.3rem;
    color: #ffffff !important;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: #666666 !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    color: #777777 !important;
    font-size: 0.85rem;
}

.service-features i {
    color: #000000 !important;
    font-size: 0.75rem;
}

.section-cta {
    text-align: center;
}

/* ========================================
   PORTFOLIO PREVIEW SECTION - BROWSER FRAME
   ======================================== */

.portfolio-preview {
    padding: 4rem 0;
    background: #ffffff !important;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.portfolio-preview-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: #cccccc !important;
}

/* Browser Frame */
.portfolio-preview-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
}

/* Browser Header */
.browser-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #e8e8e8;
    border-bottom: 1px solid #d0d0d0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

/* macOS Window Buttons */
.browser-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.browser-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.browser-btn.close {
    background: #ff5f56;
    border: 1px solid #e0443e;
}

.browser-btn.minimize {
    background: #ffbd2e;
    border: 1px solid #dea123;
}

.browser-btn.maximize {
    background: #27c93f;
    border: 1px solid #1aab2a;
}

.portfolio-preview-card:hover .browser-btn.close {
    background: #ff3b30;
}

.portfolio-preview-card:hover .browser-btn.minimize {
    background: #ffcc00;
}

.portfolio-preview-card:hover .browser-btn.maximize {
    background: #34c759;
}

.portfolio-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    filter: grayscale(0%);
    transition: all 0.4s ease;
    padding-top: 32px;
    transform: scale(1);
    background: #ffffff;
}

.portfolio-preview-card:hover .portfolio-preview-image img {
    transform: scale(1.03) translateY(-10px);
}

/* URL Bar */
.portfolio-preview-overlay {
    position: absolute;
    top: 6px;
    left: 120px;
    right: 12px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 3;
    opacity: 1;
}

.portfolio-preview-overlay::before {
    content: '🔒';
    font-size: 10px;
    margin-right: 5px;
}

.url-bar {
    font-size: 11px;
    color: #666666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.preview-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 4;
}

.portfolio-preview-card:hover .preview-btn {
    opacity: 1;
}

.preview-btn:hover {
    background: #000000 !important;
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-preview-content {
    padding: 1.25rem;
    background: #fafafa;
}

.portfolio-preview-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.portfolio-preview-description {
    font-size: 0.875rem;
    color: #666666 !important;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.portfolio-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.portfolio-preview-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #666666 !important;
    transition: all 0.2s ease;
}

.portfolio-preview-tags span:hover {
    border-color: #000000 !important;
    color: #000000 !important;
}

.portfolio-preview-tags i {
    font-size: 0.85rem;
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */

.about-preview {
    padding: 5rem 0;
    background: #ffffff !important;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.about-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.about-badge i {
    font-size: 1.2rem;
}

/* Director Info - Below Image - Creative Design */
.director-info {
    text-align: center;
    padding: 2rem 1rem 1.75rem;
    background: #fafafa;
    margin-top: 2rem;
    position: relative;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.director-info::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #000000;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 1px #e0e0e0;
}

.director-info::after {
    content: '▲';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
    font-size: 0.7rem;
    z-index: 1;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000 !important;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.75px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.director-name::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 2.5rem;
    color: #e0e0e0;
    font-family: Georgia, serif;
    line-height: 1;
}

.director-name::after {
    content: '"';
    position: absolute;
    right: -20px;
    bottom: -10px;
    font-size: 2.5rem;
    color: #e0e0e0;
    font-family: Georgia, serif;
    line-height: 1;
}

.director-role {
    font-size: 0.8rem;
    color: #666666 !important;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.director-role::before,
.director-role::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, #000000, transparent);
}

.director-role::before {
    background: linear-gradient(to right, transparent, #000000);
}

.director-role::after {
    background: linear-gradient(to left, transparent, #000000);
}

.about-preview-text {
    font-size: 1.05rem;
    color: #555555 !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666 !important;
    font-size: 0.95rem;
}

.highlight-item i {
    color: #000000 !important;
    font-size: 1.1rem;
}

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

.cta-section {
    padding: 5rem 0;
    background: #fafafa !important;
}

.cta-card {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: #000000 !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.cta-icon i {
    font-size: 2.5rem;
    color: #ffffff !important;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem;
    color: #666666 !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666 !important;
    font-size: 0.95rem;
}

.cta-feature i {
    color: #000000 !important;
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE FOR NEW SECTIONS
   ======================================== */

@media screen and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem 0.75rem;
    }

    .services-preview,
    .portfolio-preview,
    .about-preview,
    .cta-section {
        padding: 3rem 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .portfolio-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .director-info {
        padding: 1.75rem 1rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .director-info::before {
        width: 20px;
        height: 20px;
        top: -10px;
    }
    
    .director-name {
        font-size: 1.3rem;
        letter-spacing: -0.5px;
    }
    
    .director-name::before,
    .director-name::after {
        font-size: 2rem;
    }
    
    .director-name::before {
        left: -15px;
        top: -8px;
    }
    
    .director-name::after {
        right: -15px;
        bottom: -8px;
    }
    
    .director-role {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .director-role::before,
    .director-role::after {
        width: 25px;
    }

    .cta-card {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .service-icon i {
        font-size: 1.15rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .director-info {
        padding: 1.5rem 0.75rem 1.25rem;
        margin-top: 1.25rem;
    }
    
    .director-info::before {
        width: 18px;
        height: 18px;
        top: -9px;
    }
    
    .director-info::after {
        font-size: 0.6rem;
        top: -7px;
    }
    
    .director-name {
        font-size: 1.15rem;
        letter-spacing: -0.3px;
        padding: 0 1rem;
    }
    
    .director-name::before,
    .director-name::after {
        font-size: 1.75rem;
    }
    
    .director-name::before {
        left: -10px;
        top: -6px;
    }
    
    .director-name::after {
        right: -10px;
        bottom: -6px;
    }
    
    .director-role {
        font-size: 0.7rem;
        letter-spacing: 1px;
        gap: 0.4rem;
    }
    
    .director-role::before,
    .director-role::after {
        width: 20px;
    }

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