/* =====================================================
   Hacking Mail Training Service Landing Page Styles
   Light Theme with Professional Security Aesthetic
   ===================================================== */

/* CSS Variables - Blue Security Theme */
:root {
    --hmt-primary: #1a56db;
    --hmt-primary-light: #3b82f6;
    --hmt-primary-dark: #1e40af;
    --hmt-secondary: #0891B2;
    --hmt-accent: #F97316;
    --hmt-accent-hover: #EA580C;
    --hmt-success: #10B981;
    --hmt-danger: #EF4444;
    --hmt-warning: #F59E0B;

    /* Light theme backgrounds */
    --hmt-bg-primary: #FFFFFF;
    --hmt-bg-secondary: #EFF6FF;
    --hmt-bg-tertiary: #DBEAFE;
    --hmt-bg-card: #FFFFFF;

    /* Text colors */
    --hmt-text-primary: #1E293B;
    --hmt-text-secondary: #475569;
    --hmt-text-muted: #94A3B8;

    /* Borders and shadows */
    --hmt-border: #E2E8F0;
    --hmt-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --hmt-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hmt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hmt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --hmt-gradient-primary: linear-gradient(135deg, #1a56db 0%, #0891B2 100%);
    --hmt-gradient-light: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
    --hmt-gradient-hero: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

/* =====================================================
   Base Styles
   ===================================================== */
.hmt-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--hmt-text-primary);
    background: var(--hmt-bg-primary);
    overflow-x: hidden;
}

.hmt-section {
    padding: 80px 0;
}

.hmt-section-alt {
    background: var(--hmt-bg-secondary);
}

.hmt-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hmt-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hmt-text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.hmt-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--hmt-gradient-primary);
    border-radius: 2px;
}

.hmt-section-header p {
    font-size: 1.125rem;
    color: var(--hmt-text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hmt-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--hmt-gradient-hero);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hmt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(26, 86, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hmt-hero-content {
    position: relative;
    z-index: 2;
}

.hmt-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hmt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hmt-primary);
    box-shadow: var(--hmt-shadow-sm);
}

.hmt-badge i {
    color: var(--hmt-success);
}

.hmt-badge.hmt-badge-solution {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-color: #93C5FD;
    color: #1E40AF;
}

.hmt-badge.hmt-badge-solution i {
    color: #1a56db;
}

.hmt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hmt-text-primary);
    margin-bottom: 24px;
}

.hmt-hero h1 span {
    background: var(--hmt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hmt-hero-subtitle {
    font-size: 1.25rem;
    color: var(--hmt-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hmt-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hmt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hmt-btn-primary {
    background: var(--hmt-gradient-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.4);
}

.hmt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.5);
    color: #fff;
}

.hmt-btn-outline {
    background: var(--hmt-bg-card);
    color: var(--hmt-text-primary);
    border: 2px solid var(--hmt-border);
}

.hmt-btn-outline:hover {
    border-color: var(--hmt-primary);
    color: var(--hmt-primary);
    background: var(--hmt-bg-secondary);
}

.hmt-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hmt-hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.hmt-hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -45%);
    width: 450px;
    height: 100%;
    background: var(--hmt-gradient-light);
    border-radius: 16px;
    z-index: 0;
}

/* Service Icon */
.hmt-service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hmt-gradient-primary);
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.3);
}

.hmt-service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

/* =====================================================
   Differentiator Section (3 Core Strengths)
   ===================================================== */
.hmt-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hmt-diff-card {
    background: var(--hmt-bg-card);
    border: 2px solid var(--hmt-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hmt-diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--hmt-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hmt-diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hmt-shadow-xl);
    border-color: var(--hmt-primary-light);
}

.hmt-diff-card:hover::before {
    transform: scaleX(1);
}

.hmt-diff-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hmt-bg-secondary);
    color: var(--hmt-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
}

.hmt-diff-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--hmt-gradient-light);
    border-radius: 20px;
    font-size: 2rem;
}

.hmt-diff-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--hmt-text-primary);
    margin-bottom: 16px;
}

