/* ============================================================
   a_style_new.css — HuskyDev Enhanced Styles
   เพิ่มต่อจาก a_style.css หรือ @import ใน a_header.php
   ============================================================ */

/* ----------------------------------------------------------
   VARIABLES
---------------------------------------------------------- */
:root {
    --hd-accent: #FC3737;
    --hd-accent2: #ff6b6b;
    --hd-dark: #0d0d0d;
    --hd-dark2: #141414;
    --hd-card-bg: #1a1a1a;
    --hd-border: rgba(255,255,255,0.07);
    --hd-text-muted: #8892a4;
    --hd-glow: rgba(252, 55, 55, 0.25);
    --hd-radius: 16px;
    --hd-radius-sm: 10px;
    --hd-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   HERO ENHANCED
---------------------------------------------------------- */
.hd-hero-enhanced {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Gradient Orbs */
.hd-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: hd-orb-drift 8s ease-in-out infinite alternate;
}
.hd-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(252,55,55,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.hd-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(252,55,55,0.12) 0%, transparent 70%);
    bottom: 0; right: 10%;
    animation-delay: -3s;
}
.hd-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(100,120,255,0.10) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation-delay: -5s;
}
@keyframes hd-orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
}

/* Hero Badge */
.hd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252,55,55,0.12);
    border: 1px solid rgba(252,55,55,0.3);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.hd-badge-dot {
    width: 8px; height: 8px;
    background: #FC3737;
    border-radius: 50%;
    animation: hd-pulse-dot 1.5s ease-in-out infinite;
}
@keyframes hd-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252,55,55,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(252,55,55,0); }
}

/* Typing */
.hd-typing-wrap {
    margin: 10px 0 18px;
    line-height: 1.2;
}
.hd-typing-text {
    color: var(--hd-accent);
    position: relative;
}
.hd-typing-text::after {
    content: '|';
    color: var(--hd-accent);
    animation: hd-blink 0.7s step-end infinite;
    margin-left: 2px;
}
@keyframes hd-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero desc */
.hd-hero-desc { max-width: 520px; opacity: 0.85; line-height: 1.7; margin-bottom: 30px; }

/* Hero btns */
.hd-btn-primary { position: relative; overflow: hidden; }
.hd-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: var(--hd-transition);
}
.hd-btn-primary:hover::before { opacity: 1; }

