@font-face {
  font-family: 'myfont';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-style: normal;
}

:root {
    --text-color: #ffffff;
    --primary: #dc2626;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --blue-accent: #2563eb;
    --red-accent: #dc2626;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --darkest: #000000;
    --darker: #0a0a0a;
    --dark: #1a1a1a;
    --mid: #2a2a2a;
    --light: #404040;
    --lighter: #94a3b8;
    --lightest: #cbd5e1;

    --text-gradient: linear-gradient(45deg, var(--accent), var(--lighter));
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --red-blue-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.08);
    --glass-dark: rgba(0, 0, 0, 0.9);

    --border-radius-primary: 8px;
    --border-radius-secondary: 12px;

    --font-family-primary: 'myfont', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* KEYFRAMES */
@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

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

@keyframes pulse {

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

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

@keyframes logoSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* END OF KEYFRAMES */

/* MAIN STUFF */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-primary);
}

html {
    font-size: 16px;
}

body {
    background: var(--darker);
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
    width: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    margin: auto;
    max-width: min(90%, 1140px);
    padding: var(--spacing-xl);
}

.cta-button {
    border: none;
    margin: 0 20px;
    cursor: pointer;
    overflow: hidden;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow-md);
    pointer-events: auto !important;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-values h2,
.team-section h2,
.faq-section h2,
#founder-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: var(--font-weight-semibold);
}

.ispsecurity-card {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--border-radius-secondary);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.ispsecurity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
}

.no-js .fade-me {
    opacity: 1;
    transform: none;
}

.js .fade-me {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1000ms cubic-bezier(.22, .9, .29, 1),
        transform 1000ms cubic-bezier(.22, .9, .29, 1);
    transition-delay: var(--delay, 0s);
    will-change: transform, opacity;
}

.js .fade-me.in-view {
    opacity: 1;
    transform: none;
}

/* END OF MAIN STUFF */

/* SECTION HOME */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%),
        radial-gradient(ellipse 100% 100% at top, rgba(30, 64, 175, 0.1), transparent),
        radial-gradient(ellipse 100% 100% at bottom, rgba(220, 38, 38, 0.1), transparent),
        #0a0a0a;
    background-size: 50px 50px, 100% 100%, 100% 100%, 100% 100%;
    overflow: hidden;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

#hero::before {
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, var(--darker), 20%, transparent);
}

#hero-content {
    margin-top: 50px;
    text-align: center;
    position: relative;
    pointer-events: none;
    display: flex;
    flex-flow: wrap;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 1140px;
    z-index: 10;
}

#hero-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    color: whitesmoke;
    max-width: 900px;
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--spacing-xl);
}

#hero-subtitle span {
    white-space: pre;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 100%;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(135deg, #dc2626, #2563eb) 1;
    font-weight: var(--font-weight-semibold);
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

#features-title,
#resources-title,
#services-title,
#hero-title,
#contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/*
==================
    INDEX.HTML
==================
*/

#consultation-button {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

#consultation-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.5s ease;
}

#consultation-button:hover::before {
    left: 100%;
}

#get-demo-button {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
    transition: 0.5s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-image: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(37, 99, 235, 0.3)) 1;
}

#get-demo-button:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(37, 99, 235, 0.2));
    border-image: linear-gradient(135deg, rgba(220, 38, 38, 0.5), rgba(37, 99, 235, 0.5)) 1;
}

/* SECTION COMPANIES - REMOVED */

/* SECTION OUR ABOUT */
/*
#section-two-h1 {
    position: relative;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#section-two-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

#section-two-goals h2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
}

#section-two-goals p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--lighter);
}
*/
/* SECTION OUR SERVICES */
#section-our-services {
    background: 
        linear-gradient(0deg, transparent 24%, rgba(220, 38, 38, 0.02) 25%, rgba(220, 38, 38, 0.02) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.02) 75%, rgba(30, 64, 175, 0.02) 76%, transparent 77%),
        linear-gradient(55deg, transparent, rgba(220, 38, 38, 0.15), rgba(30, 64, 175, 0.15), transparent);
    background-size: 50px 50px, 100% 100%;
    text-align: center;
    position: relative;
    padding: 4rem 0;
}