.hmt-diff-card p {
    font-size: 1rem;
    color: var(--hmt-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hmt-diff-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--hmt-bg-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hmt-primary);
}

.hmt-diff-highlight i {
    color: var(--hmt-success);
}

/* Solution Card Special Style */
.hmt-diff-card.hmt-card-solution {
    border-color: #93C5FD;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

.hmt-diff-card.hmt-card-solution .hmt-diff-icon {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
}

.hmt-diff-card.hmt-card-solution .hmt-diff-number {
    background: #DBEAFE;
    color: #1a56db;
}

/* =====================================================
   Statistics Cards
   ===================================================== */
.hmt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.hmt-stat-card {
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--hmt-shadow);
}

.hmt-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hmt-shadow-lg);
    border-color: var(--hmt-primary-light);
}

.hmt-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--hmt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hmt-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin-bottom: 8px;
}

.hmt-stat-desc {
    font-size: 0.8125rem;
    color: var(--hmt-text-muted);
}

/* =====================================================
   Process Timeline (5-Step)
   ===================================================== */
.hmt-timeline {
    position: relative;
    padding: 40px 0;
}

.hmt-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--hmt-border);
    border-radius: 2px;
}

.hmt-timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.hmt-timeline-item {
    text-align: center;
    position: relative;
}

.hmt-timeline-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--hmt-gradient-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
    position: relative;
    z-index: 2;
}

.hmt-timeline-item:last-child .hmt-timeline-number {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hmt-timeline-content {
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: var(--hmt-shadow-sm);
}

.hmt-timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin-bottom: 12px;
}

.hmt-timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hmt-timeline-content li {
    font-size: 0.8125rem;
    color: var(--hmt-text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hmt-timeline-content li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--hmt-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Tip Box */
.hmt-tip-box {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
    border: 1px solid #93C5FD;
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hmt-tip-box i {
    font-size: 1.5rem;
    color: var(--hmt-primary);
}

.hmt-tip-box p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--hmt-text-secondary);
}

/* =====================================================
   Features Grid (6 Items)
   ===================================================== */
.hmt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hmt-feature-card {
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.hmt-feature-card:hover {
    box-shadow: var(--hmt-shadow-lg);
    border-color: var(--hmt-primary-light);
    transform: translateY(-4px);
}

.hmt-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hmt-gradient-light);
    border-radius: 14px;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.hmt-feature-icon i {
    color: var(--hmt-primary);
}

.hmt-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin-bottom: 12px;
}

.hmt-feature-card > p {
    font-size: 0.9375rem;
    color: var(--hmt-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hmt-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hmt-feature-list li {
    font-size: 0.8125rem;
    color: var(--hmt-text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hmt-feature-list li i {
    color: var(--hmt-success);
    font-size: 0.75rem;
}

/* =====================================================
   Benefits Section
   ===================================================== */
.hmt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hmt-benefit-card {
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hmt-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hmt-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hmt-benefit-card:hover {
    box-shadow: var(--hmt-shadow-lg);
}

.hmt-benefit-card:hover::before {
    transform: scaleX(1);
}

.hmt-benefit-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hmt-primary);
    margin-bottom: 8px;
}

.hmt-benefit-value.success {
    color: var(--hmt-success);
}

.hmt-benefit-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin-bottom: 12px;
}

.hmt-benefit-desc {
    font-size: 0.9375rem;
    color: var(--hmt-text-secondary);
    line-height: 1.6;
}

/* =====================================================
   Tool Introduction Section
   ===================================================== */
.hmt-tool-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.hmt-tool-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hmt-tool-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hmt-text-primary);
    margin-bottom: 16px;
}

.hmt-tool-content > p {
    font-size: 1.0625rem;
    color: var(--hmt-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hmt-tool-features {
    display: grid;
    gap: 16px;
}

.hmt-tool-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--hmt-bg-card);
    border-radius: 12px;
    border: 1px solid var(--hmt-border);
}

.hmt-tool-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hmt-gradient-light);
    border-radius: 10px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hmt-tool-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin-bottom: 4px;
}

.hmt-tool-feature p {
    font-size: 0.875rem;
    color: var(--hmt-text-secondary);
    margin: 0;
}

