/* Security Page Specific Styling */
:root {
    --sec-primary: #0F3869;
    --sec-dark: #0F172A;
    --sec-shield: #10B981;
    --sec-shield-dark: #059669;
    --sec-utm-green: #16A34A;
    --sec-danger: #EF4444;
    --sec-warning: #F59E0B;
    --sec-card-bg: #FFFFFF;
    --sec-glass: rgba(255, 255, 255, 0.85);
    --sec-gradient-hero: linear-gradient(135deg, #0B192C 0%, #1E3E62 50%, #000000 100%);
    --sec-gradient-edr: linear-gradient(135deg, #0F3869 0%, #2563EB 100%);
    --sec-gradient-utm: linear-gradient(135deg, #065F46 0%, #10B981 100%);
}

.security-page {
    background-color: #F8FAFC;
    color: #1E293B;
}

/* Security Hero Section */
.sec-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.78) 0%, rgba(15, 23, 42, 0.85) 100%), url('security_hero_bg.jpg') center/cover no-repeat;
    color: #FFFFFF;
    padding-top: 110px;
    padding-bottom: 60px;
    overflow: hidden;
}

.sec-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.sec-alert-banner {
    background: linear-gradient(90deg, #DC2626 0%, #EF4444 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
    animation: alertPulse 2s infinite alternate;
}

@keyframes alertPulse {
    0% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
    100% { box-shadow: 0 0 22px rgba(239, 68, 68, 0.8); }
}

.sec-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(15, 23, 42, 0.9);
}

.sec-hero-title span.highlight-edr {
    color: #60A5FA;
    font-size: 1.08em;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 2px 8px rgba(0, 0, 0, 0.95);
    background: rgba(37, 99, 235, 0.15);
    padding: 0 8px;
    border-radius: 6px;
    display: inline-block;
}

.sec-hero-title span.highlight-utm {
    color: #34D399;
    font-size: 1.08em;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 2px 8px rgba(0, 0, 0, 0.95);
    background: rgba(16, 185, 129, 0.15);
    padding: 0 8px;
    border-radius: 6px;
    display: inline-block;
}

.sec-badge-w {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.sec-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
#logo-title{
	display:none;
}
@media (max-width: 992px) {
    .sec-hero-grid {
        grid-template-columns: 1fr;
    }
    .sec-hero-title {
        font-size: 2.1rem;
    }
	#logo-title{
		display:block;
		font-weight:bold;
		color:#0F3869;
	}
}

@media (max-width: 768px) {
    .sec-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .sec-alert-banner {
        font-size: 0.82rem !important;
        padding: 8px 12px !important;
        margin-bottom: 16px;
    }
    .sec-hero-title {
        font-size: 1.5rem !important;
        line-height: 1.35;
    }
    .sec-badge-w {
        font-size: 0.8rem !important;
        padding: 4px 12px !important;
    }
    .sec-hero-text p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    .sec-hero-text .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        font-size: 0.95rem !important;
        padding: 12px 18px !important;
    }

    /* Section Typography Mobile Scaling */
    .section-title {
        font-size: 1.4rem !important;
        line-height: 1.35 !important;
    }
    .section-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    /* Cards & Lists Typography */
    .sec-card {
        padding: 20px 16px !important;
    }
    .sec-card-title {
        font-size: 1.35rem !important;
    }
    .sec-card p {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }
    .sec-card h4 {
        font-size: 0.92rem !important;
    }
    .sec-list li {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
        padding-left: 26px !important;
    }
    .sec-list li::before {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
    }
    .sec-price-badge {
        padding: 12px 14px !important;
    }
    .sec-price-badge .amount {
        font-size: 1.6rem !important;
    }
    .sec-price-badge .sub {
        font-size: 0.78rem !important;
    }

    /* Synergy Section Mobile Scaling */
    .sec-synergy {
        padding: 30px 16px !important;
    }
    .sec-synergy h2 {
        font-size: 1.35rem !important;
    }
    .sec-synergy p {
        font-size: 0.88rem !important;
    }

    /* Recommendation Box Mobile Scaling */
    .sec-recommend-box {
        padding: 24px 16px !important;
    }
    .sec-recommend-box h2 {
        font-size: 1.25rem !important;
    }
    .sec-recommend-item {
        font-size: 0.88rem !important;
        padding: 12px 14px !important;
    }

    /* Form & Footer Mobile Scaling */
    .sec-contact-title {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
    }
    .security-cf7-wrapper {
        padding: 20px 16px !important;
    }
    .security-cf7-wrapper label {
        font-size: 0.88rem !important;
    }
    .security-cf7-wrapper input[type="submit"],
    .security-cf7-wrapper button[type="submit"] {
        font-size: 0.95rem !important;
        padding: 13px 18px !important;
    }

    /* Table & Hints Mobile Scaling */
    .table-scroll-hint {
        display: block !important;
        font-size: 0.78rem !important;
    }
}