#section-our-services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 24%, rgba(220, 38, 38, 0.02) 25%, rgba(220, 38, 38, 0.02) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.02) 75%, rgba(30, 64, 175, 0.02) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.service-grid-card {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #dc2626, #2563eb) 1;
    border-radius: var(--border-radius-secondary);
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
    display: block;
}

.service-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.25), 0 15px 40px rgba(37, 99, 235, 0.15);
    border-color: transparent;
    border-image: linear-gradient(90deg, #dc2626, #2563eb) 1;
}

.service-grid-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.service-grid-icon i {
    font-size: 2rem;
    color: white;
}

.service-grid-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.service-grid-card p {
    color: var(--lighter);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card-link:hover {
    transform: translateX(5px);
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-grid-card {
        padding: 2rem;
    }
}

#section-our-services::before {
    z-index: -2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 15%;
    height: 100%;
    background-attachment: fixed !important;
    background: url(https://images.pexels.com/photos/6466141/pexels-photo-6466141.jpeg?cs=srgb&dl=pexels-sejio402-6466141.jpg&fm=jpg&w=1920&h=1280);
}

#section-our-services p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

#section-our-services-h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#section-our-services p {
    position: relative;
    z-index: 1;
}

/* Old services layout styles removed - now using grid */

/* SECTION TESTIMONY */
#section-testimony {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
    padding: var(--spacing-2xl) 0;
}

#section-testimony-h1 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 7px;
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration-color: #dc2626;
}

#testimonials {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: var(--spacing-lg);
    justify-content: center;
}

.testimonial-container {
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--mid);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-secondary);
}

.testimonial-container p {
    opacity: 85%;
    line-height: 1.6;
    font-style: italic;
    color: var(--lighter);
}

.testimonial-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    border-image: linear-gradient(135deg, #dc2626, #2563eb) 1;
}

.section-testimony-part1 {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.section-testimony-part1 img {
    user-select: none;
    width: 75px;
    border-radius: 100%;
    border: 3px solid var(--primary);
}

.section-testimony-part2 {
    margin-top: var(--spacing-lg);
}

.testimonial-text-container {
    margin-left: var(--spacing-lg);
}

.testimonial-name {
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.testimonial-profession {
    color: var(--lighter);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

/*
=====================
    SERVICES.HTML
=====================
*/

/*#section-services {
    padding: var(--spacing-2xl) var(--spacing-lg);
}*/

/* ===================================
   SERVICES PAGE - PROFESSIONAL REDESIGN
   =================================== */

/* Services Hero Section */
#services-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%),
        radial-gradient(ellipse 100% 100% at top, rgba(30, 64, 175, 0.15), transparent),
        radial-gradient(ellipse 100% 100% at bottom, rgba(220, 38, 38, 0.15), transparent),
        #0a0a0a;
    background-size: 50px 50px, 100% 100%, 100% 100%, 100% 100%;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 4rem;
}

#services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

#services-hero::before {
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, var(--darker), 20%, transparent);
}

#services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

#services-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

#services-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: whitesmoke;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--lighter);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

/* Services Sections */
.services-section {
    padding: 5rem 0;
    position: relative;
}

#section-penetration-testing {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
}

.services-section-alt {
    background: linear-gradient(0deg, var(--darker) 0%, var(--dark) 50%);
}

/* Services Category Header */
.services-category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.services-category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
}