.hmt-tool-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid var(--hmt-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--hmt-shadow-lg);
}

.hmt-tool-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Related Solution Link */
.hmt-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 8px;
    color: var(--hmt-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hmt-solution-link:hover {
    border-color: var(--hmt-primary);
    color: var(--hmt-primary);
    box-shadow: var(--hmt-shadow);
}

/* =====================================================
   Education Section
   ===================================================== */
.hmt-education-section {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    padding: 80px 0;
    color: #fff;
}

.hmt-education-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hmt-education-section > .container > p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.hmt-education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hmt-education-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.hmt-education-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.hmt-education-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.hmt-education-icon i {
    font-size: 1.75rem;
    color: #FDE68A;
}

.hmt-education-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hmt-education-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* =====================================================
   CTA Section
   ===================================================== */
.hmt-cta {
    background: linear-gradient(135deg, #1a56db 0%, #0891B2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.hmt-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hmt-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hmt-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hmt-cta-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.hmt-cta-benefits i {
    color: #93C5FD;
}

.hmt-btn-white {
    background: #fff;
    color: var(--hmt-primary);
    font-weight: 600;
}

.hmt-btn-white:hover {
    background: #F8FAFC;
    color: var(--hmt-primary-dark);
    transform: translateY(-2px);
}

/* Contact Info */
.hmt-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hmt-contact-item {
    text-align: center;
}

.hmt-contact-item i {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.hmt-contact-item a,
.hmt-contact-item span {
    color: #fff;
    font-size: 0.9375rem;
    text-decoration: none;
}

.hmt-contact-item a:hover {
    text-decoration: underline;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.hmt-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hmt-faq-item {
    background: var(--hmt-bg-card);
    border: 1px solid var(--hmt-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hmt-faq-item:hover {
    border-color: var(--hmt-primary-light);
}

.hmt-faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--hmt-bg-secondary);
}

.hmt-faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hmt-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hmt-faq-question h4 span {
    color: var(--hmt-primary);
    font-weight: 700;
}

.hmt-faq-question i {
    color: var(--hmt-text-muted);
    transition: transform 0.3s ease;
}

.hmt-faq-item.active .hmt-faq-question i {
    transform: rotate(180deg);
}

.hmt-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hmt-faq-item.active .hmt-faq-answer {
    padding: 20px 24px;
    max-height: 300px;
}

.hmt-faq-answer p {
    font-size: 0.9375rem;
    color: var(--hmt-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199px) {
    .hmt-hero h1 {
        font-size: 2.75rem;
    }

    .hmt-timeline-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .hmt-timeline-content {
        padding: 16px 12px;
    }
}

@media (max-width: 991px) {
    .hmt-section {
        padding: 60px 0;
    }

    .hmt-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hmt-hero h1 {
        font-size: 2.25rem;
    }

    .hmt-hero-image {
        margin-top: 40px;
    }

    .hmt-diff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hmt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hmt-timeline::before {
        display: none;
    }

    .hmt-timeline-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hmt-timeline-item {
        display: flex;
        gap: 20px;
        text-align: left;
    }

    .hmt-timeline-number {
        margin: 0;
        flex-shrink: 0;
    }

    .hmt-timeline-content {
        flex: 1;
    }

    .hmt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hmt-tool-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hmt-education-grid {
        grid-template-columns: 1fr;
    }

    .hmt-contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hmt-section-header h2 {
        font-size: 1.75rem;
    }

    .hmt-hero h1 {
        font-size: 1.875rem;
    }

    .hmt-hero-subtitle {
        font-size: 1rem;
    }

    .hmt-hero-cta {
        flex-direction: column;
    }

    .hmt-btn {
        width: 100%;
    }

    .hmt-stats-grid {
        grid-template-columns: 1fr;
    }

    .hmt-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hmt-features-grid {
        grid-template-columns: 1fr;
    }

    .hmt-cta h2 {
        font-size: 1.75rem;
    }

    .hmt-cta-benefits {
        flex-direction: column;
        gap: 12px;
    }
}