@media (max-width: 480px) {
    .sec-hero-title {
        font-size: 1.3rem !important;
    }
    .sec-contact-title {
        font-size: 1.15rem !important;
    }
    .sec-card-title {
        font-size: 1.2rem !important;
    }
    .sec-price-badge .amount {
        font-size: 1.4rem !important;
    }
}

/* Feature Cards Grid (EDR vs UTM) */
.sec-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .sec-duo-grid {
        grid-template-columns: 1fr;
    }
}

.sec-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.sec-card.card-edr {
    border-color: rgba(37, 99, 235, 0.3);
}

.sec-card.card-utm {
    border-color: rgba(16, 185, 129, 0.3);
}

.sec-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F1F5F9;
}

.sec-tag-edr {
    background: #EFF6FF;
    color: #1D4ED8;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.sec-tag-utm {
    background: #ECFDF5;
    color: #047857;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.sec-card-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--sec-primary);
}

.sec-price-badge {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #DC2626;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: auto;
}

.sec-price-badge .amount {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.sec-price-badge .sub {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Feature Checklists */
.sec-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sec-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.5;
}

.sec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #10B981;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
}

/* Comparison Diagram Graphic Styling */
.sec-diagram-box {
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0 0 0;
}

.sec-diagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .sec-diagram-grid {
        grid-template-columns: 1fr;
    }
}