/* Simple Services List */
.services-list-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.service-item-simple {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #dc2626, #2563eb) 1;
    border-radius: var(--border-radius-secondary);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-item-simple:hover {
    transform: translateX(5px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.15), 0 5px 20px rgba(37, 99, 235, 0.1);
}

.service-item-simple h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-item-simple p {
    color: var(--lighter);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Advanced Services Grid - Keep for reference but not used */
.services-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Service Card Advanced */
.service-card-advanced {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-advanced:hover .service-card-glow {
    opacity: 1;
}

.service-card-advanced:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3), 0 20px 60px rgba(37, 99, 235, 0.2);
}

.service-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Featured Badge */
.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.service-card-featured {
    border: 2px solid rgba(220, 38, 38, 0.4);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

/* Service Card Header */
.service-card-header {
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3), 0 4px 20px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
}

.service-card-advanced:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.service-card-advanced h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Service Card Body */
.service-card-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card-body > p {
    color: var(--lighter);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    color: var(--lighter);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li i {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
    min-width: 20px;
    flex-shrink: 0;
}

/* Service Card Footer */
.service-card-footer {
    margin-top: auto;
}

.service-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.service-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-cta-btn:hover::before {
    left: 100%;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4), 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Services CTA Section */
#services-cta {
    padding: 6rem 0;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(220, 38, 38, 0.02) 25%, rgba(220, 38, 38, 0.02) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.02) 75%, rgba(30, 64, 175, 0.02) 76%, transparent 77%),
        radial-gradient(ellipse 100% 100% at center, rgba(30, 64, 175, 0.1), rgba(220, 38, 38, 0.1), transparent);
    background-size: 50px 50px, 100% 100%;
    text-align: center;
    position: relative;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.services-cta-content > p {
    font-size: 1.3rem;
    color: var(--lighter);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3), 0 4px 20px rgba(37, 99, 235, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4), 0 8px 30px rgba(37, 99, 235, 0.3);
}

.cta-button-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid;
    border-image: linear-gradient(135deg, #dc2626, #2563eb) 1;
    border-radius: 12px;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
    transform: translateY(-3px);
}

/* Construction Notice */
.construction-notice {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #dc2626, #2563eb) 1;
    border-radius: var(--border-radius-secondary);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 700px;
}

.notice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3), 0 4px 20px rgba(37, 99, 235, 0.2);
}

.notice-icon i {
    font-size: 2rem;
    color: white;
}

.construction-notice h2 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.construction-notice p {
    color: var(--lighter);
    font-size: 1.1rem;
    line-height: 1.7;
}

.construction-form-message {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--border-radius-secondary);
    padding: 3rem;
    text-align: center;
}

.notice-content-box h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.notice-content-box > p {
    color: var(--lighter);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.primary-contact-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-left: 4px solid #dc2626;
    border-radius: var(--border-radius-primary);
    padding: 2rem;
    margin-top: 2rem;
}

.primary-contact-box h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.primary-contact-box p {
    color: var(--lighter);
    margin-bottom: 0.5rem;
}

.primary-contact-box strong {
    color: var(--text-color);
}

.email-link-large {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: #2563eb;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.email-link-large:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-list-simple {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.25rem;
    }

    .service-item-simple {
        padding: 1.5rem;
    }

    .construction-notice {
        padding: 2rem 1.5rem;
    }

    .construction-form-message {
        padding: 2rem;
    }

    .services-grid-advanced {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .service-card-advanced {
        padding: 2rem;
        min-height: auto;
    }

    .category-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .category-icon-wrapper i {
        font-size: 2rem;
    }

    #services-hero {
        min-height: 50vh;
        padding-top: 120px;
    }

    .hero-stats {
        gap: 2rem;
    }
}

/*
=====================
    FEATURES.HTML
=====================
*/
#features-title {
    margin: var(--spacing-2xl) auto var(--spacing-sm);
    line-height: 1;
    text-align: center;
    padding-bottom: var(--spacing-sm);
}

#features-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) auto 0;
    place-content: center;
}

.features-list-header {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    place-content: center;
    margin-bottom: 20px;
}

.features-list-header h3 {
    font-size: var(--spacing-lg) !important;
    margin-right: auto;
    text-align: left;
}

.features-list p {
    text-align: left;
}

.feature-item {
    width: 100%;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid var(--light);
    border-radius: var(--border-radius-primary);
    box-shadow: var(--shadow-md);
}

.feature-item p {
    font-size: calc(var(--spacing-sm) + 2px);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    margin-left: 20px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #dc2626, #2563eb);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-benefits {
    color: var(--lighter);
    text-align: left;
    list-style: none;
    list-style-position: inside;
    margin: 50px 0 0;
    vertical-align: middle;
    /*list-style: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZjRmM2YzIiBkPSJtOS41NSAxOGwtNS43LTUuN2wxLjQyNS0xLjQyNUw5LjU1IDE1LjE1bDkuMTc1LTkuMTc1TDIwLjE1IDcuNHoiLz48L3N2Zz4=);*/
}

.feature-benefits li {
    margin: 15px 0;
}

.feature-benefits li::before {
    content: "✓ ";
}