/* Quick contacts */
.hd-hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}
.hd-hero-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: var(--hd-transition);
}
.hd-hero-contact-item i { color: var(--hd-accent); font-size: 16px; }
.hd-hero-contact-item:hover { color: #fff; }

/* Floating tech icons */
.hd-float-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hd-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    animation: hd-float 4s ease-in-out infinite alternate;
}
.hd-fi-1 { top: 15%; left: 8%;  color: #777BB4; }
.hd-fi-2 { top: 25%; left: 88%; color: #61DAFB; }
.hd-fi-3 { top: 60%; left: 5%;  color: #F7DF1E; }
.hd-fi-4 { top: 70%; left: 90%; color: #264DE4; }
.hd-fi-5 { top: 40%; left: 92%; color: #4479A1; }
.hd-fi-6 { top: 80%; left: 12%; color: #E44D26; }
.hd-fi-7 { top: 10%; left: 50%; color: #339933; }
@keyframes hd-float {
    0%   { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(6deg); }
}

/* Hero image glow */
.hd-hero-img-wrap { position: relative; z-index: 2; }
.hd-hero-glow {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 60px;
    background: radial-gradient(ellipse, rgba(252,55,55,0.3) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

/* Scroll indicator */
.hd-scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    animation: hd-bounce 2s ease-in-out infinite;
}
.hd-scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hd-scroll-wheel {
    width: 4px; height: 8px;
    background: var(--hd-accent);
    border-radius: 2px;
    animation: hd-scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes hd-scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}
@keyframes hd-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ----------------------------------------------------------
   STATS SECTION
---------------------------------------------------------- */
.hd-stats-section {
    padding: 0;
    margin: -2px 0;
    position: relative;
    z-index: 3;
}
.hd-stats-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border-radius: var(--hd-radius);
    border: 1px solid var(--hd-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    gap: 0;
    margin: -40px 0 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hd-stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hd-stat-icon {
    font-size: 24px;
    color: var(--hd-accent);
    margin-bottom: 8px;
    opacity: 0.9;
}
.hd-stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hd-stat-plus {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    color: var(--hd-accent);
    font-weight: 700;
    line-height: 1;
    margin-left: -2px;
}
/* number + plus inline */
.hd-stat-item { position: relative; }
.hd-stat-number, .hd-stat-plus { display: inline; }
.hd-stat-item .hd-stat-number { display: block; }

/* Override — show number and plus side-by-side */
.hd-stat-item .hd-stat-number + .hd-stat-plus {
    display: inline-block;
    vertical-align: top;
    margin-top: 4px;
}

.hd-stat-label {
    font-size: 13px;
    color: var(--hd-text-muted);
    margin-top: 4px;
}
.hd-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--hd-border);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .hd-stat-divider { display: none; }
    .hd-stat-item { min-width: 45%; }
    .hd-stats-inner { gap: 10px; }
}

/* ----------------------------------------------------------
   ABOUT SECTION ENHANCED
---------------------------------------------------------- */
.hd-about-img-wrap { position: relative; }
.hd-about-main-img {
    border-radius: var(--hd-radius);
    width: 100%;
    object-fit: cover;
}
.hd-about-float-card {
    position: absolute;
    bottom: 30px; right: -20px;
    background: #fff;
    border-radius: var(--hd-radius-sm);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: hd-float 3s ease-in-out infinite alternate;
    z-index: 3;
}
.hd-about-float-card .hd-about-float-icon { font-size: 22px; }
.hd-about-deco-1 {
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    border: 3px solid var(--hd-accent);
    border-radius: 20px;
    opacity: 0.3;
    animation: hd-spin-slow 12s linear infinite;
}
.hd-about-deco-2 {
    position: absolute;
    bottom: 80px; left: -15px;
    width: 50px; height: 50px;
    background: var(--hd-accent);
    border-radius: 12px;
    opacity: 0.15;
    animation: hd-spin-slow 8s linear infinite reverse;
}
@keyframes hd-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Skill bars */
.hd-skill-bars { display: flex; flex-direction: column; gap: 14px; }
.hd-skill-item {}
.hd-skill-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.hd-skill-pct { color: var(--hd-accent); font-weight: 600; }
.hd-skill-track {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.hd-skill-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--hd-accent) 0%, var(--hd-accent2) 100%);
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.hd-skill-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    height: 100%; width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

/* ----------------------------------------------------------
   TECH STACK SECTION
---------------------------------------------------------- */
.hd-techstack-section { padding: 80px 0; }
.hd-tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}
.hd-tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--hd-card-bg);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-sm);
    padding: 24px 20px;
    width: 110px;
    cursor: default;
    transition: var(--hd-transition);
    position: relative;
    overflow: hidden;
}
.hd-tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252,55,55,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: var(--hd-transition);
}
.hd-tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(252,55,55,0.3);
    box-shadow: 0 12px 40px rgba(252,55,55,0.12);
}
.hd-tech-card:hover::before { opacity: 1; }
.hd-tech-card span { font-size: 12px; color: var(--hd-text-muted); }
.hd-tech-icon { transition: transform 0.3s ease; }
.hd-tech-card:hover .hd-tech-icon { transform: scale(1.15); }

