:root {
    /* Modern Enterprise Security Color Palette - Green */
    --primary-color: #2E7D32;
    --primary-light: #4CAF50;
    --primary-dark: #1B5E20;
    --primary-hover: #1B5E20;
    
    /* Neutral Grays - Enterprise Grade */
    --gray-50: #FAFBFC;
    --gray-100: #F4F5F7;
    --gray-200: #EBECF0;
    --gray-300: #DFE1E6;
    --gray-400: #C1C7D0;
    --gray-500: #8993A4;
    --gray-600: #6B778C;
    --gray-700: #42526E;
    --gray-800: #253858;
    --gray-900: #172B4D;
    
    /* Text Colors */
    --text-primary: #172B4D;
    --text-secondary: #42526E;
    --text-tertiary: #6B778C;
    --text-color: var(--text-primary);
    
    /* Background Colors */
    --background-primary: #FFFFFF;
    --background-secondary: #FAFBFC;
    --background-tertiary: #F4F5F7;
    --background-light: var(--background-secondary);
    --white: #FFFFFF;
    
    /* Accent Colors */
    --success: #36B37E;
    --warning: #FFAB00;
    --error: #DE350B;
    --info: #0065FF;
    
    /* Shadows - Soft and Modern */
    --shadow-xs: 0 1px 2px rgba(9, 30, 66, 0.08);
    --shadow-sm: 0 2px 4px rgba(9, 30, 66, 0.08);
    --shadow-md: 0 4px 8px rgba(9, 30, 66, 0.1);
    --shadow-lg: 0 8px 16px rgba(9, 30, 66, 0.12);
    --shadow-xl: 0 12px 24px rgba(9, 30, 66, 0.15);
    
    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: linear-gradient(180deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-200);
    height: 110px;
    transition: all var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 0;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

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

.login-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.login-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3c 50%, #1B5E20 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46, 125, 50, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.wave1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%232E7D3208'/%3E%3C/svg%3E");
    animation: wave 7s linear infinite;
    z-index: 1;
    opacity: 0.6;
}

.wave2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%232E7D3212'/%3E%3C/svg%3E");
    animation: wave 10s linear infinite;
    z-index: 2;
    opacity: 0.5;
}

.wave3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%232E7D3218'/%3E%3C/svg%3E");
    animation: wave 13s linear infinite;
    z-index: 3;
    opacity: 0.4;
}

@keyframes wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.95);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Compact Product Ad Banner */
.product-ad-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin: 1.5rem auto 2.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.product-ad-banner .ad-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
}

.product-ad-banner .product-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.product-ad-banner .product-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.product-ad-banner .ad-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0 0.25rem;
}

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

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--background-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.features .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    width: 100%;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    background: var(--gray-100);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon img {
    background: var(--gray-200);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: var(--font-size-base);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    .product-ad-banner {
        padding: 0.625rem 1rem;
        gap: 0.375rem 0.5rem;
        margin: 1rem auto 2rem;
        font-size: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .product-ad-banner .ad-label {
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }
    
    .product-ad-banner .ad-separator {
        display: none;
    }
    
    .product-ad-banner .product-link {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: 0.2rem 0.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
}

/* Logo Styling */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--primary-color);
}

.logo-tagline {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.75rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .logo-image {
        height: 65px;
    }

    .navbar {
        height: 90px;
        padding: 0.75rem 0;
    }
}

.feature-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

/* Remove duplicate .feature-card definition - already defined above */

.footer {
    background: linear-gradient(135deg, #1a472a 0%, #1B5E20 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    margin-bottom: 2rem;
    flex-wrap: wrap !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-xs);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.footer-products h4 {
    color: var(--white);
    margin: 0 0 1rem 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.footer-products a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-products a:hover {
    color: var(--white);
}

/* Add this media query for mobile responsiveness */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column !important;
        gap: 1rem;
    }
    
    .footer-products {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-products a, .footer-links a {
        padding: 0.5rem 0;
    }
}

/* Product Content Styles */
.product-content {
    padding: 5rem 0;
    background: var(--white);
}

.product-grid {
    max-width: 800px;
    margin: 0 auto;
}

.product-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.product-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Custom bullet points for About page lists */
.feature-list ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.feature-list ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    transform: none;
}

.feature-list > li {  /* For direct list items in feature-list */
    position: relative;
    list-style: none;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    transform: none;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-email {
    margin-top: 2rem;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title-spaced {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

/* Headline navigation styles */
.headline-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.headline-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 1;
    transition: opacity var(--transition-base);
}

.headline-container:hover .headline-nav {
    opacity: 0.8;
}

#random-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    line-height: 1.3;
}

.nav-btn {
    background: var(--gray-100);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-full);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all var(--transition-base);
    line-height: 1;
}