/*
======================
    RESOURCES.HTML
======================
*/
.resources-section {
    padding: var(--spacing-2xl) 0;
}

.resources-container {
    margin: 0 auto;
    transform: translateY(30px);
}

.header-and-view-all {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.header-and-view-all a {
    margin-left: auto;
    white-space: pre;
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-and-view-all a:after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--primary);
    width: 0%;
    margin: auto;
    transition: 0.5s;
}

.header-and-view-all a:hover:after {
    width: 100%;
}

.header-and-view-all a:hover {
    color: var(--secondary);
}

.resources-container h2 {
    font-weight: var(--font-weight-semibold);
    font-size: 2.5rem;
}

#premium-resources {
    margin-bottom: var(--spacing-xl);
    background: radial-gradient(at top, var(--dark), var(--darker));
}

.resources-title {}

.resources-description {
    opacity: 80%;
    font-size: 1.3rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    color: var(--lighter);
    line-height: 1.7;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.resource-item {
    display: flex;
    background: var(--mid);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light);
    border-radius: var(--border-radius-primary);
    height: 100%;
    flex-direction: column;
    transition: 0.25s;
}

.resource-item p {
    line-height: 1.6;
    color: var(--lightest);
}

.resources-list img {
    max-width: 100%;
    transition: 0.5s;
    height: 200px;
    object-fit: cover;
}