/* ----------------------------------------------------------
   BLOG SECTION
---------------------------------------------------------- */
.hd-blog-section { background: #f8f8f8; }
.hd-blog-card {
    background: #fff;
    border-radius: var(--hd-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--hd-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hd-blog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.hd-blog-img { position: relative; overflow: hidden; height: 200px; }
.hd-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hd-blog-card:hover .hd-blog-img img { transform: scale(1.05); }
.hd-blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 60%);
}
.hd-blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hd-blog-cat {
    display: inline-block;
    background: rgba(252,55,55,0.1);
    color: var(--hd-accent);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 12px;
}
.hd-blog-title { font-size: 17px; margin-bottom: 10px; line-height: 1.5; }
.hd-blog-title a { color: inherit; text-decoration: none; transition: var(--hd-transition); }
.hd-blog-title a:hover { color: var(--hd-accent); }
.hd-blog-excerpt { font-size: 14px; color: #777; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.hd-blog-readmore {
    color: var(--hd-accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--hd-transition);
}
.hd-blog-readmore:hover { gap: 8px; color: var(--hd-accent); }

/* ----------------------------------------------------------
   FLOATING CONTACT BUTTONS
---------------------------------------------------------- */
.hd-floating-contacts {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.hd-floating-contacts.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.hd-floating-label {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-bottom: 4px;
}
.hd-float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: var(--hd-transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hd-float-btn:hover {
    transform: scale(1.12);
    color: #fff;
}
.hd-float-line { background: #06C755; }
.hd-float-line:hover { box-shadow: 0 8px 24px rgba(6,199,85,0.4); }
.hd-float-phone { background: var(--hd-accent); }
.hd-float-phone:hover { box-shadow: 0 8px 24px var(--hd-glow); }
/* Pulse rings */
.hd-float-line::before,
.hd-float-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: hd-ring 2s ease-out infinite;
}
.hd-float-line::before  { border: 2px solid rgba(6,199,85,0.5); }
.hd-float-phone::before { border: 2px solid rgba(252,55,55,0.5); }
@keyframes hd-ring {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.7); opacity: 0; }
}
/* Tooltip */
.hd-float-tooltip {
    position: absolute;
    right: 62px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--hd-transition);
    backdrop-filter: blur(8px);
}
.hd-float-btn:hover .hd-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------------------------
   FEATURE GRID ENHANCED
---------------------------------------------------------- */
.feature-grid {
    transition: var(--hd-transition);
    position: relative;
    overflow: hidden;
}
.feature-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252,55,55,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: var(--hd-transition);
    border-radius: inherit;
}
.feature-grid:hover { transform: translateY(-6px); }
.feature-grid:hover::before { opacity: 1; }

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 991px) {
    .hd-float-icons { display: none; }
    .hd-about-float-card { right: 10px; bottom: 15px; }
    .hd-scroll-indicator { display: none; }
}
@media (max-width: 576px) {
    .hd-hero-contacts { gap: 12px; flex-direction: column; }
    .hd-tech-card { width: 88px; padding: 18px 12px; }
    .hd-stat-divider { display: none; }
    .hd-stats-inner { padding: 30px 15px; }
}

/* ----------------------------------------------------------
   FEATURE CARDS ENHANCED
---------------------------------------------------------- */
.hd-feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    border-radius: var(--hd-radius-sm);
	padding: 10px;
}
.hd-feature-card:hover { transform: translateY(-8px); }
.hd-card-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: var(--hd-transition);
    pointer-events: none;
}
.hd-feature-card:hover .hd-card-glow {
    border-color: rgba(252,55,55,0.3);
    box-shadow: 0 0 20px rgba(252,55,55,0.08) inset;
}

/* ----------------------------------------------------------
   SERVICE CARDS ENHANCED
---------------------------------------------------------- */
.hd-service-card {
    position: relative;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hd-service-line {
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--hd-accent), var(--hd-accent2));
    border-radius: 2px 2px 0 0;
    transition: width 0.4s ease;
}
.hd-service-card:hover .hd-service-line { width: 100%; }
.hd-service-btn { transition: var(--hd-transition); }

/* ----------------------------------------------------------
   PORTFOLIO ENHANCED
---------------------------------------------------------- */
.hd-portfolio-card { position: relative; }
.hd-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(252,55,55,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: inherit;
}
.hd-portfolio-card:hover .hd-portfolio-overlay { opacity: 1; }
.hd-portfolio-view,
.hd-portfolio-link {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: var(--hd-transition);
    transform: scale(0.7);
}
.hd-portfolio-card:hover .hd-portfolio-view,
.hd-portfolio-card:hover .hd-portfolio-link {
    transform: scale(1);
}
.hd-portfolio-view:hover,
.hd-portfolio-link:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
}

/* ----------------------------------------------------------
   PROCESS SECTION ENHANCED
---------------------------------------------------------- */
.hd-process-wrap { position: relative; margin-top: 50px; }
.hd-process-line {
    position: absolute;
    top: 60px; left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--hd-accent), transparent);
    opacity: 0.25;
    display: none;
}
@media (min-width: 1200px) { .hd-process-line { display: block; } }