.sec-diag-col {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.sec-diag-col.highlight {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Recommendation Checklist Box */
.sec-recommend-box {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sec-recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.sec-recommend-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.sec-recommend-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #10B981;
}

.sec-recommend-item .icon {
    font-size: 1.3rem;
    color: #10B981;
}

/* Synergy Section (W Defense) */
.sec-synergy {
    background: linear-gradient(135deg, #EFF6FF 0%, #ECFDF5 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 2px solid #DBEAFE;
}

.sec-synergy-plus {
    font-size: 3rem;
    font-weight: 900;
    color: #0F3869;
    margin: 10px 0;
}

.security-page {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.75) 0%, rgba(226, 232, 240, 0.85) 100%), url('security_page_bg.jpg') center/cover fixed no-repeat;
    color: #1E293B;
}

/* Remove default dot/grid backgrounds completely and make section cards pop */
.security-page .section {
    background: transparent !important;
    background-image: none !important;
}

.security-page .section:not(.bg-dark) .section-title {
    color: #0F3869;
    text-shadow: none;
}

.security-page .section:not(.bg-dark) .section-subtitle {
    color: #475569;
}

.security-page .bg-light {
    background: rgba(255, 255, 255, 0.45) !important;
    background-image: none !important;
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* Ultimate Isolation & Protection for Contact Form 7 (Prevents Any External Theme CSS Leakage) */
.security-cf7-wrapper,
.security-cf7-wrapper *,
.security-cf7-wrapper *::before,
.security-cf7-wrapper *::after {
    box-sizing: border-box !important;
}

.security-cf7-wrapper {
    max-width: 680px !important;
    margin: 0 auto !important;
    background: #FFFFFF !important;
    color: #334155 !important;
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    text-align: left !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Explicitly Override WP / Theme default .wpcf7 wrapper rules */
.security-cf7-wrapper .wpcf7,
.security-cf7-wrapper div.wpcf7,
div.security-cf7-wrapper .wpcf7 {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: inherit !important;
    box-shadow: none !important;
}

.security-cf7-wrapper form {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
}

.security-cf7-wrapper form p,
.security-cf7-wrapper .wpcf7-form-control-wrap {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
}

.security-cf7-wrapper label,
.security-cf7-wrapper p label {
    display: block !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    margin-bottom: 8px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    float: none !important;
    width: 100% !important;
}

.security-cf7-wrapper label .required,
.security-cf7-wrapper label span.required {
    color: #EF4444 !important;
    margin-left: 4px !important;
    font-weight: bold !important;
}

/* Force Reset & Style all Input fields, Dropdowns and Textareas */
.security-cf7-wrapper input[type="text"],
.security-cf7-wrapper input[type="email"],
.security-cf7-wrapper input[type="tel"],
.security-cf7-wrapper select,
.security-cf7-wrapper textarea,
.security-cf7-wrapper .wpcf7-form-control-wrap input,
.security-cf7-wrapper .wpcf7-form-control-wrap select,
.security-cf7-wrapper .wpcf7-form-control-wrap textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    font-family: 'Noto Sans JP', 'Inter', sans-serif !important;
    line-height: 1.5 !important;
    color: #1E293B !important;
    background-color: #FFFFFF !important;
    background-image: none !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.security-cf7-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 18px 18px !important;
    padding-right: 40px !important;
}

.security-cf7-wrapper textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Active focus state */
.security-cf7-wrapper input:focus,
.security-cf7-wrapper select:focus,
.security-cf7-wrapper textarea:focus {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
    background-color: #FFFFFF !important;
}

/* Submit Button Hardened Styling */
.security-cf7-wrapper input[type="submit"],
.security-cf7-wrapper button[type="submit"],
.security-cf7-wrapper .wpcf7-submit {
    display: block !important;
    width: 100% !important;
    min-height: 54px !important;
    background: linear-gradient(135deg, #0F3869 0%, #10B981 100%) !important;
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    font-family: 'Noto Sans JP', 'Inter', sans-serif !important;
    text-align: center !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px 24px !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    box-shadow: 0 4px 14px rgba(15, 56, 105, 0.3) !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.security-cf7-wrapper input[type="submit"]:hover,
.security-cf7-wrapper button[type="submit"]:hover,
.security-cf7-wrapper .wpcf7-submit:hover {
    opacity: 0.95 !important;
    transform: translateY(-2px) !important;
}

/* Ajax Loader Spinner Position */
.security-cf7-wrapper .wpcf7-spinner {
    margin: 10px auto 0 auto !important;
    display: block !important;
}

/* Contact Form 7 Response Output Alerts */
.security-cf7-wrapper .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    font-size: 0.95rem !important;
    text-align: center !important;
}

.security-cf7-wrapper .wpcf7-mail-sent-ok {
    background-color: #ECFDF5 !important;
    border: 1px solid #10B981 !important;
    color: #047857 !important;
}

.security-cf7-wrapper .wpcf7-validation-errors,
.security-cf7-wrapper .wpcf7-acceptance-missing {
    background-color: #FEF2F2 !important;
    border: 1px solid #EF4444 !important;
    color: #991B1B !important;
}

.security-cf7-wrapper .wpcf7-not-valid-tip {
    color: #EF4444 !important;
    font-size: 0.85rem !important;
    margin-top: 6px !important;
    font-weight: 600 !important;
    display: block !important;
}