.resource-item h3 {
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.resource-item a {
    color: white;
    display: flex;
    margin-top: 1rem;
    transition: 0.25s;
    border-radius: 25px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-underline-offset: 2px;
    margin: var(--spacing-lg) auto 0;
    font-weight: var(--font-weight-medium);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.resource-item .fa-download {
    margin-right: 1rem;
}

.paid-resource-item {
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.paid-resource-item::before {
    content: 'PREMIUM';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.paid-resource-item {
    padding: 0;
    cursor: pointer;
}

.resource-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.resource-content h3 {
    font-size: 1.5rem;
}

.resource-content p {
    margin-bottom: 50px;
}

.paid-resource-item img {
    transform: scale(1.0);
    width: 100%;
}

.resource-meta {
    margin-top: auto;
}

.resource-meta div {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.resource-meta i {
    color: var(--primary);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.resource-icon i {
    font-size: 1.2rem;
    color: white;
}

/*
==================
    ABOUT.HTML
==================
*/
#about-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

#about-hero::before {
    content: "";
    top: 0;
    opacity: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/4/47/DEF_CON_17_CTF_competition.jpg/2560px-DEF_CON_17_CTF_competition.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

#about-hero h1 {}

#about-hero p {
    font-size: 1.3rem;
    color: var(--lightest);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-story {
    position: relative;
    background: linear-gradient(45deg, #0a0a0a, rgba(220, 38, 38, 0.05), #0a0a0a);
}

.company-story::before {
    opacity: 25%;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;
    background: url(https://images.pexels.com/photos/3184325/pexels-photo-3184325.jpeg?cs=srgb&dl=pexels-fauxels-3184325.jpg&fm=jpg&w=1920&h=1280) top / cover no-repeat;
    background-attachment: fixed;
}

.story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content span {
    background: var(--text-gradient);
    font-weight: var(--font-weight-extrabold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 2rem;
}

.stat-item {
    width: 100%;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-secondary);
    border: 1px solid rgba(220, 38, 38, 0.3);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(220, 38, 38, 0.1));
    backdrop-filter: blur(10px);
    position: relative;
}

.stat-item h3 {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: var(--font-weight-medium);
}

.mission-values {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--lighter);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.position {
    background: linear-gradient(135deg, #2563eb, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.bio {
    color: var(--lighter);
    line-height: 1.6;
}

.certifications {
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
    padding: 4rem 0;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.cert-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.cert-item h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--lighter);
    font-size: 0.9rem;
}

.careers-section {
    padding: 1rem 0;
}

#careers h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.careers-section>.container>p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--lighter);
    margin-bottom: 3rem;
}

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

.careers-info {
    position: relative;
}

#careers-lists {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.career-content {
    padding: 0;
    border-bottom: 7px solid var(--dark);
}

.career-content div {
    display: flex;
    margin: auto;
    align-items: center;
    flex-direction: column;
    padding: var(--spacing-sm);
}

.career-content h4 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-normal);
}

.career-content img {
    border-top-left-radius: var(--border-radius-primary);
    border-top-right-radius: var(--border-radius-primary);
    width: 100%;
    height: -webkit-fill-available;
}

.career-content button {
    width: 10em;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, #dc2626, #2563eb) 1;
    border-radius: var(--border-radius-primary);
    background: transparent;
    padding: var(--spacing-xs);
    transition: 0.25s;
}

.career-content button:hover {
    color: var(--text-color);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    color: white;
    border-image: none;
    border: 1px solid transparent;
}

#why-ispsecurity {
    text-align: left !important;
    background: linear-gradient(to left, rgba(220, 38, 38, 0.3), rgba(0, 0, 0, 0.85)), url(https://images.pexels.com/photos/1438081/pexels-photo-1438081.jpeg?cs=srgb&dl=pexels-marta-klement-636760-1438081.jpg&fm=jpg&w=1920&h=1282) center / cover no-repeat;
    background-position: top;
    top: 0;
    z-index: -1;
    left: 0;
    height: 100%;
    width: 100%;
}

#why-ispsecurity h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.careers-cta h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-normal);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.careers-info ul {
list-style: none;
padding: 0;
}

.careers-info li {
    list-style: none;
    opacity: 85%;
    font-size: 1.25rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.careers-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.careers-cta .cta-button {
    margin-top: 2rem;
}

.founder-section {}

#founder-icon-name img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

#founder-icon-name {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

#founder-icon-name h3 {
    margin-top: 10px;
}

.founder-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
}

.founder-icon {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
    overflow: hidden;
    padding: 4px;
}

.founder-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.founder-icon i {
    color: #fff;
    font-size: 3rem;
}

.founder-content h2 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.founder-name {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
}

.founder-content p {
    color: var(--lighter);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/*
====================
    CONTACT.HTML
====================
*/

.contact-hero {
    padding: 4rem 0;
    position: relative;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.contact-hero::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 50%;
    height: 100%;
    background: url(https://images.pexels.com/photos/6325981/pexels-photo-6325981.jpeg?cs=srgb&dl=pexels-vanessa-garcia-6325981.jpg&fm=jpg&w=1920&h=1280) center / cover no-repeat;
    background-attachment: fixed;
}


.contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 30%;
    background:
        linear-gradient(var(--darker), transparent),
        url(https://images.pexels.com/photos/8867265/pexels-photo-8867265.jpeg?cs=srgb&dl=pexels-yankrukov-8867265.jpg&fm=jpg&w=1920&h=2880) center / cover no-repeat;
    background-attachment: fixed;
    filter: sepia(1) hue-rotate(180deg) saturate(200%);
    z-index: -2;
}

.contact-hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 85%;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-method,
.office-hours,
.form-group input,
.form-group select,
.form-group textarea {
    backdrop-filter: blur(10px);
    background: rgba(200, 200, 255, 0.1);
    border-radius: var(--border-radius-secondary);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.method-icon i {
    color: white;
    font-size: 1.2rem;
}

.method-content h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-content p {
    color: var(--lighter);
    margin: 0;
}

.method-content a {
    color: var(--lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--primary);
}

.office-hours {
    padding: 1.5rem;
}

.office-hours h3 {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.office-hours p {
    color: var(--lighter);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.office-hours em {
    color: #dc2626;
    opacity: 80%;
    font-style: normal;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group option {
    background: var(--darker);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    border-image: linear-gradient(135deg, #dc2626, #2563eb) 1;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1), 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lighter);
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #dc2626;
}

.checkbox-label a {
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-underline-offset: 2px;
}

.checkbox-label a:hover {
    filter: brightness(1.2);
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626, #2563eb);
    color: white;
    border: none;
    border-radius: var(--border-radius-primary);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4), 0 10px 30px rgba(37, 99, 235, 0.3);
}

.accordion {
    margin-bottom: 10px;
}

.accordion summary,
.accordion p {
    padding: 10px 20px;
}

.accordion summary {
    display: flex;
    background: var(--mid);
    cursor: pointer;
    font-weight: bold;
    align-items: center;
    list-style: none;
}

.accordion h3 {
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-icon {
    margin-left: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmRmZGZkIiBkPSJNMTEuMTc4IDE5LjU2OWEuOTk4Ljk5OCAwIDAgMCAxLjY0NCAwbDktMTNBLjk5OS45OTkgMCAwIDAgMjEgNUgzYTEuMDAyIDEuMDAyIDAgMCAwLS44MjIgMS41Njl6Ii8+PC9zdmc+");
    background-position: center;
    background-repeat: no-repeat;
}

.accordion-content {
    background: var(--dark);
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

summary {
    cursor: default, auto;
}

/* ===================================
   PRIVACY POLICY & TERMS OF SERVICE
   =================================== */

/* Hero Sections */
#privacy-hero,
#terms-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(0deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%),
        radial-gradient(ellipse 100% 100% at top, rgba(30, 64, 175, 0.15), transparent),
        radial-gradient(ellipse 100% 100% at bottom, rgba(220, 38, 38, 0.15), transparent),
        #0a0a0a;
    background-size: 50px 50px, 100% 100%, 100% 100%, 100% 100%;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 4rem;
}

#privacy-hero::after,
#terms-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 24%, rgba(220, 38, 38, 0.03) 25%, rgba(220, 38, 38, 0.03) 26%, transparent 27%, transparent 74%, rgba(30, 64, 175, 0.03) 75%, rgba(30, 64, 175, 0.03) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

#privacy-hero-content,
#terms-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

#privacy-hero-content .fade-me,
#terms-hero-content .fade-me {
    opacity: 1 !important;
    transform: none !important;
}

#privacy-hero-title,
#terms-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

#privacy-hero-subtitle,
#terms-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--lighter);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Sections */
#privacy-content-section,
#terms-content-section {
    padding: 4rem 0;
    background: linear-gradient(0deg, var(--dark) 0%, var(--darker) 50%);
    min-height: 50vh;
}

#privacy-content-section .fade-me,
#terms-content-section .fade-me {
    opacity: 1 !important;
    transform: none !important;
}

.privacy-content-wrapper,
.terms-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-section,
.terms-section {
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--border-radius-secondary);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.privacy-section::before,
.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #2563eb);
}

.privacy-section h2,
.terms-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #dc2626, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.privacy-section p,
.terms-section p {
    color: var(--lighter);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul,
.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.privacy-section li,
.terms-section li {
    color: var(--lighter);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.privacy-section strong,
.terms-section strong {
    color: var(--text-color);
    font-weight: var(--font-weight-semibold);
}

.privacy-section a,
.terms-section a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-section a:hover,
.terms-section a:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

.contact-info-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-left: 3px solid #dc2626;
    border-radius: var(--border-radius-primary);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box strong {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-info-box a {
    color: #2563eb;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    #privacy-hero,
    #terms-hero {
        min-height: 40vh;
        padding-top: 80px;
        padding-bottom: 2rem;
    }

    #privacy-hero-content,
    #terms-hero-content {
        padding: 0 1.5rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .privacy-content-wrapper,
    .terms-content-wrapper {
        padding: 0 1rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section ul,
    .terms-section ul {
        padding-left: 1.5rem;
    }
}

summary .icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.accordion[open] summary .icon {
    transform: rotate(180deg);
    /* rotate down arrow */
}


/*
===
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: linear-gradient(145deg, var(--dark), var(--mid));
    border-radius: var(--border-radius-secondary);
    border: 1px solid var(--mid);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--lighter);
    line-height: 1.6;
}
===
*/

/* === HOVER STYLES, DESKTOP ONLY === */
@media (hover: hover) and (pointer: fine) {
    .testimonial-container:hover {
        box-shadow: var(--shadow-lg);
    }

    .cta-button:hover {
        box-shadow: var(--shadow-lg);
    }


    /*  NOTE: causes distraction.  */
    .ispsecurity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
        border-color: var(--primary);
    }


    .resource-item:hover {
        background: #12151c;
        border-color: var(--accent);
    }

    .resource-item a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4), 0 4px 20px rgba(37, 99, 235, 0.3);
    }

    .value-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }

}

/* === RESPONSIVE CODE === */
/* Wide devices, i think* lol */
@media (max-device-width: 1024px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .contact-form-container {
        width: 100%;
    }
}

/* FOR TABLETS */
@media (max-device-width: 768px) {
    #hero {
        min-height: 100dvh;
        min-height: 100vh;
    }

    #hero-content {
        margin-left: var(--spacing-lg);
        margin-right: var(--spacing-lg);
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }

    .container {
        max-width: 95% !important;
        padding: var(--spacing-sm);
    }

    #hero-title {
        margin-bottom: 0;
    }

    #hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .resources-list {
        grid-template-columns: 1fr;
    }

    .resource-item h3 {
        font-size: 1.5rem;
    }

    .resource-item p {
        font-size: 1rem;
    }

    .companies-image img {
        margin: 0;
        width: 140px;
        max-height: 64px;
    }

    #testimonials {
        grid-template-columns: 1fr;
    }

    .testimonial-container {
        width: 100%;
    }

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

    .header-and-view-all {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .header-and-view-all a {
        margin-left: 0;
    }

    .services-list-content {
        flex-wrap: wrap;
        text-align: left;
    }

    .services-list-content img {
        width: min(30%, 100%);
    }

    .features-list-header {
        align-items: flex-start;
    }

    .story-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: center;
    }

    .stat-item p {
        margin-left: 10px;
    }

    .story-stats {
        flex: auto;
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    #careers-lists {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .contact-info {
        width: 100%;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
    }

}