.hd-process-card {
    position: relative;
    overflow: visible;
    transition: var(--hd-transition);
}
.hd-process-card:hover { transform: translateY(-8px); }
.hd-process-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hd-process-icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(252,55,55,0.3);
    border-radius: 50%;
    animation: hd-spin-slow 10s linear infinite;
}
.hd-process-step {
    position: absolute;
    top: -12px; right: -12px;
    width: 28px; height: 28px;
    background: var(--hd-accent);
    color: #fff;
    border-radius: 50%;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.hd-process-tag {
    display: inline-block;
    background: rgba(252,55,55,0.1);
    color: var(--hd-accent);
    border: 1px solid rgba(252,55,55,0.2);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    margin-top: 12px;
}
.hd-tag-success {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
    border-color: rgba(34,197,94,0.2);
}

/* ----------------------------------------------------------
   TESTIMONIAL ENHANCED
---------------------------------------------------------- */
.hd-testi-section { position: relative; overflow: hidden; }
.hd-testi-deco {
    position: absolute;
    top: -30px; right: 5%;
    font-size: 300px;
    font-family: Georgia, serif;
    color: rgba(252,55,55,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.hd-testi-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.hd-agg-stars { color: #fbbf24; font-size: 16px; display: flex; gap: 2px; }
.hd-testi-card {
    border-radius: var(--hd-radius);
    padding: 28px;
    transition: var(--hd-transition);
}
.hd-testi-card:hover { transform: translateY(-6px); }
.hd-star-row { margin-bottom: 16px; font-size: 14px; color: #fbbf24; display: flex; gap: 2px; }
.hd-testi-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.hd-testi-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.hd-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hd-testi-initials {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--hd-accent), var(--hd-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

/* ----------------------------------------------------------
   FAQ ENHANCED
---------------------------------------------------------- */
.hd-faq-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--hd-card-bg);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
    padding: 24px;
    margin-top: 32px;
}
.hd-faq-contact-icon {
    width: 48px; height: 48px;
    background: rgba(252,55,55,0.15);
    color: var(--hd-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hd-faq-accordion .hd-faq-item { border-radius: var(--hd-radius-sm); margin-bottom: 8px; overflow: hidden; }
.hd-faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(252,55,55,0.1);
    color: var(--hd-accent);
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
    transition: var(--hd-transition);
}
.accordion-button:not(.collapsed) .hd-faq-num {
    background: var(--hd-accent);
    color: #fff;
}

/* ----------------------------------------------------------
   PRICING ENHANCED
---------------------------------------------------------- */
.hd-pricing-section { background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%); }
.hd-price-card,
.hd-price-featured { position: relative; overflow: hidden; transition: var(--hd-transition); }
.hd-price-card:hover,
.hd-price-featured:hover { transform: translateY(-10px); }
.hd-price-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--hd-accent), var(--hd-accent2));
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    font-size: 13px;
    z-index: 2;
}
.hd-price-icon {
    width: 52px; height: 52px;
    background: rgba(252,55,55,0.1);
    color: var(--hd-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.hd-price-featured .hd-price-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.hd-price-amount { display: flex; align-items: flex-start; gap: 2px; margin: 12px 0; }
.hd-price-currency {
    font-size: 22px;
    color: var(--hd-accent);
    font-weight: 700;
    margin-top: 6px;
}
.hd-price-btn { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 24px; }

/* ----------------------------------------------------------
   CTA ENHANCED
---------------------------------------------------------- */
.hd-cta-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.hd-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.hd-cta-orb-1 {
    width: 300px; height: 300px;
    background: rgba(252,55,55,0.2);
    top: -80px; right: -60px;
    animation: hd-orb-drift 6s ease-in-out infinite alternate;
}
.hd-cta-orb-2 {
    width: 200px; height: 200px;
    background: rgba(255,100,100,0.15);
    bottom: -60px; left: 20%;
    animation: hd-orb-drift 8s ease-in-out infinite alternate-reverse;
}
.hd-cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}
.hd-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.hd-cta-line-btn { background: #06C755 !important; border-color: #06C755 !important; }
.hd-cta-line-btn:hover { background: #059e44 !important; }
.hd-cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: flex-end;
}
.hd-chip {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
}
