/* Crystal Tech — "Why Choose Us" section. Matches site palette
   (--primary-gold #fbbf24 / accent #f59e0b on white). Uses ctwc- prefix
   so styles never collide with anything else on the page. */

.ctwc-section {
    padding: 64px 20px;
    background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
}

.ctwc-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ctwc-header {
    text-align: center;
    margin-bottom: 44px;
}
.ctwc-eyebrow {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ctwc-title {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.ctwc-title em {
    font-style: normal;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ctwc-subtitle {
    margin: 14px auto 0;
    max-width: 560px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.55;
}

.ctwc-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
    .ctwc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .ctwc-grid { grid-template-columns: 1fr; }
    .ctwc-section { padding: 48px 18px; }
    .ctwc-title { font-size: 28px; }
}

.ctwc-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.ctwc-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #ef4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.ctwc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.14);
    border-color: #fcd34d;
}
.ctwc-card:hover::before { transform: scaleX(1); }

.ctwc-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}
.ctwc-icon svg { width: 26px; height: 26px; }

.ctwc-card h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.ctwc-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}