@media (max-device-width: 640px) {
    .stat-item {
        flex-direction: column;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }

}

/* Additional responsive breakpoints for better coverage */
@media (max-width: 1024px) {
    .services-grid-home,
    .features-grid,
    .testimonials {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    #hero-content,
    #services-hero-content,
    #features-hero-content {
        padding: 0 1.5rem;
    }
    
    .service-grid-card,
    .feature-grid-card {
        padding: 1.5rem;
    }
}

/* FOR MOBILE PHONES */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 1rem;
    }

    #hero h1,
    #hero p {
        text-align: left;
    }

    .cta-button {
        margin: 7px 0;
        width: 100%;
        max-width: 100%;
    }

    #hero-buttons {
        display: flex;
        flex-direction: column;
        margin-right: auto;
        width: 100%;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .features-list-header h3 {
        font-size: var(--spacing-md) !important;
    }

    #features-title,
    #features-text,
    #services-title,
    #services-text,
    #resources-title,
    .resources-header-stuff,
    #career-heading,
    #about-hero,
    #hero-title,
    #contact-heading,
    #contact-title {
        text-align: left;
    }

    .resources-header-stuff {
        line-height: 1.25;
    }

    #premium-resources,
    #free-resources {
        padding: 15px;
    }

    .founder-card {
        padding: 20px;
        margin: auto;
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-name {
        margin: auto;
        font-size: 1.5rem;
    }

    #founder-icon-name {
        flex-direction: column;
    }

    .story-stats,
    #careers-lists,
    .values-grid {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .founder-icon {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    #founder-icon-name img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Additional mobile optimizations */
    .service-grid-card,
    .feature-grid-card,
    .testimonial-container {
        padding: 1.5rem;
    }

    .service-grid-icon,
    .feature-grid-icon {
        width: 60px;
        height: 60px;
    }

    .service-grid-icon i,
    .feature-grid-icon i {
        font-size: 1.5rem;
    }

    #hero-title,
    #services-hero-title,
    #features-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    #hero-subtitle,
    #services-hero-subtitle,
    #features-hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

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

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

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

    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    .resource-item img {
        width: 100%;
        object-fit: cover;
    }

    /* Terms and Privacy Policy Mobile */
    #privacy-hero,
    #terms-hero {
        min-height: 35vh;
        padding-top: 80px;
        padding-bottom: 1.5rem;
    }

    .privacy-hero-content,
    .terms-hero-content {
        padding: 0 1rem;
    }

    .privacy-content-wrapper,
    .terms-content-wrapper {
        padding: 0 1rem;
    }

    .privacy-section,
    .terms-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .privacy-section p,
    .terms-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .privacy-section ul,
    .terms-section ul {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }

    .privacy-section li,
    .terms-section li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-info-box {
        padding: 1rem;
        margin-top: 1rem;
    }

}

/* END OF RESPONSIVE CODE */