.nav-btn:hover {
    background: var(--gray-200);
    transform: scale(1.05);
    color: var(--primary-color);
}

.nav-btn:active {
    transform: scale(0.95);
}


.feature-grid {
    margin-top: 1rem;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    background-color: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Style for the placeholder option */
.form-group select option[value=""] {
    color: #757575;
}

/* Mobile menu styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
    transition: color var(--transition-fast);
}

.mobile-menu-button:hover {
    color: var(--primary-color);
}

.nav-links-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Update media queries for better mobile support */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Adjust feature cards for mobile */
    .feature-card {
        padding: 1.75rem;
    }

    .feature-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .feature-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Adjust hero section for mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    /* Adjust container padding */
    .container {
        padding: 0 1.25rem;
    }

    /* Adjust footer for mobile */
    .footer-links {
        flex-direction: column !important;
        gap: 1rem;
        align-items: center;
    }

    .footer-links a {
        padding: 0.5rem 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-products {
        flex-direction: column;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .headline-container {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
}

/* Ensure footer is horizontal on desktop - must be after mobile styles */
@media screen and (min-width: 769px) {
    footer .footer-links,
    .footer .footer-links,
    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    
    footer .footer-links a,
    .footer .footer-links a,
    .footer-links a {
        display: inline-block !important;
        white-space: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-products {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-products h4 {
        margin: 0 0 1rem 0 !important;
    }
}

/* Desktop navigation - ensure horizontal layout */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
    }

    .nav-links-content {
        display: flex !important;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 2rem !important;
    }
    
    .nav-links-content a,
    .nav-links-content .dropdown {
        margin-left: 0 !important;
        white-space: nowrap;
    }
}

/* Update mobile menu styles */
.nav-links {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.nav-links-content {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.contact-illustration {
    max-width: 300px;
    display: block;
    margin: 20px auto;
}

/* Add these new styles for SaaS Security Score page */
.product-content {
    padding: 6rem 0;
    background: var(--white);
}

.product-info {
    max-width: 900px;
    margin: 0 auto;
}

.product-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 3rem 0 1.5rem;
}

.product-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.product-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin: 3rem 0;
}

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

.feature-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #444;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.cta-section .btn-primary {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.note {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-content {
        padding: 4rem 1rem;
    }

    .product-info h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

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

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Update hero section specifically for product page */
.hero.product-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3c 100%);
    padding: 230px 0 100px;
}

.hero.product-hero .hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero.product-hero .hero-subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero.product-hero {
        padding: 120px 0 80px;
    }

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

    .hero.product-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    margin: 0;
}

.dropdown-toggle {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    position: relative;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    margin-top: 0;
    padding-top: 0.75rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    margin: 0;
    white-space: nowrap;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.5rem 0;
}

/* Desktop dropdown behavior */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Add invisible bridge to prevent menu from closing when moving mouse to it */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -0.5rem;
        left: 0;
        right: 0;
        height: 0.5rem;
        background: transparent;
    }
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .dropdown-menu.active {
        display: block;
    }
}

/* Add screenshot gallery styles */
.screenshot-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin: 3rem auto;
    padding: 0 20px;
}

.product-screenshot {
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    transition: transform var(--transition-base);
}

.product-screenshot:hover {
    transform: scale(1.02);
}

/* Update existing product-image class to differentiate from screenshots */
.product-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 3rem auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .product-screenshot {
        max-width: 100%;
        height: auto;
    }
    
    .screenshot-gallery {
        gap: 2rem;
        margin: 2rem 0;
    }
}

/* Add FAQ section styles */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

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

.faq-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Add compliance grid styles */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.compliance-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.compliance-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.compliance-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.compliance-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Add benefits grid styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Responsive adjustments for new grid layouts */
@media (max-width: 768px) {
    .compliance-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-item,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Additional Modern Enhancements */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Improved container spacing */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Section spacing improvements */
section {
    position: relative;
}

/* Better text rendering */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Add padding under headings */
h1, h2, h3 {
    padding-bottom: 1rem;
}

/* Add padding above h2 and h3 */
h2, h3 {
    padding-top: 1rem;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Improved mobile menu */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        width: 100%;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links-content {
        flex-direction: column;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-links-content a {
        display: block;
        padding: 0.75rem 2rem;
        margin: 0;
        width: 100%;
        text-align: center;
    }
}